/* 
========================================================================
   ASIA HERBS - PREMIUM ECO-LUXURY & AYURVEDIC REDESIGN SYSTEM
   Theme: Eco-Luxury Organic Science (Teal Forest, Warm Gold & Silk White)
   Author: Antigravity AI Coding Assistant (Pair Programming)
   Description: Redesigned styling system built for contract manufacturing.
========================================================================
*/

/* 1. IMPORTS & GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* 2. DESIGN VARIABLES & THEME TOKENS */
:root {
    /* Color Palette */
    --primary: #093b33;                 /* Deep Teal Forest Green */
    --primary-light: #12544a;           /* Medium Sage Teal */
    --primary-xlight: #eef6f3;          /* Soft Eucalyptus Tint */
    --primary-glow: rgba(9, 59, 51, 0.12);
    
    --secondary: #d2ad57;               /* Warm Champagne Gold */
    --secondary-light: #e6c270;         /* Lighter Warm Gold */
    --secondary-glow: rgba(210, 173, 87, 0.15);
    
    --accent: #e77e23;                  /* Ochre Amber Accent */
    
    --bg-base: #f9fbfc;                 /* Clean Silk Off-White */
    --bg-card: #ffffff;                 /* Pure White Card */
    --bg-dark: #041916;                 /* Dark Botanical Charcoal */
    --bg-overlay: rgba(4, 25, 22, 0.82);
    
    --text-main: #111e1c;               /* Charcoal Slate */
    --text-muted: #536c67;              /* Slate Sage */
    --text-light: #ffffff;              
    
    --border-color: #e5edea;            /* Light Mint Border */
    --border-glow: #e2d1a3;             /* Gold Accent Border */
    
    --success: #198754;
    --error: #dc3545;

    /* Typography */
    --font-heading: var(--font-body);
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Shadows & Elevation */
    --shadow-sm: 0 4px 16px rgba(9, 59, 51, 0.03);
    --shadow-md: 0 12px 36px rgba(9, 59, 51, 0.05);
    --shadow-lg: 0 24px 60px rgba(9, 59, 51, 0.08);
    
    /* Layout Constants */
    --navbar-height: 80px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Animations */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
}

/* 3. BASE STYLES & RESET */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.65;
    overflow-x: hidden;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

input, textarea, select, button {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
    background: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 4. UTILITIES & HELPER CLASSES */
.section {
    padding: 100px 0;
    position: relative;
}

.section-bg-cream {
    background-color: var(--primary-xlight);
}

.section-bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section-bg-dark h2 {
    color: var(--text-light);
}

.text-center {
    text-align: center;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    display: block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    font-weight: 700;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.section-bg-dark .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 16px auto 0 auto;
    border-radius: 2px;
}

.section-bg-dark .section-header h2::after {
    background: linear-gradient(90deg, #ffffff, var(--secondary-light));
}

.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Custom Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 8px;
    box-shadow: var(--shadow-sm);
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--primary-glow);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-light);
    border-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--secondary-glow);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

/* 5. TOP UTILITY BAR & STICKY HEADER */
.top-bar {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item a:hover {
    color: var(--secondary-light);
}

.top-bar-item i {
    color: var(--secondary);
}

.top-bar-socials {
    display: flex;
    gap: 16px;
}

.top-bar-socials a:hover {
    color: var(--secondary-light);
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(9, 59, 51, 0.05);
}

header.on-scroll {
    box-shadow: var(--shadow-md);
}

header.on-scroll .nav-container {
    padding: 12px 0;
}

.navbar {
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text h3 {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
}

.logo-text span {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    display: block;
    margin-top: -1px;
    font-weight: 700;
    font-family: var(--font-body);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    position: relative;
    padding: 8px 0;
    font-family: var(--font-body);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background-color: var(--secondary);
    transition: var(--transition-fast);
    border-radius: 4px;
}

.nav-link:hover {
    color: var(--secondary);
}

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

.dropdown-parent {
    position: relative;
    cursor: pointer;
}

.dropdown-parent i {
    font-size: 0.75rem;
    margin-left: 4px;
    transition: var(--transition-fast);
}

.dropdown-parent:hover i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-card);
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-md);
    padding: 16px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.dropdown-parent:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 24px;
    font-size: 0.9rem;
    color: var(--text-main);
    transition: var(--transition-fast);
    font-weight: 600;
}

