/* Advanced CSS Custom Properties - Complete Design System */
:root {
    /* Primary Color Palette - From Anagha Logo */
    --primary-brown: #6B4423;
    --primary-brown-light: #8B6239;
    --primary-brown-dark: #4A2E16;
    --primary-brown-rgb: 107, 68, 35;

    /* Secondary Color Palette - Logo Warm Tones */
    --secondary-brown: #9C6B3E;
    --secondary-brown-light: #B8895A;
    --secondary-brown-dark: #6B4423;
    --secondary-brown-rgb: 156, 107, 62;

    /* Accent Colors - Logo Highlights */
    --accent-orange: #D4A574;
    --accent-orange-light: #E8C9A0;
    --accent-orange-dark: #B8895A;
    --accent-orange-rgb: 212, 165, 116;

    /* Neutral Browns - Logo Palette */
    --light-brown: #D4A574;
    --light-brown-rgb: 212, 165, 116;
    --pale-brown: #F5E6D3;
    --pale-brown-rgb: 245, 230, 211;
    --dark-brown: #4A2E16;
    --dark-brown-rgb: 74, 46, 22;

    /* Text Color System */
    --text-dark: #3d2914;
    --text-medium: #4a3c2a;
    --text-light: #6b5b47;
    --text-muted: #8b7355;
    --text-subtle: #a08670;
    --text-white: #ffffff;
    --text-white-soft: rgba(255, 255, 255, 0.9);
    --text-white-muted: rgba(255, 255, 255, 0.7);

    /* Theme-aware colors */
    --color-primary: var(--primary-brown);
    --color-secondary: var(--secondary-brown);
    --color-accent: var(--accent-orange);
    --color-text: var(--text-dark);
    --color-text-inverse: var(--text-white);

    /* State Colors */
    --success-color: #4CAF50;
    --warning-color: #FF9800;
    --error-color: #F44336;
    --info-color: #2196F3;

    /* Opacity Levels */
    --opacity-subtle: 0.1;
    --opacity-light: 0.2;
    --opacity-medium: 0.4;
    --opacity-strong: 0.6;
    --opacity-heavy: 0.8;

    /* Background Colors - Logo Inspired */
    --bg-cream: #FFF8F0;
    --bg-light: #F5E6D3;
    --bg-medium: #E8D5C4;
    --bg-white: #ffffff;
    --bg-off-white: #FFFBF7;

    /* Spacing System */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Typography Scale */
    --font-size-xs: 0.9rem;
    --font-size-sm: 1rem;
    --font-size-md: 1.1rem;
    --font-size-lg: 1.2rem;
    --font-size-xl: 1.3rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.8rem;
    --font-size-4xl: 2rem;
    --font-size-5xl: 2.5rem;
    --font-size-6xl: 2.8rem;
    --font-size-7xl: 3.5rem;

    /* Border Radius */
    --radius-sm: 10px;
    --radius-md: 15px;
    --radius-lg: 20px;
    --radius-xl: 25px;
    --radius-2xl: 40px;
    --radius-full: 50px;

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-md: 0 8px 25px rgba(0,0,0,0.15);
    --shadow-lg: 0 15px 40px rgba(139, 69, 19, 0.15);

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

    --shadow-xl: 0 25px 60px rgba(139, 69, 19, 0.2);
    --shadow-2xl: 0 30px 80px rgba(0,0,0,0.4);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Z-index Scale */
    --z-base: 1;
    --z-overlay: 2;
    --z-modal: 10;
    --z-tooltip: 20;

    /* Animation Durations */
    --duration-fast: 0.3s;
    --duration-normal: 0.6s;
    --duration-slow: 1s;
    --duration-very-slow: 1.5s;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(139, 69, 19, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(139, 69, 19, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.nav-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(139, 69, 19, 0.3));
}

.nav-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-brown);
    text-shadow: 1px 1px 2px rgba(139, 69, 19, 0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link.active {
    color: white;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--accent-orange) 100%);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-brown);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        gap: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 30px rgba(139, 69, 19, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .nav-link {
        font-size: 1.3rem;
        padding: 1rem 2rem;
        width: 80%;
        text-align: center;
    }

    .nav-brand-name {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 3%;
    }

    .nav-logo {
        height: 40px;
    }

    .nav-menu {
        padding-top: 2rem;
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }
}

html, body {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 50%, var(--bg-medium) 100%);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Hero Section - Advanced Flexbox Implementation */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #FFF8F0 0%, #F5E6D3 25%, #E8D5C4 50%, #D4A574 75%, #B8895A 100%);
    /* Advanced Flexbox Layout */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    padding: calc(80px + var(--space-lg)) 5% var(--space-lg);
    will-change: transform;
    /* Flexible container with advanced properties */
    flex-wrap: wrap;
    align-content: center;
    gap: var(--space-md);
}

