:root {
    /* Brand Palette */
    --color-dark: #033220;
    --color-dark-rgb: 3, 50, 32;
    --color-accent: #E5F125;
    --color-accent-hover: #cfda22;
    --color-cream: #FCFBF4; 
    --color-white: #FFFFFF;
    --color-text: #1a1a1a;
    --color-text-light: #555555;
    
    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Design Tokens */
    --container-max: 1200px;
    --section-padding: 120px 0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { 
    scroll-behavior: auto !important; /* Disable native smooth scroll to fix GSAP jumps on iOS */
    -webkit-text-size-adjust: 100%; /* Prevent font scaling on orientation change */
}

body {
    font-family: var(--font-body);
    background-color: var(--color-cream);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden; 
}

h1, h2, h3, h4, .btn { font-family: var(--font-heading); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.text-white { color: var(--color-white); }
.text-accent { color: var(--color-accent); }
.text-white-dim { color: rgba(255,255,255,0.7); }

/* Typography */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--color-dark);
}

/* Navbar Buttons */
.navbar .btn-primary {
    padding: 10px 24px;
    font-size: 0.9rem;
    margin-top: 0;
    color: #000000; /* Black text for better contrast */
}

.eyebrow, .eyebrow-light {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}
.eyebrow { color: var(--color-dark); opacity: 0.6; }
.eyebrow-light { color: var(--color-accent); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}
.btn-primary { 
    background-color: var(--color-accent); 
    color: var(--color-dark); 
}
.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    backdrop-filter: blur(5px);
    margin-left: 10px;
}
.btn-secondary:hover { background: white; color: var(--color-dark); }