.dropdown-item:hover {
    background-color: var(--primary-xlight);
    color: var(--primary);
    padding-left: 28px;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.mobile-nav-toggle {
    display: none;
    font-size: 1.75rem;
    color: var(--primary);
    cursor: pointer;
}

/* 6. HERO SLIDER BANNER */
.hero {
    min-height: calc(100vh - var(--navbar-height) - 40px);
    background-color: var(--bg-dark);
    display: flex;
    align-items: center;
    color: var(--text-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
    transform: scale(1.02);
}

.hero-bg-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(4, 25, 22, 0.9) 20%, rgba(4, 25, 22, 0.45) 100%);
}

@keyframes kenBurns {
    from {
        transform: scale(1.02);
    }
    to {
        transform: scale(1.1);
    }
}

.hero-bg-slide.active {
    opacity: 1;
    z-index: 2;
    animation: kenBurns 12s ease-out forwards;
}

/* Removed bottom wave divider overlay */

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 5;
}

/* Hero Left Slider */
.hero-slider-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    min-height: 380px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.8s ease;
    transform: translateY(20px);
    z-index: 1;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 2;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--secondary-light);
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-bullet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.hero-bullet-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.bullet-icon {
    color: var(--secondary);
    font-size: 1.35rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.bullet-text h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: var(--font-body);
}

.bullet-text p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    line-height: 1.45;
}

.hero-slider-dots {
    display: flex;
    gap: 10px;
    margin-top: 36px;
    z-index: 5;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hero-slider-dot.active {
    width: 32px;
    border-radius: 6px;
    background-color: var(--secondary);
}

/* Hero Right Fixed Form */
.hero-form-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 10;
}

.hero-form-card {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(9, 59, 51, 0.12);
    box-shadow: 0 30px 70px rgba(9, 59, 51, 0.15);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 450px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.hero-form-card h3 {
    color: var(--primary);
    font-size: 1.65rem;
    margin-bottom: 6px;
    font-family: var(--font-heading);
}

.hero-form-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 28px;
    font-family: var(--font-body);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

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

.form-group-full {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #d0ded8;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    color: var(--text-main);
    background-color: #f7faf8;
    transition: var(--transition-fast);
    font-family: var(--font-body);
}

.form-control::placeholder {
    color: #799790;
}

.form-control:focus {
    background-color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(9, 59, 51, 0.1);
}

select.form-control option {
    background-color: #ffffff;
    color: var(--text-main);
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.captcha-question {
    background-color: var(--primary-xlight);
    color: var(--primary);
    padding: 10px 16px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 1.05rem;
    border: 1px solid var(--border-color);
    user-select: none;
    font-family: var(--font-body);
}

/* 7. TRUST FEATURES SHOWCASE */
.trust-features {
    padding: 60px 0;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-feature-card {
    background-color: var(--bg-base);
    padding: 36px 24px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-glow);
    background-color: var(--bg-card);
}

.trust-feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-xlight);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(9, 59, 51, 0.05);
}

.trust-feature-card:hover .trust-feature-icon {
    background-color: var(--primary);
    color: white;
    transform: scale(1.08);
}

.trust-feature-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.trust-feature-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 7.5 INVENTORY SECTION & ROLLING CAROUSEL */
.inventory {
    background-color: var(--primary-xlight);
    overflow: hidden;
    position: relative;
    padding: 100px 0;
}

.inventory .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.inventory .text-container {
    width: 45%;
}

.inventory .text-container h2 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary);
}

.inventory .text-container .heading-para {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 24px;
    line-height: 1.5;
}

.inventory .text-container .para {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.inventory .rolling-images-container {
    width: 50%;
    display: flex;
    justify-content: space-between;
    height: 580px;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    -webkit-mask-image: linear-gradient(to bottom, transparent, white 15%, white 85%, transparent);
    mask-image: linear-gradient(to bottom, transparent, white 15%, white 85%, transparent);
}

.inventory .rolling-top,
.inventory .rolling-bottom {
    display: flex;
    flex-direction: column;
    width: 47%;
    gap: 30px;
}

/* Animations for rolling columns */
@keyframes rollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes rollDown {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

.inventory .rolling-top {
    animation: rollUp 20s linear infinite;
}

.inventory .rolling-bottom {
    animation: rollDown 20s linear infinite;
}

/* Pause scroll animation on user hover */
.inventory .rolling-images-container:hover .rolling-top,
.inventory .rolling-images-container:hover .rolling-bottom {
    animation-play-state: paused;
}

.inventory .img-box {
    position: relative;
    border-radius: var(--border-radius-lg);
    background-color: #E4D5C5;
    padding: 40px 20px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    min-height: 280px;
}

.inventory .img-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.inventory .img-box img {
    width: auto;
    max-width: 85%;
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.15));
}