.hero::after {
    content: '✨ Premium Quality ✨ Family Loved ✨ Naturally Pure ✨';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(139, 69, 19, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-align: center;
    white-space: nowrap;
    animation: textFloat 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes textFloat {
    0%, 100% { 
        opacity: 0.6;
        transform: translateX(-50%) translateY(0px) scale(1);
    }
    25% { 
        opacity: 0.7;
        transform: translateX(-50%) translateY(-3px) scale(1.01);
    }
    50% { 
        opacity: 0.8;
        transform: translateX(-50%) translateY(-8px) scale(1.02);
    }
    75% { 
        opacity: 0.7;
        transform: translateX(-50%) translateY(-2px) scale(1.01);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="25" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="25" cy="75" r="0.8" fill="%23ffffff" opacity="0.08"/><circle cx="75" cy="75" r="1.2" fill="%23ffffff" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '✨ Premium Quality ✨ Family Loved ✨ Naturally Pure ✨';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(139, 69, 19, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-align: center;
    white-space: nowrap;
    animation: textFloat 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes floatCollage {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.15;
    }
    25% { 
        transform: translateY(-10px) scale(1.02);
        opacity: 0.12;
    }
    50% { 
        transform: translateY(-5px) scale(0.98);
        opacity: 0.18;
    }
    75% { 
        transform: translateY(-15px) scale(1.01);
        opacity: 0.14;
    }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero-text {
    flex: 1;
    padding-right: 3rem;
    color: #8B4513;
    animation: heroTextSlide 1.2s ease-out;
}

@keyframes heroTextSlide {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo-container {
    margin-bottom: 2rem;
    animation: logoEntrance 1.2s ease-out;
}

.brand-logo {
    height: 180px;
    width: auto;
    max-width: 450px;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.3)) brightness(1.05) contrast(1.1);
    transition: all 0.4s ease;
    animation: logoEntrance 1.2s ease-out;
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-30px);
        filter: drop-shadow(0 0 0 rgba(0,0,0,0)) brightness(0.8);
    }
    40% {
        transform: scale(1.08) translateY(-5px);
        filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3)) brightness(1.05);
    }
    70% {
        transform: scale(0.98) translateY(2px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: drop-shadow(0 12px 24px rgba(0,0,0,0.4)) brightness(1.1);
    }
}

.brand-logo:hover {
    transform: scale(1.08) translateY(-5px);
    filter: drop-shadow(0 16px 32px rgba(0,0,0,0.4)) brightness(1.1) contrast(1.15);
}

.tagline {
    font-size: 2.8rem;
    font-weight: 400;
    color: #8B4513;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(139,69,19,0.2);
    animation: taglineEntrance 1.5s ease-out 0.3s both;
    line-height: 1.3;
    letter-spacing: 1px;
    position: relative;
    background: linear-gradient(135deg, #6B4423 0%, #9C6B3E 50%, #D4A574 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes taglineEntrance {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
        letter-spacing: 5px;
    }
    60% {
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        letter-spacing: 1px;
    }
}

.tagline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #8B4513 50%, transparent 100%);
    border-radius: 2px;
    animation: underlineGrow 1s ease-out 1.8s both;
}

@keyframes underlineGrow {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 200px;
        opacity: 0.8;
    }
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    color: #8B4513;
    padding: 1.4rem 3.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid rgba(255,255,255,0.8);
}

.cta-button:hover {
    background: linear-gradient(135deg, #f8f8f8 0%, #eeeeee 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-color: #ffffff;
}

.story-button {
    background: linear-gradient(135deg, #9C6B3E 0%, #6B4423 100%);
    color: white;
    border-color: rgba(156,107,62,0.8);
}

.story-button:hover {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.5);
    border-color: #D2691E;
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-button:focus {
    outline: 3px solid rgba(139, 69, 19, 0.5);
    outline-offset: 2px;
}

.story-button:focus {
    outline: 3px solid rgba(255, 255, 255, 0.7);
    outline-offset: 2px;
}

/* Hero Illustration */
.hero-illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 500px;
}

.product-showcase {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 450px;
    background: linear-gradient(135deg, rgba(139,69,19,0.1) 0%, rgba(160,82,45,0.08) 100%);
    border-radius: 40px;
    overflow: visible;
    box-shadow: 0 30px 60px rgba(139,69,19,0.2);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139,69,19,0.2);
    animation: float 6s ease-in-out infinite, showcaseEntrance 1.5s ease-out 0.5s both;
}

