@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --green-deep: #16261B;      /* Rich dark green for text and headings */
    --green-mid: #2D4A36;       /* Medium green for secondary elements */
    --green-light: #E9F1EA;     /* Light sage for backgrounds */
    --gold: #B38E4D;            /* Refined matte gold for luxury accents */
    --gold-muted: #D4B67C;      /* Softer gold for borders */
    --cream: #FDFCF9;           /* Primary background - Clean Ivory */
    --white: #FFFFFF;
    --text-dark: #2A2A2A;       /* Standard body text color */
    --glass: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(179, 142, 77, 0.2);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--green-deep);
    font-weight: 700;
}

/* Typography & SEO */
h1 { font-size: 4rem; letter-spacing: -1px; line-height: 1.1; }
h2 { font-size: 2.5rem; color: var(--green-deep); }
p { font-size: 1.1rem; color: #4A4A4A; }

.text-gold { color: var(--gold); }
.mt-2 { margin-top: 2rem; }

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

.flex { display: flex; }
.grid { display: grid; }
.center { align-items: center; justify-content: center; }

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100vw;
    padding: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(253, 252, 249, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 30px rgba(0,0,0,0.03);
}

@media (min-width: 993px) {
    nav.scrolled .logo {
        color: var(--green-deep);
        text-shadow: none;
    }

    nav.scrolled .nav-links a {
        color: var(--green-deep);
        text-shadow: none;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-wrap: nowrap; /* Prevent logo text from wrapping */
}

.logo img {
    max-height: 40px;
    width: auto;
    border-radius: 4px;
    object-fit: contain;
}

.logo span {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
}

nav.scrolled .logo span {
    color: var(--green-deep);
}

/* Nav on light background override */
nav.nav-dark-text {
    background: var(--white); /* Stronger contrast for light hero */
    box-shadow: 0 4px 20px rgba(22, 38, 27, 0.05);
    border-bottom: 1px solid rgba(179, 142, 77, 0.1);
}

nav.nav-dark-text .logo span,
nav.nav-dark-text .nav-links a {
    color: var(--green-deep) !important;
    text-shadow: none;
}

nav.nav-dark-text .mobile-menu-btn .bar {
    background-color: var(--green-deep) !important;
}

nav.nav-dark-text .logo img {
    background: white;
    padding: 2px;
}

nav.nav-dark-text .nav-links a.active {
    color: var(--gold) !important;
}

.nav-links a {
    color: var(--white);
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    position: relative;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
    z-index: 1000;
    width: 100%;
}

.nav-brand {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    justify-content: space-between !important;
    align-items: center !important;
    overflow: visible;
    min-width: 0;
}

.logo {
    flex-shrink: 1;
    min-width: 0;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 9999 !important;
    flex-shrink: 0;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 3px;
    background-color: var(--gold);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ensure bars are visible when scrolling on light background (Desktop only) */
@media (min-width: 993px) {
    nav.scrolled .mobile-menu-btn .bar {
        background-color: var(--green-deep);
    }
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex !important;
    }
}

.mobile-menu-btn.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.mobile-menu-btn.active .bar:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (min-width: 769px) {
    .nav-links {
        display: flex;
        gap: 1.5rem;
        list-style: none;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--gold) !important;
    }
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
}

/* Hero Section */
/* Hero Slider System */
#hero-slider-container {
    position: relative;
    overflow: hidden;
    background-color: #f1f6f1;
    height: calc(100vh - 55px); /* Force height to match viewport */
}

.hero-slider {
    display: flex;
    flex-direction: column; /* Vertical Swipe */
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    height: 300%; /* For 3 slides */
    width: 100%;
}

.hero-slide {
    width: 100%;
    height: 33.333%; /* 1/3 of the 300% parent */
    min-height: calc(100vh - 55px);
    display: flex;
    align-items: center;
    padding: 140px 0 60px; /* Increased top padding for breathing room */
}

.hero-slide .container {
    opacity: 1; /* Ensure visible by default */
    transform: none;
    transition: all 0.8s ease;
}

/* Optional: Keep subtle reveal only for text */
.hero-premium-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.3s;
}

.hero-slide.active .hero-premium-text {
    opacity: 1;
    transform: translateY(0);
}

.hero-premium-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.hero-premium-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--green-deep);
    font-family: 'Playfair Display', serif;
}

.hero-premium-text p {
    font-size: 1.2rem;
    color: var(--text-dark);
    max-width: 580px;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(179, 142, 77, 0.15);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.8rem;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--green-mid);
    font-weight: 600;
    opacity: 0.8;
}

.hero-premium-image {
    position: relative;
    z-index: 2;
}

.hero-premium-image .image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(22, 38, 27, 0.12);
    aspect-ratio: 4/5;
    background: white;
}

.hero-premium-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slider Navigation UI (Vertical Right) */
.slider-nav {
    position: absolute;
    right: 2.5rem; /* More inward for better visibility */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    z-index: 1000; /* Higher z-index */
    pointer-events: all;
}

.slider-dots {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.4); /* Subtle backing for better visibility */
    padding: 1rem 0.5rem;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(179, 142, 77, 0.1);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(22, 38, 27, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.4);
    border-color: var(--gold);
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(179, 142, 77, 0.2);
    color: var(--green-deep);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-arrow.prev { transform: rotate(90deg); }
.slider-arrow.next { transform: rotate(90deg); }

.slider-arrow:hover {
    background: var(--gold);
    color: white;
}

@media (max-width: 1200px) {
    .slider-nav {
        right: 2rem;
    }
}