.inventory .img-box:hover img {
    transform: scale(1.06) translateY(-5px);
}

.inventory .img-box p {
    text-align: center;
    color: #333;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.3rem;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Mobile Visibility helper classes matching avedaayur.com design */
.m-none {
    display: flex;
}

.d-none {
    display: none;
}

/* Responsiveness */
@media screen and (max-width: 991px) {
    .inventory .content {
        flex-direction: column;
        gap: 40px;
    }
    
    .inventory .text-container,
    .inventory .rolling-images-container {
        width: 100% !important;
    }
    
    .inventory .text-container {
        text-align: center;
    }
    
    .inventory .text-container h2 {
        font-size: 2.25rem;
    }
}

@media screen and (max-width: 767px) {
    .m-none {
        display: none !important;
    }
    
    .d-none.m-flex {
        display: flex !important;
    }
    
    .inventory .mobile-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        width: 100%;
        margin-top: 30px;
    }
    
    .inventory .mobile-content .img-box {
        width: calc(50% - 10px);
        aspect-ratio: 1 / 1;
        max-width: 240px;
    }
}

@media screen and (max-width: 480px) {
    .inventory .mobile-content .img-box {
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
    }
}

/* 8. ABOUT US SECTION */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-media-collage {
    position: sticky;
    top: 120px; /* Fits below our sticky header */
    padding: 30px;
}

.collage-main-img {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.collage-main-img img {
    width: 100%;
    display: block;
    transition: var(--transition-smooth);
}

.collage-main-img:hover img {
    transform: scale(1.03);
}

.collage-sub-img {
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 200px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--bg-card);
    transition: var(--transition-smooth);
    z-index: 2;
}

.collage-sub-img img {
    width: 100%;
    display: block;
}

.collage-sub-img:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: var(--border-glow);
}

.collage-stats-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--bg-dark);
    border: 1.5px solid var(--border-glow);
    color: white;
    padding: 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 180px;
    z-index: 3;
    animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
    from {
        box-shadow: 0 10px 30px rgba(210, 173, 87, 0.1);
    }
    to {
        box-shadow: 0 10px 40px rgba(210, 173, 87, 0.25);
    }
}

.collage-stats-badge h4 {
    font-size: 2.2rem;
    color: var(--secondary-light);
    font-weight: 800;
    margin-bottom: 2px;
    font-family: var(--font-body);
}

.collage-stats-badge p {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--primary-light);
}

.about-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Tab selector pills */
.about-tabs-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.tab-btn {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
    background-color: var(--primary-xlight);
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;
}

.tab-btn:hover {
    color: var(--primary);
    background-color: #e2ede8;
}

.tab-btn.active {
    color: white;
    background-color: var(--primary);
    border-color: var(--primary);
}

.tab-btn.active i {
    color: var(--secondary-light);
}

/* Tab panes contents */
.about-tabs-content {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    padding: 30px;
    margin-bottom: 36px;
    min-height: 230px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: tabFadeIn 0.5s ease forwards;
}

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

.tab-pane p {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.tab-bullets {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.tab-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--primary);
}

.tab-bullets li i {
    color: var(--secondary);
    font-size: 0.95rem;
}

/* 9. PRODUCT CATEGORIES (GRID) */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 44px 36px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    transform: scaleY(0);
    transition: var(--transition-smooth);
    transform-origin: top;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.category-card:hover::before {
    transform: scaleY(1);
}

.category-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary-xlight);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 28px;
    transition: var(--transition-smooth);
}

.category-card:hover .category-icon {
    background-color: var(--primary);
    color: white;
    transform: scale(1.05);
}

.category-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.category-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
    line-height: 1.6;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-body);
}

.category-link i {
    transition: var(--transition-fast);
}

.category-card:hover .category-link {
    color: var(--secondary);
}