@keyframes showcaseEntrance {
    0% {
        opacity: 0;
        transform: translateX(80px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

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

.floating-product {
    position: absolute;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    transition: transform 0.4s ease;
    background: white;
    padding: 8px;
}

.floating-product:hover {
    transform: scale(1.1) translateY(-10px);
}

.floating-product-1 {
    top: 20px;
    left: 30px;
    width: 120px;
    height: 120px;
    animation: float 8s ease-in-out infinite;
}

.floating-product-2 {
    top: 60px;
    right: 40px;
    width: 100px;
    height: 100px;
    animation: float 10s ease-in-out infinite 1s;
}

.floating-product-3 {
    bottom: 120px;
    left: 20px;
    width: 90px;
    height: 90px;
    animation: float 9s ease-in-out infinite 2s;
}

.floating-product-4 {
    bottom: 80px;
    right: 80px;
    width: 110px;
    height: 110px;
    animation: float 7s ease-in-out infinite 1.5s;
}

.floating-product-5 {
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    width: 95px;
    height: 95px;
    animation: float 11s ease-in-out infinite 0.5s;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    filter: brightness(1.1) contrast(1.05);
}

.market-scene-illustration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.market-scene-illustration:hover {
    transform: scale(1.02);
}

/* Optimized Filter Effects - reduced complexity for better performance */
.market-scene-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.05) saturate(1.08);
    transition: transform var(--transition-smooth), filter var(--transition-smooth);
    will-change: transform, filter;
}

.market-scene-illustration:hover .market-scene-img {
    transform: scale(1.05);
    filter: brightness(1.15) contrast(1.1) saturate(1.12);
}

/* Optimized filter effects for product images */
.product-image,
.carousel-product-img {
    filter: brightness(1.05) contrast(1.05);
    transition: filter var(--transition-smooth), transform var(--transition-smooth);
    will-change: filter, transform;
}

.product-image:hover,
.carousel-product-img:hover {
    filter: brightness(1.1) contrast(1.1) saturate(1.1);
}

/* Carousel Section */
.carousel-section {
    padding: var(--space-3xl) 5%;
    background: linear-gradient(135deg, #6B4423 0%, #8B6239 25%, #9C6B3E 50%, #B8895A 75%, #D4A574 100%);
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="carouselGrain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.08"/><circle cx="75" cy="25" r="0.5" fill="%23ffffff" opacity="0.04"/><circle cx="25" cy="75" r="0.8" fill="%23ffffff" opacity="0.06"/><circle cx="75" cy="75" r="1.2" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23carouselGrain)"/></svg>');
    pointer-events: none;
}

.carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.carousel-title {
    text-align: center;
    font-size: 3.5rem;
    color: white;
    margin-bottom: 4rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    display: inline-block;
    width: 100%;
}

.carousel-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff 0%, #f8f8f8 100%);
    border-radius: 2px;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.carousel-track-container {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem 0;
    will-change: transform;
    /* Optimize for infinite scrolling */
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.carousel-clone {
    /* Styles for cloned slides in infinite scroll */
    pointer-events: auto;
    opacity: 1;
}

.carousel-slide {
    min-width: 300px;
    flex: 0 0 300px;
    margin: 0 1rem;
}

.product-showcase-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
}

.product-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6F1B1B 0%, #8F3B3B 50%, #AF5B5B 100%);
}

.product-showcase-card:hover {
    transform: translateY(-15px) scale(1.05) perspective(1000px) rotateX(5deg) rotateY(-2deg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 2px rgba(210, 105, 30, 0.3);
    border-color: #D2691E;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-product-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: brightness(1.05) contrast(1.1);
}

.product-showcase-card:hover .carousel-product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    font-size: 1.3rem;
    color: #8B4513;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: #6b5b47;
    font-size: 0.9rem;
    line-height: 1.4;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary-brown);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--primary-brown);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--primary-brown);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.3);
    border-color: var(--primary-brown);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.carousel-btn:focus {
    outline: 3px solid rgba(139, 69, 19, 0.5);
    outline-offset: 2px;
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 3rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.indicator:hover {
    background: rgba(255,255,255,0.7);
    transform: scale(1.1);
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel-title {
        font-size: 2.5rem;
    }

    .carousel-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .carousel-slide {
        min-width: 280px;
        flex: 0 0 280px;
    }

    .carousel-track {
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .carousel-title {
        font-size: 2rem;
    }

    .carousel-slide {
        min-width: 250px;
        flex: 0 0 250px;
        margin: 0 0.5rem;
    }

    .carousel-product-img {
        height: 180px;
    }

    .product-info {
        padding: 1rem;
    }

    .carousel-section {
        padding: 4rem 3%;
    }
}

/* Products Section - Advanced CSS Grid Layout */
.products {
    padding: 6rem 5%;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    position: relative;
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: var(--space-lg);
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-brown) 50%, transparent 100%);
}