/* Animation Utilities */
.fade-in { opacity: 0; animation: fadeIn 0.8s ease-out forwards; }
.fade-in-up { opacity: 0; animation: fadeInUp 0.8s ease-out forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-actions {
    display: flex;
    gap: 20px;
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
}

/* Badge Style for Hero */
.badge {
    background: var(--color-accent);
    color: var(--color-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(229, 241, 37, 0.3);
}

/* Breadcrumb nav fix for full width */
.breadcrumb-nav {
    padding: 24px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 20px 0; transition: 0.4s;
}
.navbar.scrolled {
    background: rgba(3,50,32,0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

/* Ensure navbar always appears on product pages */
.product-page .navbar {
    background: rgba(3,50,32,0.98);
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { 
    height: 75px; 
    width: auto; 
    transition: all 0.3s ease; 
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}
.navbar.scrolled .nav-logo { 
    height: 60px; 
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.3));
}
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { 
    color: white; 
    font-weight: 600; 
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.nav-links a:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
}
.hamburger { 
    display: none; 
    color: white; 
    font-size: 1.5rem; 
    cursor: pointer;
    z-index: 1001;
}

/* Language Toggle */
.lang-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    background: rgba(229, 241, 37, 0.2);
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
}

.lang-toggle.mobile-lang {
    margin-top: 10px;
    font-size: 1.2rem;
    padding: 12px 24px;
    width: auto;
    display: inline-flex;
}

/* Mobile Nav Controls */
.nav-controls-mobile {
    display: none;
    align-items: center;
    gap: 15px;
}

.mobile-nav-lang {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 12px;
    font-size: 0.9rem;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(3, 50, 32, 0.98) 0%, rgba(3, 50, 32, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: menuFadeIn 0.4s ease-out;
}

@keyframes menuFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.mobile-menu-overlay .nav-links {
    display: flex !important;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    position: relative;
}

.mobile-menu-overlay .nav-links li {
    animation: slideInUp 0.5s ease-out backwards;
}

.mobile-menu-overlay .nav-links li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu-overlay .nav-links li:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu-overlay .nav-links li:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-overlay .nav-links a {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    padding: 15px 40px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.mobile-menu-overlay .nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 241, 37, 0.2), transparent);
    transition: left 0.5s ease;
}

.mobile-menu-overlay .nav-links a:hover::before {
    left: 100%;
}

.mobile-menu-overlay .nav-links a:hover {
    background: rgba(229, 241, 37, 0.15);
    border-color: rgba(229, 241, 37, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(229, 241, 37, 0.2);
}

.mobile-menu-overlay .btn-primary {
    margin-top: 10px;
    background: var(--color-accent);
    color: #000;
    box-shadow: 0 8px 25px rgba(229, 241, 37, 0.4);
}

.mobile-menu-overlay .btn-primary:hover {
    background: #f0f73d;
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(229, 241, 37, 0.6);
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
    animation: fadeInRotate 0.5s ease-out 0.2s backwards;
}

@keyframes fadeInRotate {
    from {
        opacity: 0;
        transform: rotate(-90deg) scale(0.5);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

.mobile-menu-close:hover {
    background: rgba(229, 241, 37, 0.2);
    border-color: rgba(229, 241, 37, 0.5);
    transform: rotate(90deg);
    box-shadow: 0 5px 20px rgba(229, 241, 37, 0.3);
}

.mobile-menu-close:active {
    transform: rotate(90deg) scale(0.95);
}


/* Hero Section */
.hero {
    position: relative; 
    height: 100vh; 
    display: flex; 
    align-items: center; 
    color: white;
    padding: 0;
}
.hero-bg {
    position: absolute; width: 100%; height: 120%;
    background: url('assets/hero-farm.webp') center/cover;
    z-index: -2;
}
.hero-overlay {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%; 
    height: 120%;
    background: linear-gradient(to right, rgba(3,50,32,0.9) 0%, rgba(3,50,32,0.6) 50%, transparent 100%),
                linear-gradient(to top, rgba(3,50,32,0.8) 0%, transparent 40%);
    z-index: -1;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin-left: 5%;
    padding: 60px 0;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    padding-left: 50px;
    position: relative;
}

.hero-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 2px;
    background: var(--color-accent);
    transform: translateY(-50%);
}

.hero h1 { 
    font-size: 4.5rem; 
    margin-bottom: 1.5rem; 
    line-height: 1;
    letter-spacing: -2px;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero .text-highlight { 
    color: var(--color-accent);
    position: relative;
    white-space: nowrap;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 3.5rem;
    max-width: 600px;
    opacity: 0.9;
    line-height: 1.7;
    font-weight: 400;
    color: #e0e0e0;
}

/* Combined About Section */
.about-combined-section {
    padding: var(--section-padding);
    background-color: var(--color-cream);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}
.lead { font-size: 1.25rem; color: #555; margin-bottom: 1.5rem; }

/* Collage */
.about-collage { position: relative; height: 500px; }
.collage-main {
    width: 85%; height: 90%; object-fit: cover; border-radius: 20px;
    position: absolute; top: 0; left: 0; z-index: 1;
}
.collage-accent {
    width: 50%; height: 50%; object-fit: cover; border-radius: 20px;
    position: absolute; bottom: 0; right: 0; z-index: 2;
    border: 8px solid var(--color-cream);
    box-shadow: -20px -20px 40px rgba(0,0,0,0.1);
}

/* Why Us Grid */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.why-us-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: 0.3s;
}
.why-us-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.icon-circle {
    width: 60px; height: 60px; background: rgba(3, 50, 32, 0.1); 
    border-radius: 50%; color: var(--color-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 20px;
}
.why-us-card h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--color-dark); }
.why-us-card p { color: #666; }

/* Horizontal Scroll Section (Revised) */
.offerings-section {
    background-color: var(--color-dark); /* Dark Green #033220 */
    overflow: hidden;
    position: relative;
    /* Remove fixed height - let GSAP control the scroll space */
}

.sticky-viewport {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sticky-header {
    height: 20vh; /* Reduced to give more room to cards */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-dark); /* Match section BG */
    z-index: 10;
    position: relative;
    color: white; /* Text is now white on dark BG */
}
.sticky-header .section-title { margin-bottom: 0.5rem; color: white; }
.sticky-header .eyebrow { color: var(--color-accent); opacity: 1; }
.sticky-header p { color: rgba(255,255,255,0.7); }

.horizontal-scroll-container {
    height: 80vh; /* Increased height for cards */
    width: 100%;
    background: var(--color-dark); /* Match section BG */
}
.scrolling-track {
    display: flex;
    width: 500vw; /* 5 Panels */
    height: 100%;
}
.scroll-panel {
    width: 100vw;
    height: 100%;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Panel BGs - Transparent so they float on Dark Section */
.panel-1 { background-color: transparent; }
.panel-2 { background-color: transparent; }
.panel-3 { background-color: transparent; }
.panel-4 { background-color: transparent; }
.panel-5 { background-color: transparent; }

.product-card-horizontal {
    display: flex;
    background: rgba(255, 255, 255, 0.1); /* Glassmorphism base */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    height: 65vh; /* Increased from 60vh */
    min-height: 520px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

/* Gradient overlay for depth */
.product-card-horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(229, 241, 37, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(3, 50, 32, 0.05) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.pc-image { 
    width: 45%; 
    height: 100%; 
    position: relative;
    overflow: hidden;
}

.pc-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(3, 50, 32, 0.3) 100%
    );
    pointer-events: none;
}

.pc-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}

.pc-content { 
    width: 55%; 
    padding: 30px 40px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: flex-start;
    position: relative;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
}

.offer-badge {
    text-transform: uppercase; 
    font-size: 0.75rem; 
    letter-spacing: 2.5px;
    font-weight: 700; 
    color: var(--color-accent);
    background: rgba(229, 241, 37, 0.15);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(229, 241, 37, 0.3);
    backdrop-filter: blur(10px);
}

.product-card-horizontal h3 { 
    font-size: 2.5rem; 
    margin-bottom: 1rem; 
    line-height: 1.1;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

.product-card-horizontal p { 
    font-size: 0.95rem; /* Slightly smaller for better fit */
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.product-card-horizontal .btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.product-card-horizontal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 25px rgba(229, 241, 37, 0.6),
        0 2px 5px rgba(0, 0, 0, 0.3);
    background: #f0f73d;
}


/* Contact Section */
.contact-section {
    background-color: #011c11; /* Even Darker Green/Black mix to contrast with #033220 */
    background-image: radial-gradient(circle at top right, #053321 0%, transparent 40%);
    padding: var(--section-padding);
    color: white;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-centered { max-width: 900px; margin: 0 auto; }
.contact-cards-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}
.contact-card {
    background: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 20px;
    flex: 1; min-width: 250px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}
.contact-card:hover { transform: translateY(-10px); }

/* Distinct Card Styles */
.contact-card.primary { 
    background: var(--color-accent); 
    color: var(--color-dark); 
    border: none;
}
.contact-card.primary:hover { background: #dce62f; }
.contact-card.primary .icon-circle { background: rgba(0,0,0,0.1); color: var(--color-dark); }

/* Phone Card - Dark Green variant */
.contact-card:nth-child(2) {
    background: #05402a;
    border-color: #0a5c3d;
}
.contact-card:nth-child(2):hover { background: #075236; }
.contact-card:nth-child(2) .icon-circle { background: rgba(255,255,255,0.1); color: white; }

/* Email Card - White/Light variant */
.contact-card:nth-child(3) {
    background: #FCFBF4;
    color: var(--color-dark);
}
.contact-card:nth-child(3):hover { background: white; }
.contact-card:nth-child(3) .icon-circle { background: rgba(3,50,32,0.1); color: var(--color-dark); }

/* Location Card - Transparent/Glass */
.contact-card:nth-child(4) {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}
.contact-card:nth-child(4):hover { background: rgba(255,255,255,0.15); }
.contact-card:nth-child(4) .icon-circle { color: var(--color-accent); }

/* Map Container */
.map-container {
    margin-top: 80px;
    max-width: 900px;
}
.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.1);
}
.map-wrapper iframe {
    display: block;
    width: 100%;
}



/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(229, 241, 37, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #f0f73d;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(229, 241, 37, 0.6);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* Footer */
.footer { 
    background: #022417; 
    padding: 80px 0 40px; 
    border-top: 1px solid rgba(255,255,255,0.05); 
    color: white;
}
.footer-bottom { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    gap: 30px; 
}
.footer-brand { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}
.footer-brand img { 
    height: 40px; 
    width: auto;
}
.footer-links { 
    display: flex; 
    gap: 20px; 
}
.footer-links a { 
    color: white; 
    font-size: 1.4rem; 
    transition: all 0.3s ease; 
    opacity: 0.6; 
}
.footer-links a:hover { 
    opacity: 1; 
    transform: translateY(-3px); 
    color: var(--color-accent); 
}
.footer-social { 
    display: flex; 
    gap: 15px; 
}
.footer-social a { 
    color: var(--color-accent); 
    font-size: 1.25rem; 
    transition: all 0.3s ease; 
    background: rgba(255,255,255,0.08);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover { 
    background: var(--color-accent);
    color: var(--color-dark);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(229, 241, 37, 0.3);
}

@media (max-width: 768px) {
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-brand { flex-direction: column; gap: 10px; }
}

/* Mobile & Tablet Responsive */
@media (max-width: 900px) {
    /* Typography adjustments */
    .section-title { font-size: 2.2rem; }
    
    /* Navbar */
    .navbar { padding: 15px 0; }
    .nav-links { 
        display: none; /* Hide desktop nav */
    }
    .hamburger { 
        display: block; /* Show hamburger */
    }
    .nav-controls-mobile {
        display: flex; /* Show mobile controls */
    }
    .desktop-lang {
        display: none; /* Hide desktop lang toggle */
    }
    
    /* Hero Section */
    .hero { 
        min-height: 100vh; 
        padding: 80px 0 40px;
        overflow: hidden; /* Prevent overlay from extending beyond container */
    }
    .hero-content { 
        margin-left: 0; 
        padding: 20px; 
        text-align: center;
    }
    .hero h1 { 
        font-size: 3.2rem; 
        letter-spacing: -1px;
        line-height: 1.1;
    }
    .hero-eyebrow {
        font-size: 0.8rem;
        letter-spacing: 3px;
        padding-left: 40px;
    }
    .hero-eyebrow::before { width: 30px; }
    .hero p { 
        font-size: 1.1rem; 
        margin-bottom: 2rem;
    }
    .hero-actions { 
        display: flex; 
        flex-direction: column; 
        gap: 15px;
        align-items: center;
    }
    .btn-secondary { margin-left: 0; }
    
    /* About Section */
    .about-combined-section { 
        padding: 60px 0; 
        min-height: auto;
    }
    .about-intro { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    .about-collage { 
        height: 350px; 
        margin-top: 20px;
    }
    .collage-main { width: 90%; height: 85%; }
    .collage-accent { width: 55%; height: 55%; }
    
    .why-us-grid { 
        grid-template-columns: 1fr; 
        gap: 20px;
        margin-top: 40px;
    }
    .why-us-card { padding: 30px; }
    
    /* Offerings Section - Stack vertically on mobile */
    .offerings-section { height: auto; }
    .sticky-viewport { 
        height: auto; 
        display: block; 
        overflow: visible; 
    }
    .sticky-header { 
        height: auto; 
        padding: 60px 20px 30px; 
        position: relative;
    }
    .sticky-header .section-title { font-size: 2rem; }
    
    .horizontal-scroll-container { height: auto; }
    .scrolling-track { 
        width: 100%; 
        height: auto; 
        flex-direction: column; 
        gap: 20px;
    }
    .scroll-panel { 
        width: 100%; 
        height: auto; 
        padding: 20px; 
    }
    
    .product-card-horizontal { 
        flex-direction: column; 
        height: auto; 
        max-width: 100%;
        margin: 0 auto;
    }
    .pc-image { 
        width: 100%; 
        height: 250px; 
    }
    .pc-content { 
        width: 100%; 
        padding: 30px 25px;
        text-align: center;
        align-items: center;
    }
    .product-card-horizontal h3 { 
        font-size: 2rem; 
    }
    .product-card-horizontal p { 
        font-size: 1rem; 
    }
    
    /* Contact Section */
    .contact-section { 
        padding: 60px 0; 
        min-height: auto;
    }
    .contact-cards-row { 
        flex-direction: column; 
        gap: 15px;
        margin-top: 40px;
    }
    .contact-card { 
        min-width: 100%; 
        padding: 30px 25px;
    }
    
    /* Map */
    .map-container { 
        margin-top: 50px; 
    }
    .map-wrapper iframe { 
        height: 300px; 
    }
    
    /* Scroll to Top */
    .scroll-to-top { 
        bottom: 20px; 
        right: 20px; 
        width: 45px; 
        height: 45px;
        font-size: 1rem;
    }
    
}

/* Small Mobile (phones in portrait) */
@media (max-width: 480px) {
    .hero h1 { font-size: 2.5rem; letter-spacing: -0.5px; }
    .hero p { font-size: 1rem; margin-bottom: 2.5rem; }
    .hero-eyebrow { font-size: 0.7rem; letter-spacing: 2px; padding-left: 30px; }
    .hero-eyebrow::before { width: 20px; }
    .section-title { font-size: 1.8rem; }
    
    .product-card-horizontal h3 { font-size: 1.6rem; }
    .pc-content { padding: 25px 20px; }
    
    .contact-card { padding: 25px 20px; }
    
    .scroll-to-top { 
        bottom: 15px; 
        right: 15px; 
        width: 40px; 
        height: 40px;
    }
}

/* Product Detail Pages */
.product-page {
    padding-top: 140px; /* Space for fixed navbar - increased to prevent overlap */
    background-color: var(--color-cream);
}

.breadcrumb-nav {
    padding: 15px 0; /* Reduced to match closer to top */
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.breadcrumbs a {
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumbs a:hover {
    color: var(--color-accent-hover);
}

.breadcrumbs span.separator {
    opacity: 0.3;
}

.product-hero {
    margin-bottom: 80px;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-hero-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    aspect-ratio: 4 / 3;
}

.product-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-layout-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    margin-bottom: 120px;
    align-items: start;
}

.product-content-wrapper {
    margin: 0;
}

.product-sidebar {
    position: sticky;
    top: 140px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-bottom: 30px;
    border: 1px solid rgba(0,0,0,0.03);
}

.sidebar-widget h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-accent);
}

.other-products-list {
    list-style: none;
    padding: 0;
}

.other-product-item {
    margin-bottom: 15px;
}

.other-product-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--color-text);
}

.other-product-link:hover {
    background: var(--color-cream);
    transform: translateX(5px);
}

.other-product-link img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.other-product-link span {
    font-weight: 600;
}

/* CTA Section on Product Page */
.product-cta-section {
    background: var(--color-dark);
    border-radius: 40px;
    padding: 80px 60px;
    text-align: center;
    color: white;
    margin: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

.product-cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(229, 241, 37, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.product-cta-section h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.product-cta-section p {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 40px;
}

.product-hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--color-dark);
}

.product-content-wrapper h2 {
    font-size: 2.2rem;
    margin: 40px 0 20px;
    color: var(--color-dark);
}

.product-content-wrapper h3 {
    font-size: 1.6rem;
    margin: 30px 0 15px;
    color: var(--color-dark);
}

.product-content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.product-content-wrapper ul {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

.product-content-wrapper li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.faq-section {
    background: white;
    padding: 60px;
    border-radius: 30px;
    margin-top: 80px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
}

.faq-section h2 { margin-top: 0; }

.faq-item {
    margin-bottom: 30px;
}

.faq-item h4 {
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .product-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .product-sidebar {
        position: static;
        order: 2;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .product-page { padding-top: 100px; }
    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .product-hero-image {
        aspect-ratio: auto;
        height: 300px;
    }
    .product-hero-text h1 {
        font-size: 2.22rem;
    }
    .product-cta-section { padding: 40px 20px; border-radius: 20px; }
    .product-cta-section h2 { font-size: 2.22rem; }
    .faq-section { padding: 40px 25px; }
}