.category-card:hover .category-link i {
    transform: translateX(4px);
}

/* 10. OUR PROCESS & STRENGTHS */
.strengths-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.strengths-content h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-step {
    display: flex;
    gap: 24px;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 44px;
    left: 22px;
    width: 2px;
    height: calc(100% + 16px);
    background-color: var(--border-color);
    z-index: 1;
}

.process-step:last-child::after {
    display: none;
}

.step-num {
    width: 44px;
    height: 44px;
    background-color: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 800;
    font-size: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    font-family: var(--font-body);
}

.process-step:hover .step-num {
    background-color: var(--primary);
    color: white;
}

.step-info {
    padding-top: 4px;
}

.step-info h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    font-weight: 700;
    color: var(--primary-light);
}

.step-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.strengths-visual {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.strengths-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 44px;
    background: linear-gradient(to top, rgba(4, 25, 22, 0.95) 40%, transparent);
    color: white;
}

.strengths-overlay h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.strengths-overlay p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.6;
}

/* 11. FEATURED PRODUCTS (SLIDER) */
.featured-slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.slider-wrapper {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.product-slide {
    flex: 0 0 calc(33.333% - 20px);
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.product-slide:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-glow);
}

.product-media {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    background-color: var(--primary-xlight);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-media i {
    font-size: 4.5rem;
    color: var(--primary-light);
    opacity: 0.35;
    transition: var(--transition-smooth);
}

.product-slide:hover .product-media i {
    transform: scale(1.1) rotate(12deg);
    opacity: 0.6;
}

.product-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 4px;
    font-family: var(--font-body);
}

.product-details {
    padding: 36px;
}

.product-details h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.product-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.product-features-mini {
    display: flex;
    gap: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    font-family: var(--font-body);
}

.product-features-mini span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.product-features-mini i {
    color: var(--secondary);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 48px;
    align-items: center;
}

.slider-btn {
    width: 52px;
    height: 52px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.slider-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    width: 24px;
    border-radius: 5px;
    background-color: var(--secondary);
}

/* 8.5 COMPLIANCE SECTION */
.compliance-section {
    background-color: var(--primary-xlight); /* Match the creamy look */
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 45px;
}

.compliance-card {
    background-color: var(--bg-base);
    border-radius: var(--border-radius-md);
    padding: 35px 25px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.compliance-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.compliance-card img {
    max-width: 65px;
    height: auto;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.compliance-card:hover img {
    transform: scale(1.1);
}

.compliance-card .text-box h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    font-family: var(--font-body);
}

.compliance-card .text-box p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 8.75 GLOBAL PRESENCE */
.global-presence {
    background-color: var(--primary-xlight);
    padding: 100px 0;
}

.global-map-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.map-left {
    position: relative;
    padding-right: 20px;
}

.map-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.06));
    border-radius: var(--border-radius-lg);
}

.map-right {
    padding-left: 20px;
}

.map-subheading {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 800;
}

.map-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.country-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.country-list li a {
    display: inline-flex;
    align-items: center;
    color: var(--text-main);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 10px 15px;
    background-color: var(--bg-card);
    border-radius: var(--border-radius-sm);
    width: 100%;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.country-list li a i {
    color: var(--secondary);
    margin-right: 12px;
    font-size: 1.1rem;
}

.country-list li a:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateX(5px);
}

.country-list li a:hover i {
    color: var(--secondary-light);
}

@media screen and (max-width: 992px) {
    .global-map-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-left, .map-right {
        padding: 0;
    }
}

/* 12. TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-card);
    padding: 44px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-glow);
}

.testimonial-card::after {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 36px;
    font-family: var(--font-heading);
    font-size: 6.5rem;
    color: var(--primary-xlight);
    line-height: 1;
    pointer-events: none;
}

.stars {
    color: var(--secondary);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 18px;
}

.user-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.15rem;
    font-family: var(--font-body);
}

.user-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
}

.user-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    font-family: var(--font-body);
}

/* 13. FAQ ACCORDION SECTION */
.faq-accordion-card {
    background-color: var(--bg-card);
    padding: 44px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.faq-item:last-child {
    border: none;
    padding-bottom: 0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    background: none;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    padding: 12px 0;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-question i {
    font-size: 0.95rem;
    color: var(--secondary);
    transition: var(--transition-smooth);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding-top: 10px;
    padding-bottom: 12px;
    line-height: 1.65;
}

/* 14. 50/50 SPLIT CONTACT & MAP SECTION */
.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-top: 40px;
    align-items: stretch;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card-item {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    transition: var(--transition-smooth);
}

.contact-card-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-glow);
}