.section-title {
    font-size: var(--font-size-7xl);
    color: var(--primary-brown);
    margin-bottom: var(--space-2xl);
    font-weight: 700;
    position: relative;
    display: inline-block;
    grid-row: 1;
    justify-self: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-brown) 0%, var(--accent-orange) 100%);
    border-radius: 2px;
}

/* Advanced CSS Grid Layout System */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: masonry; /* Modern CSS Grid feature */
    gap: var(--space-xl);
    max-width: 1400px;
    margin: 0 auto;
    grid-row: 3;
    /* Advanced grid area definitions */
    grid-template-areas: 
        "card1 card2 card3"
        "card1 card2 card3";
}

/* Enhanced Grid responsiveness */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        grid-template-areas: 
            "card1 card2"
            "card3 card3";
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "card1"
            "card2"
            "card3";
    }
}

.product-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 3rem 2rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Advanced Pseudo-element Usage */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6F1B1B 0%, #8F3B3B 50%, #AF5B5B 100%);
    z-index: 2;
}

/* Complex decorative pseudo-elements */
.product-card::after {
    content: '✨';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    opacity: 0;
    transform: scale(0) rotate(0deg);
    transition: all var(--transition-smooth);
    z-index: 3;
    animation: sparkle 2s infinite ease-in-out;
}

.product-card:hover::after {
    opacity: 1;
    transform: scale(1) rotate(360deg);
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 0.6; 
        transform: scale(1) rotate(0deg); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2) rotate(180deg); 
    }
}

/* Enhanced carousel decorative elements */
.carousel-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(139, 69, 19, 0.03) 25%, 
        transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Testimonial decorative quotes */
.testimonial::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    color: rgba(255,255,255,0.2);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 1;
}

.testimonial::after {
    content: '"';
    position: absolute;
    bottom: -40px;
    right: 20px;
    font-size: 6rem;
    color: rgba(255,255,255,0.2);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 1;
}

/* Footer decorative elements */
.footer::after {
    content: '🌿 Wholesome • Natural • Pure 🌿';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
    white-space: nowrap;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02) rotate(-0.5deg);
    box-shadow: 0 25px 60px rgba(107, 68, 35, 0.2);
    border-color: #9C6B3E;
}

.product-card:hover .product-image {
    transform: scale(1.15) rotate(2deg);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.product-image-container:hover {
    transform: scale(1.02);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(1.05) contrast(1.1);
}

.product-image-container:hover .product-image {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139,69,19,0.1) 0%, rgba(210,105,30,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 15px;
}

.product-image-container:hover .product-overlay {
    opacity: 1;
}

.product-badge {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.product-gallery {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.gallery-thumb {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-thumb:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.suggest-button {
    background: linear-gradient(135deg, #6B4423 0%, #9C6B3E 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
    margin-top: 1.5rem;
    text-decoration: none;
    display: inline-block;
}

.suggest-button:hover {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

.suggest-button:active {
    transform: translateY(-1px);
}

.suggest-button:focus {
    outline: 3px solid rgba(139, 69, 19, 0.5);
    outline-offset: 2px;
}

.suggest-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
    border: 3px dashed rgba(139, 69, 19, 0.3);
}

.suggest-card:hover {
    border-color: #9C6B3E;
    border-style: solid;
}

.suggest-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.suggest-card .suggest-button {
    margin-top: 1rem;
}

.product-card h3 {
    font-size: 1.5rem;
    color: #8B4513;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b5b47;
}

/* Customer Feedback Section */
.customer-feedback {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #fefcf8 0%, #f8f4ec 100%);
    position: relative;
    overflow: hidden;
}

.customer-feedback::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="feedbackGrain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="0.8" fill="%238B4513" opacity="0.03"/><circle cx="75" cy="75" r="0.5" fill="%23D2691E" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23feedbackGrain)"/></svg>');
    pointer-events: none;
}

.feedback-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.feedback-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #A0522D;
    margin-bottom: 4rem;
    font-style: italic;
}

.feedback-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.feedback-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.15);
    border-color: #D2691E;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.4rem;
    color: #8B4513;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.info-card p {
    color: #6b5b47;
    line-height: 1.6;
    font-size: 1rem;
}

.feedback-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.15);
    border: 2px solid rgba(139, 69, 19, 0.1);
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #8B4513;
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D2691E;
    background: white;
    box-shadow: 0 4px 12px rgba(210, 105, 30, 0.15), 
                0 0 0 3px rgba(210, 105, 30, 0.1),
                inset 0 1px 3px rgba(210, 105, 30, 0.05);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    background: linear-gradient(135deg, #6B4423 0%, #9C6B3E 100%);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.4);
}