@media (max-width: 992px) {
    .hero-slide {
        padding: 120px 0 80px;
        text-align: center;
        min-height: auto;
    }
    
    .hero-premium-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero-premium-text h1 {
        font-size: 2.8rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 2.5rem;
    }

    .slider-nav {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 3rem;
        padding-bottom: 2rem;
    }

    .slider-dots {
        flex-direction: row;
    }

    .slider-arrow {
        display: none; /* Hide arrows on mobile for cleaner look */
    }
}

@media (max-width: 600px) {
    .hero-premium-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }

    .stat-value {
        font-size: 2rem;
    }

    .hero-premium-image .image-wrapper {
        aspect-ratio: 1/1;
        max-width: 320px;
        margin: 0 auto;
    }
}

.hero-sub {
    padding: 12rem 0 6rem;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.hero-sub h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem; /* Added tighter top margin */
    opacity: 0; /* Pre-hide to prevent flickering before animation starts */
    animation: fadeInUp 1s 0.4s forwards;
    will-change: opacity, transform;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--green-deep);
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--gold);
}

.btn-secondary {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-secondary:hover {
    background-color: var(--gold);
    color: var(--green-deep);
}

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-title .divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto;
}

/* About Section */
#about {
    background: linear-gradient(var(--green-deep), var(--green-mid));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    padding: 2rem;
    border: 1px solid rgba(179, 142, 77, 0.1);
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(22, 38, 27, 0.08);
    border-color: var(--gold);
}
}

.product-card:hover {
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.05);
}

.product-card h3 {
    margin-bottom: 1rem;
}

.product-card ul {
    list-style: none;
    font-size: 0.9rem;
    opacity: 0.8;
}

.product-card ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.product-card ul li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
}

/* Private Label Showpiece */
#private-label {
    background: var(--green-mid);
    position: relative;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.showcase-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Quality List */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.quality-item {
    text-align: center;
    padding: 2rem;
}

.quality-item h4 {
    margin: 1rem 0;
}

/* Contact Form */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass);
    padding: 4rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--gold);
}

input, select, textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--cream);
    border-radius: 4px;
    font-family: inherit;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--gold);
}

/* Enhanced Footer */
footer {
    background: var(--green-deep);
    color: var(--cream);
    padding: 6rem 0 0 0;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr 1fr 1.2fr;
    gap: 4rem;
    text-align: left;
    margin-bottom: 5rem;
}

.footer-brand .logo {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-brand .logo span {
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif !important;
    font-weight: 700;
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(253, 252, 249, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.legacy-badge {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 2rem;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    text-decoration: none;
    color: rgba(253, 252, 249, 0.8);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact-item {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: rgba(253, 252, 249, 0.9);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(253, 252, 249, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    h1 { font-size: 3.5rem; }
    .section-padding { padding: 6rem 0; }
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.75); }
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    nav {
        background: var(--green-deep) !important;
        padding: 0.5rem 0;
    }
    
    nav .logo, 
    nav.scrolled .logo, 
    nav .logo span, 
    nav.scrolled .logo span {
        color: var(--white) !important;
    }
    .logo {
        gap: 0.5rem;
    }
    .logo span {
        font-size: 1.1rem !important;
        letter-spacing: 0.5px;
    }
    .logo img {
        max-height: 35px;
    }
    
    .mobile-menu-btn .bar, nav.scrolled .mobile-menu-btn .bar {
        background-color: var(--white) !important;
    }
    #hero {
        height: auto;
        padding-top: 140px;
        padding-bottom: 60px;
    }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .about-grid, .showcase-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem;
    }
    .about-stats {
        padding: 2rem !important;
    }
    .section-padding { padding: 4rem 0; }
    
    /* Ensure maps and other containers adapt */
    .map-container {
        padding: 2rem 1rem !important;
    }
    .trade-node .node-label {
        font-size: 0.55rem;
    }
}

/* Global Map & Logistics Styles */
.map-container {
    position: relative;
    background: var(--green-deep);
    border-radius: 20px;
    padding: 4rem;
    margin-top: 3rem;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.2);
}

.map-svg-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    opacity: 0.1;
    pointer-events: none;
}

.trade-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--gold);
}

.trade-node::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    border: 2px solid var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.node-label {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    color: var(--white);
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.8;
}



.application-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 2.5rem;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.application-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.application-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

/* Mobile Responsive */
/* Gallery System */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid var(--glass-border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(transparent, rgba(10, 17, 11, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.8rem;
    opacity: 0.7;
}

@media (max-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

/* Lightbox Utility */
.lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active { display: flex; }

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border: 1px solid var(--gold);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
}

.lightbox-close {
    position: absolute;
    top: 2rem; right: 2rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}
/* FAQ System */
.faq-container {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(22,38,27,0.03);
}

.faq-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-header:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-header h3 {
    font-size: 1.15rem;
    color: var(--green-deep);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.4s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    padding: 0 2rem;
    background: var(--green-light);
}

.faq-item.active .faq-content {
    max-height: 500px;
    padding: 1.5rem 2rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active {
    border-color: var(--gold);
}
/* Mobile Responsiveness */
@media (max-width: 992px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 1.5rem;
    }

    .nav-brand {
        justify-content: space-between;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--green-deep);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        gap: 3rem;
        padding: 80px 2rem 2rem;
        list-style: none;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-sub h1 {
        font-size: 2.2rem;
    }

    .about-grid, .showcase-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem;
    }

    .section-padding {
        padding: 5rem 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .cta-group {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn {
        width: 100%;
        padding: 1rem !important;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .grid {
        grid-template-columns: 1fr !important;
    }
}