.info-icon {
    width: 52px;
    height: 52px;
    background-color: var(--primary-xlight);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.contact-card-item:hover .info-icon {
    background-color: var(--primary);
    color: white;
}

.info-details h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary);
}

.info-details p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-map-wrapper {
    width: 100%;
    min-height: 450px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
}

.contact-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}

/* 15. FOOTER SYSTEM */
.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 48px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    margin-top: 24px;
    margin-bottom: 28px;
    line-height: 1.65;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-fast);
}

.footer-social-icon:hover {
    background-color: var(--secondary);
    color: white;
    border-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-links-col h4 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 24px;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
}

.footer-links-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
}

.footer-links-list a::before {
    content: '\203A';
    font-size: 1.25rem;
    line-height: 1;
    color: var(--secondary);
    transition: var(--transition-fast);
}

.footer-links-list a:hover {
    color: white;
    padding-left: 4px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--secondary);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item strong {
    color: white;
    display: block;
    margin-bottom: 2px;
}

.footer-bottom {
    background-color: #031311;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    padding: 24px 0;
}

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

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: white;
}

/* 16. WHATSAPP FLOATING BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
}

/* 17. SCROLL OBSERVER ANIMATIONS */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.appear {
    opacity: 1;
    transform: translateY(0);
}

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

/* 18. RESPONSIVE MEDIA QUERIES */

/* Laptop / Desktop breaks */
@media screen and (max-width: 1024px) {
    .section {
        padding: 80px 0;
    }
    .hero-title {
        font-size: 2.6rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .about-grid, .strengths-grid, .hero-grid {
        gap: 40px;
    }
}

/* Tablet screens */
@media screen and (max-width: 768px) {
    :root {
        --navbar-height: 70px;
    }
    .top-bar {
        display: none;
    }
    .nav-container {
        padding: 16px 0;
    }
    .nav-menu {
        position: fixed;
        top: var(--navbar-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--navbar-height));
        background-color: var(--bg-card);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 24px;
        gap: 24px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-smooth);
        overflow-y: auto;
    }
    .nav-menu.open {
        left: 0;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--secondary);
        border-radius: 0;
        padding: 4px 0 4px 16px;
        margin-top: 10px;
        transform: none;
        display: none;
    }
    .dropdown-parent.active .dropdown-menu {
        display: block;
    }
    .mobile-nav-toggle {
        display: block;
    }
    .nav-cta {
        display: none;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero-form-wrapper {
        justify-content: center;
    }
    .hero-form-card {
        max-width: 100%;
    }
    .about-grid, .strengths-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-media-collage {
        order: 2;
        max-width: 480px;
        margin: 0 auto;
        position: static;
        padding: 30px 15px;
    }
    .about-floating-box {
        right: 10px;
    }
    .strengths-visual {
        order: 2;
        max-width: 480px;
        margin: 0 auto;
    }
    .product-slide {
        flex: 0 0 calc(50% - 15px);
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .form-group-full {
        grid-column: span 1;
    }
    .contact-split-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-map-wrapper {
        min-height: 350px;
    }
}

/* Mobile screens */
@media screen and (max-width: 576px) {
    .section-header h2 {
        font-size: 2rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .product-slide {
        flex: 0 0 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================
   PREMIUM ABOUT US PAGE STYLES
   ========================================= */

/* Hero Banner */
.inner-hero {
    background-image: linear-gradient(var(--bg-overlay), var(--bg-overlay)), url('../images/hero_herbal_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 115px 0 95px; /* Proper offset to clear sticky header */
    text-align: center;
    color: white;
    position: relative;
    border-bottom: 3px solid var(--secondary); /* elegant gold line divider */
}

.inner-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.inner-hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    letter-spacing: -0.5px;
}

.breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.breadcrumbs a {
    color: var(--secondary-light);
    transition: var(--transition-fast);
}

.breadcrumbs a:hover {
    color: white;
    text-decoration: underline;
}

.breadcrumbs .current {
    color: white;
    font-weight: 600;
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
    background-color: var(--bg-card);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image-wrapper {
    position: relative;
}

.story-img {
    width: 100%;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.story-content h2 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.25;
}

.story-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 20px;
}

.story-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.story-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-light);
}

.story-list i {
    color: var(--secondary);
    font-size: 1.1rem;
}

/* Mission & Vision Section (Alternating) */
.about-mission-vision {
    padding: 100px 0;
    background-color: var(--primary-xlight); /* Eucalyptus tint background */
}

.mv-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.mv-row:last-child {
    margin-bottom: 0;
}

.mv-row.reverse {
    flex-direction: row-reverse;
}

.mv-text-box {
    flex: 0 0 52%;
    background-color: var(--bg-card);
    padding: 50px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.mv-text-box .subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 12px;
    display: block;
}

.mv-text-box h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.mv-text-box p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.mv-img-box {
    flex: 0 0 42%;
}

.mv-img-box img {
    width: 100%;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

/* Core Values Grid */
.about-values {
    padding: 100px 0;
    background-color: var(--bg-card);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background-color: var(--bg-base);
    border-top: 4px solid var(--secondary); /* Elegant gold top border style */
    padding: 40px 30px;
    border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background-color: var(--bg-card);
}

.value-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 14px;
}

.value-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Contact / Send Us a Message (Bottom Area) */
.about-contact {
    padding: 100px 0;
    background-color: var(--primary-xlight);
}

.about-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: stretch;
}

.contact-brand-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-brand-box h3 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-brand-box h3 span {
    color: var(--secondary);
    display: block;
}

.contact-brand-box p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 480px;
}