.submit-button:active {
    transform: translateY(-1px) scale(0.98);
}

.button-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.submit-button:hover .button-icon {
    transform: translateX(5px);
}

.form-message {
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
    animation: slideDown 0.3s ease-out;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Feedback Section */
@media (max-width: 1024px) {
    .feedback-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .customer-feedback {
        padding: 4rem 3%;
    }

    .feedback-form-wrapper {
        padding: 2rem;
    }

    .submit-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .feedback-subtitle {
        font-size: 1.1rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-icon {
        font-size: 2.5rem;
    }

    .feedback-form-wrapper {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem 1rem;
    }
}

/* About Us Section */
.about-us {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #fefcf8 0%, #f8f4ec 100%);
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.about-content h2 {
    font-size: 3.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #8B4513 0%, #D2691E 100%);
    border-radius: 2px;
}

.roadmap-subtitle {
    font-size: 1.4rem;
    color: #A0522D;
    margin-bottom: 2rem;
    font-weight: 400;
    font-style: italic;
}

.roadmap-scroll-container {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    max-height: calc(100vh - 250px);
}

.roadmap-scroll-container::-webkit-scrollbar {
    width: 8px;
}

.roadmap-scroll-container::-webkit-scrollbar-track {
    background: rgba(139, 69, 19, 0.1);
    border-radius: 10px;
}

.roadmap-scroll-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    border-radius: 10px;
}

.roadmap-scroll-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #D2691E 0%, #8B4513 100%);
}

.roadmap-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 80px;
    min-height: min-content;
}

.roadmap-timeline {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        #8B4513 5%, 
        #A0522D 25%, 
        #D2691E 50%, 
        #CD853F 75%, 
        #DEB887 95%, 
        transparent 100%
    );
    transform: translateX(-50%);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(139, 69, 19, 0.4), 
                inset 0 0 4px rgba(255, 255, 255, 0.2);
}

.roadmap-card {
    position: relative;
    margin: 3rem 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.15);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    overflow: hidden;
    opacity: 0;
    transform: translateY(80px) scale(0.9);
}

.roadmap-card.card-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.roadmap-card[data-step="1"],
.roadmap-card[data-step="3"],
.roadmap-card[data-step="5"] {
    transform: translateY(80px) translateX(-50px) scale(0.9) rotateY(-10deg);
}

.roadmap-card[data-step="2"],
.roadmap-card[data-step="4"] {
    transform: translateY(80px) translateX(50px) scale(0.9) rotateY(10deg);
}

.roadmap-card[data-step="1"].card-visible,
.roadmap-card[data-step="3"].card-visible,
.roadmap-card[data-step="5"].card-visible {
    transform: translateY(0) translateX(0) scale(1) rotateY(0deg);
}

.roadmap-card[data-step="2"].card-visible,
.roadmap-card[data-step="4"].card-visible {
    transform: translateY(0) translateX(0) scale(1) rotateY(0deg);
}

@keyframes slideInCard {
    0% {
        opacity: 0;
        transform: translateY(50px) translateX(0) scale(0.9);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-5px) translateX(0) scale(1.02);
    }
    80% {
        transform: translateY(3px) translateX(0) scale(0.99);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateX(0) scale(1);
    }
}

.roadmap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B4513 0%, #D2691E 50%, #CD853F 100%);
}

.roadmap-card::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    border: 4px solid white;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
    z-index: 10;
}

.roadmap-card[data-step="1"]::after,
.roadmap-card[data-step="3"]::after,
.roadmap-card[data-step="5"]::after {
    right: -70px;
}

.roadmap-card[data-step="2"]::after,
.roadmap-card[data-step="4"]::after {
    left: -70px;
}

.roadmap-card:hover {
    transform: translateY(-12px) scale(1.03) rotateY(2deg);
    box-shadow: 0 30px 80px rgba(139, 69, 19, 0.3),
                0 10px 30px rgba(210, 105, 30, 0.2);
    border-color: #D2691E;
}

.roadmap-card:hover::after {
    transform: translateY(-50%) scale(1.2);
    background: linear-gradient(135deg, #D2691E 0%, #8B4513 100%);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.5);
}

.roadmap-card[data-step="1"],
.roadmap-card[data-step="3"],
.roadmap-card[data-step="5"] {
    margin-left: 0;
    margin-right: calc(50% + 60px);
    text-align: left;
}

.roadmap-card[data-step="2"],
.roadmap-card[data-step="4"] {
    margin-left: calc(50% + 60px);
    margin-right: 0;
    text-align: left;
}

.card-header {
    padding: 2rem 2.5rem 1rem;
    position: relative;
}

.card-header h4 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 25%, #D2691E 50%, #CD853F 75%, #DEB887 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin: 0;
    position: relative;
    text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.1);
}

