:root {
    --primary-color: #2E374B;
    --secondary-color: #253B5C;
    --accent-color: #A1722A;
    --accent-hover: #b98534;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-hover);
}

.text-muted {
    color: rgb(28 29 31 / 75%) !important;
}

/* Utilities */
.bg-primary-dark {
    background-color: var(--primary-color) !important;
}

.bg-secondary-dark {
    background-color: var(--secondary-color) !important;
}

.bg-light-gray {
    background-color: var(--bg-light) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.text-primary-dark {
    color: var(--primary-color) !important;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4d736b 50%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Buttons */
.btn-gold {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-weight: 600;
    padding: 16px 22px;
    border-radius: 44px;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-gold:hover {
    background-color: var(--accent-hover);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(161, 114, 42, 0.3);
}

.btn-gold:disabled {
    background-color: #dbd9d6;
    color: var(--accent-color);
}

.btn-outline-light {
    border: 2px solid var(--text-light);
    color: var(--text-light);
    font-weight: 600;
    padding: 13px 24px;
    border-radius: 44px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-outline-light:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    transition: var(--transition);
}

.navbar-sticky {
    padding: 3px 0;
}

.navbar__logow {
    /* max-height: 100px; */
    width: min(74%, 360px);
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    /* min-height: 100vh; */
}

.hero-slide {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    height: 100vh;
    min-height: 650px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(46, 55, 75, 0.9) 0%, rgba(37, 59, 92, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    max-width: 1240px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--text-light);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-desc {
    font-size: 1.2rem !important;
    line-height: 1.8 !important;
    margin-bottom: 40px !important;
    opacity: 0.95;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Section Headings */
.section-header {
    margin-bottom: 50px;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
}

.section-header p {
    color: #666;
    margin-top: 15px;
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    padding: 60px 0;
}

.about-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 10px solid rgba(161, 114, 42, 0.2);
    z-index: 1;
    pointer-events: none;
}

.about-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--accent-color);
    color: white;
    padding: 30px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.experience-badge h3 {
    color: white;
    font-size: 2.5rem;
    margin: 0;
    line-height: 1;
}

.experience-badge span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Products Section - Updated to Normal View */
.product-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: auto;
    /* Changed from 300px */
    min-height: 350px;
    background-color: var(--secondary-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    /* Base opacity higher for normal view */
    transition: var(--transition);
}

.product-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    z-index: 2;
}

.product-icon {
    font-size: 2.5rem;
    color: #ffffffb3;
    margin-bottom: 20px;
    align-self: flex-start;
    opacity: 1;
    /* Normal View */
    transform: translateY(0);
    /* Normal View */
}

.product-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.product-content p {
    opacity: 0.9;
    /* Normal View */
    max-height: none;
    /* Normal View */
    overflow: visible;
    transition: all 0.4s ease;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why Choose Us Cards */
.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    border-bottom: 4px solid transparent;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--accent-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgb(42 88 161 / 10%);
    color: #2e374b;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
    margin: 0 auto 20px;
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Our Strengths - New Design */
.strength-section-v2 {
    background: var(--primary-color);
    padding: 70px 0;
    color: white;
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.strength-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: var(--transition);
}

.strength-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.strength-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.strength-card h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.global-presence-v2 {
    position: relative;
    padding: 90px 0;
    background: url('../images/bg/global-p.webp') no-repeat center center fixed;
    background-size: cover;
}

.global-presence-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 55, 75, 0.85);
    opacity: 0.8;
}

.global-presence-content {
    position: relative;
    z-index: 2;
    color: white;
}

.global-presence-content h2, .global-presence-content p {
    color: white !important;
}

.global-presence-content h2::after {
    background-color: var(--accent-color);
}

.market-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 20px 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
    color: #fff;
}

.market-badge h4 {
    color: #fff;
}

/* Testimonials - Star Icons & Details */
.star-rating {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.client-meta {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.client-meta img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.client-meta h5 {
    font-size: 1rem;
    margin: 0;
}

.client-meta p {
    font-size: 0.8rem;
    color: var(--accent-color);
    margin: 0;
}

/* Vision & Mission */
.vm-card {
    background: var(--primary-color);
    color: white;
    padding: 50px 40px;
    border-radius: 8px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.vm-card h3 {
    color: white;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.vm-card p {
    position: relative;
    z-index: 2;
    opacity: 0.9;
    line-height: 1.8;
}

.vm-icon-bg {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.05);
    z-index: 1;
    transform: rotate(-15deg);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Contact Form */
.contact-form .form-control {
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.contact-info-block {
    margin-bottom: 30px;
    display: flex;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

/* Footer */
footer {
    background-color: #1f273a;
    color: #a0a8b8;
    padding-top: 80px;
}

.footer-heading {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0a8b8;
}

.footer-bottom {
    background-color: #1f273a;
    padding: 20px 0;
    margin-top: 50px;
    text-align: center;
    font-size: 0.9rem;
}

.navbar-toggler {
    background-color: var(--primary-color);
    color: var(--accent-color);
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler span {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.about-section h2 {
    font-size: 2.4rem;
    color: var(--primary-color);
}

.about-section {
}

/* zz */
.animate__animated {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1050ms ease-in-out;
}

.hero-slide.swiper-slide-active .animate__animated {
    /* opacity: 1;
    transform: translateY(0px); */
    animation: heroanim 1s ease forwards var(--delay, 0.5s)
}

@keyframes heroanim {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.hero-section .swiper-button-next, .hero-section .swiper-button-prev {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-section .swiper-button-next:after, .hero-section .swiper-button-prev:after {
    font-size: 20px;
}

.hero-section .swiper-button-next:hover, .hero-section .swiper-button-prev:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.hero-section .swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.hero-section .swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
}

/* Counter Section */
.counter-section {
    padding: 70px 0;
    background-color: #ffffff;
    color: var(--primary-color);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.counter-item {
    text-align: center;
    padding: 20px;
    transition: var(--transition);
}

.counter-item:hover {
    transform: translateY(-5px);
}

.counter-icon {
    font-size: 3rem;
    color: #708196;
    margin-bottom: 20px;
    display: block;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.counter-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-link {
    text-decoration: none !important;
    color: inherit !important;
}

.contact-link:hover {
    color: var(--accent-color) !important;
}

.social-icon {
    transition: var(--transition) !important;
}

.social-icon:hover {
    background-color: var(--accent-color) !important;
    transform: translateY(-3px);
    color: white !important;
}

.bg-img {
    background: var(--url) no-repeat center center fixed;
    background-size: cover;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .counter-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        /* text-align: center; */
    }

    .hero-section .swiper-button-next, .hero-section .swiper-button-prev {
        display: none
    }

    .hero-slide {
        height: 80vh;
        min-height: 600px;
    }
}

@media (max-width: 568px) {
    .hero-title {
        font-size: 2.05rem;
    }

    .hero-subtitle {
        font-size: 1.0rem;
        font-weight: 600;
        margin-bottom: 10px;
        letter-spacing: 0px;
    }

    .hero-desc {
        font-size: 0.875rem !important;
        line-height: 1.8 !important;
        margin-bottom: 40px !important;
    }
}