.contact-brand-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-brand-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-brand-item i {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-top: 3px;
}

.contact-brand-item div h5 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-brand-item div p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.about-contact-form-card {
    background-color: var(--bg-card);
    padding: 50px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.about-contact-form-card h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 30px;
}

/* Bottom border only inputs styled like avedaayur.com */
.about-form-group {
    margin-bottom: 24px;
}

.about-form-control {
    width: 100%;
    padding: 12px 6px;
    border: none;
    border-bottom: 2px solid #a4b6b2;
    font-size: 0.95rem;
    color: var(--text-main);
    background-color: transparent;
    transition: var(--transition-fast);
}

.about-form-control:focus {
    border-bottom-color: var(--secondary); /* changes to gold on focus */
}

.about-form-control::placeholder {
    color: #a4b6b2;
}

textarea.about-form-control {
    min-height: 100px;
    resize: none;
}

/* Responsive Overrides for About Us */
@media screen and (max-width: 991px) {
    .inner-hero {
        padding: 140px 0 60px;
    }
    
    .inner-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mv-row, .mv-row.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .mv-text-box, .mv-img-box {
        width: 100%;
        flex: none;
    }
    
    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .about-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-contact-form-card {
        padding: 30px 20px;
    }
}

/* 15. CAPSULES CATEGORY PAGE STYLES */
.capsules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.capsules-grid .product-slide {
    flex: none; /* overrides carousel slide behavior */
    display: flex;
    flex-direction: column;
}

.capsules-grid .product-slide .product-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#capsules-search-bar:focus {
    border-color: var(--secondary) !important;
    box-shadow: 0 0 0 3px rgba(138, 111, 56, 0.15) !important;
}

.filter-tag {
    background-color: var(--primary-xlight);
    color: var(--primary);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition-fast);
}

.filter-tag:hover {
    background-color: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

.filter-tag.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Responsive overrides for Capsules Grid */
@media screen and (max-width: 991px) {
    .capsules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .capsules-grid {
        grid-template-columns: 1fr;
    }
}

/* Sticky OEM Specifications on Desktop */
@media screen and (min-width: 993px) {
    .oem-specs-sticky {
        position: sticky;
        top: 120px;
        align-self: start;
        z-index: 10;
    }
}

/* intl-tel-input layout overrides */
.iti {
    width: 100%;
    display: block;
}
.iti__country-list {
    background-color: var(--bg-card) !important;
    color: var(--text-main) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-md);
    font-family: var(--font-body);
}
.iti__country {
    padding: 10px 14px !important;
    outline: none;
}
.iti__country:hover, .iti__country.iti__highlight {
    background-color: var(--primary-xlight) !important;
    color: var(--primary) !important;
}
.iti__flag {
    border-radius: 2px;
}