.card-header h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8B4513 0%, #D2691E 50%, #CD853F 100%);
    border-radius: 2px;
    opacity: 0.7;
}

.card-content {
    padding: 0 2.5rem 2.5rem;
}

.card-content h5 {
    font-size: 1.3rem;
    color: #D2691E;
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
}

.card-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a3c2a;
    margin: 0;
}

/* Responsive Design for Roadmap */
@media (max-width: 768px) {
    .about-us {
        height: auto;
        min-height: 100vh;
        padding: 4rem 3%;
        overflow: visible;
    }

    .about-content {
        height: auto;
        overflow: visible;
    }

    .roadmap-scroll-container {
        overflow-y: visible;
        padding: 1rem 0;
        max-height: none;
    }

    .roadmap-container {
        padding: 2rem 20px;
    }

    .roadmap-timeline {
        left: 50px;
        width: 4px;
        background: linear-gradient(180deg, 
            transparent 0%, 
            #8B4513 10%, 
            #D2691E 50%, 
            #CD853F 90%, 
            transparent 100%
        );
    }

    .roadmap-card[data-step="1"],
    .roadmap-card[data-step="2"],
    .roadmap-card[data-step="3"],
    .roadmap-card[data-step="4"],
    .roadmap-card[data-step="5"] {
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
    }

    .roadmap-card::after {
        left: -70px !important;
        right: auto !important;
        width: 16px;
        height: 16px;
        border-width: 3px;
    }

    .roadmap-card:hover {
        transform: translateY(-8px) scale(1.02);
    }



    .card-header h4 {
        font-size: 1.5rem;
    }

    .card-content h5 {
        font-size: 1.2rem;
    }

    .card-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-us {
        padding: 3rem 3%;
        height: auto;
        min-height: 100vh;
    }

    .about-content {
        height: auto;
    }

    .about-content h2 {
        font-size: 2.5rem;
    }

    .roadmap-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .roadmap-scroll-container {
        overflow-y: visible;
    }

    .roadmap-container {
        padding: 1rem 0;
    }

    .roadmap-card {
        margin: 2rem 0;
    }

    .card-header {
        padding: 1.5rem 2rem 1rem;
    }

    .card-content {
        padding: 0 2rem 2rem;
    }
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #6B4423 0%, #8B6239 25%, #9C6B3E 50%, #B8895A 75%, #4A2E16 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerGrain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="0.8" fill="%23ffffff" opacity="0.03"/><circle cx="80" cy="40" r="0.5" fill="%23ffffff" opacity="0.02"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23footerGrain)"/></svg>');
    pointer-events: none;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding: 4rem 5% 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-brand-logo {
    height: 100px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2)) brightness(1.05) contrast(1.05);
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.footer-tagline {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    margin: 0;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin: 0;
    max-width: 400px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: rgba(255,255,255,0.6);
    border-radius: 1px;
}

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

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-column a:hover {
    color: white;
    transform: translateX(5px);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.footer-column a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.footer-column a:hover::before {
    width: 8px;
}

.footer-bottom {
    padding: 2rem 5%;
    background: rgba(0,0,0,0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 5% 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column a::before {
        display: none;
    }

    .footer-column a:hover {
        transform: none;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 2rem 3% 1.5rem;
    }

    .footer-bottom {
        padding: 1.5rem 3%;
    }

    .footer-brand h3 {
        font-size: 1.8rem;
    }

    .footer-tagline {
        font-size: 1.1rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Advanced Media Query Optimization - Comprehensive Responsive Design */

/* Extra Large Screens */
@media (min-width: 1440px) {
    .hero-content {
        max-width: 1600px;
        gap: var(--space-3xl);
    }

    .brand-logo {
        height: 200px;
        max-width: 500px;
    }

    .tagline {
        font-size: var(--font-size-7xl);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1600px;
    }
}

/* Large Screens */
@media (min-width: 1200px) and (max-width: 1439px) {
    .hero-content {
        max-width: 1400px;
        gap: var(--space-2xl);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1400px;
    }
}

/* Medium-Large Screens */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-content {
        gap: var(--space-xl);
    }

    .brand-logo {
        height: 160px;
        max-width: 400px;
    }

    .tagline {
        font-size: var(--font-size-6xl);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium Screens */
@media (min-width: 769px) and (max-width: 991px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-lg);
    }

    .hero-text {
        padding-right: 0;
    }

    .brand-logo {
        height: 140px;
        max-width: 350px;
    }

    .tagline {
        font-size: var(--font-size-5xl);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

/* Tablet Screens */
@media (max-width: 768px) {
    :root {
        --font-size-7xl: 2.5rem;
        --font-size-6xl: 2.2rem;
        --font-size-5xl: 2rem;
        --space-3xl: 4rem;
        --space-2xl: 3rem;
    }

    .hero {
        padding: var(--space-lg) 3%;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-lg);
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: var(--space-xl);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
        width: 100%;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        padding: 1.2rem 2.5rem;
        font-size: var(--font-size-md);
    }

    .brand-logo {
        height: 120px;
        max-width: 300px;
    }

    .tagline {
        font-size: var(--font-size-4xl);
    }

    .section-title {
        font-size: var(--font-size-5xl);
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .product-showcase {
        max-width: 400px;
        height: 350px;
    }

    .floating-product {
        transform: scale(0.8);
    }

    .floating-product-1, .floating-product-2, .floating-product-3, .floating-product-4, .floating-product-5 {
        width: 80px !important;
        height: 80px !important;
    }

    /* Tablet-specific advanced layouts */
    .carousel-section {
        padding: var(--space-2xl) 3%;
    }

    .about-us {
        padding: var(--space-2xl) 3%;
    }
}

/* Small Tablet / Large Mobile */
@media (min-width: 481px) and (max-width: 640px) {
    .hero {
        padding: var(--space-md) 4%;
    }

    .cta-button {
        max-width: 280px;
        padding: 1rem 2rem;
    }

    .carousel-slide {
        min-width: 260px;
        flex: 0 0 260px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1rem 3%;
    }

    .brand-logo {
        height: 90px;
        max-width: 250px;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content h2 {
        font-size: 2.5rem;
    }

    .about-content h3 {
        font-size: 1.8rem;
    }

    .about-text {
        padding: 2rem;
    }

    .products, .testimonials, .about-us {
        padding: 4rem 3%;
    }
}

/* Advanced CSS Techniques - Complex Animation & Layout Systems */

/* Advanced CSS Grid Container System */
.grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(auto-fit, minmax(100px, auto));
    grid-gap: var(--space-md);
    grid-auto-flow: dense;
    align-items: start;
    justify-items: stretch;
}

/* Complex Transform Animation System */
@keyframes complexTransform {
    0% {
        transform: perspective(1000px) 
                   translateZ(-100px) 
                   rotateX(-15deg) 
                   rotateY(-15deg) 
                   scale3d(0.8, 0.8, 0.8);
        opacity: 0;
        filter: blur(5px) brightness(0.7);
    }
    25% {
        transform: perspective(1000px) 
                   translateZ(-50px) 
                   rotateX(-8deg) 
                   rotateY(-8deg) 
                   scale3d(0.9, 0.9, 0.9);
        opacity: 0.4;
        filter: blur(2px) brightness(0.85);
    }
    50% {
        transform: perspective(1000px) 
                   translateZ(10px) 
                   rotateX(2deg) 
                   rotateY(2deg) 
                   scale3d(1.05, 1.05, 1.05);
        opacity: 0.8;
        filter: blur(0px) brightness(1.1);
    }
    75% {
        transform: perspective(1000px) 
                   translateZ(5px) 
                   rotateX(-1deg) 
                   rotateY(-1deg) 
                   scale3d(1.02, 1.02, 1.02);
        opacity: 0.95;
        filter: blur(0px) brightness(1.05);
    }
    100% {
        transform: perspective(1000px) 
                   translateZ(0px) 
                   rotateX(0deg) 
                   rotateY(0deg) 
                   scale3d(1, 1, 1);
        opacity: 1;
        filter: blur(0px) brightness(1);
    }
}

/* Advanced Flexbox Layout Utilities */
.flex-complex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: space-around;
    gap: var(--space-md);
}

.flex-item-grow { flex: 1 1 auto; }
.flex-item-shrink { flex: 0 1 auto; }
.flex-item-fixed { flex: 0 0 auto; }
.flex-item-basis-quarter { flex-basis: 25%; }
.flex-item-basis-third { flex-basis: 33.333%; }
.flex-item-basis-half { flex-basis: 50%; }

/* Advanced Filter Effect Classes */
.filter-enhance {
    filter: brightness(1.1) 
            contrast(1.05) 
            saturate(1.1) 
            hue-rotate(2deg) 
            drop-shadow(0 4px 8px rgba(var(--primary-brown-rgb), 0.2));
}

.filter-dramatic {
    filter: brightness(1.2) 
            contrast(1.15) 
            saturate(1.3) 
            hue-rotate(5deg) 
            drop-shadow(0 8px 16px rgba(var(--accent-orange-rgb), 0.3))
            sepia(0.1);
}

.filter-soft {
    filter: brightness(1.05) 
            contrast(0.95) 
            saturate(0.9) 
            blur(0.5px) 
            drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Advanced Pseudo-element Decorative System */
.decorative-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    background: linear-gradient(45deg, 
        var(--primary-brown), 
        var(--accent-orange), 
        var(--light-brown), 
        var(--secondary-brown)) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, 
          linear-gradient(#fff 0 0);
    mask-composite: exclude;
    border-radius: inherit;
}

.decorative-glow::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, 
        transparent,
        rgba(var(--accent-orange-rgb), 0.3),
        transparent);
    border-radius: inherit;
    opacity: 0;
    transition: opacity var(--transition-smooth);
    z-index: -1;
    animation: rotateGlow 4s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.decorative-glow:hover::after {
    opacity: 1;
}

/* Enhanced Animation System */
@media (prefers-reduced-motion: no-preference) {
    .animate-in {
        animation: complexTransform 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .animate-slide-up {
        animation: enhancedSlideIn var(--duration-normal) cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .animate-fade-in {
        animation: fadeInComplex 0.8s ease-out forwards;
    }

    .product-card, .testimonial, .roadmap-card {
        opacity: 0;
        transform: perspective(1000px) 
                   translateY(40px) 
                   translateZ(-20px) 
                   rotateX(-5deg) 
                   scale3d(0.95, 0.95, 0.95);
        transition: all var(--transition-smooth);
        will-change: transform, opacity, filter;
    }

    .product-card:nth-child(1) { animation-delay: 0.1s; }
    .product-card:nth-child(2) { animation-delay: 0.3s; }
    .product-card:nth-child(3) { animation-delay: 0.5s; }

    @keyframes enhancedSlideIn {
        0% {
            opacity: 0;
            transform: perspective(1000px) 
                       translateY(60px) 
                       translateZ(-30px) 
                       rotateX(-10deg) 
                       scale3d(0.8, 0.8, 0.8);
            filter: blur(3px) brightness(0.8);
        }
        50% {
            opacity: 0.7;
            transform: perspective(1000px) 
                       translateY(-8px) 
                       translateZ(5px) 
                       rotateX(2deg) 
                       scale3d(1.02, 1.02, 1.02);
            filter: blur(0px) brightness(1.05);
        }
        100% {
            opacity: 1;
            transform: perspective(1000px) 
                       translateY(0px) 
                       translateZ(0px) 
                       rotateX(0deg) 
                       scale3d(1, 1, 1);
            filter: blur(0px) brightness(1);
        }
    }

    @keyframes fadeInComplex {
        0% {
            opacity: 0;
            transform: scale3d(0.9, 0.9, 0.9) rotateZ(-2deg);
            filter: blur(2px);
        }
        50% {
            opacity: 0.8;
            transform: scale3d(1.02, 1.02, 1.02) rotateZ(1deg);
            filter: blur(0px);
        }
        100% {
            opacity: 1;
            transform: scale3d(1, 1, 1) rotateZ(0deg);
            filter: blur(0px);
        }
    }

    /* Performance optimizations with 3D acceleration */
    .hero-content,
    .carousel-track,
    .product-showcase-card,
    .roadmap-card {
        transform: translateZ(0);
        backface-visibility: hidden;
        perspective: 1000px;
        transform-style: preserve-3d;
    }

    /* Advanced smooth scrolling */
    @supports (scroll-behavior: smooth) {
        html {
            scroll-behavior: smooth;
        }

        @media (prefers-reduced-motion: no-preference) {
            html {
                scroll-behavior: smooth;
                scroll-padding-top: 2rem;
            }
        }
    }

    /* Container queries for responsive design */
    @supports (container-type: inline-size) {
        .responsive-container {
            container-type: inline-size;
        }

        @container (min-width: 400px) {
            .responsive-item {
                flex-direction: row;
                gap: var(--space-lg);
            }
        }

        @container (min-width: 600px) {
            .responsive-item {
                grid-template-columns: repeat(2, 1fr);
            }
        }
    }

    /* Reduced motion preferences */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
            transform: none !important;
        }
    }
}

/* Global Performance Enhancements */
* {
    transform: translateZ(0);
}

img {
    will-change: transform;
    backface-visibility: hidden;
}

/* GPU Acceleration for key elements */
.cta-button,
.carousel-btn,
.product-showcase-card,
.testimonial,
.roadmap-card {
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

/* Optimized transitions using custom properties */
.hover-transform {
    transition: transform var(--transition-smooth), 
                box-shadow var(--transition-smooth),
                border-color var(--transition-normal);
}

/* Enhanced focus states for accessibility */
.cta-button:focus,
.carousel-btn:focus,
.social-link:focus {
    outline: 3px solid var(--accent-orange);
    outline-offset: 2px;
    box-shadow: 0 0 0 2px var(--bg-white), 0 0 0 5px var(--accent-orange);
}