/* ============================================================
   SIAM AGRO EXPORT - Main Stylesheet
   Thailand Agricultural & Commodity Export Website
   ============================================================
   TABLE OF CONTENTS:
   1. CSS Custom Properties (Design Tokens)
   2. Reset & Base
   3. Typography
   4. Layout & Grid
   5. Top Contact Bar
   6. Header & Navigation
   7. Hero Section
   8. Cards & Featured Categories
   9. Why Choose Us
   10. Export Markets
   11. Certifications & Trust Badges
   12. CTA Banners
   13. Product Tables & Specs
   14. FAQ Accordion
   15. Blog Styles
   16. Contact Form
   17. Footer
   18. WhatsApp Floating Button
   19. Sticky Request Quote
   20. Breadcrumb
   21. Page Header (Inner Pages)
   22. About Page Specific
   23. Product Enquiry Form (Inline)
   24. Utility Classes
   25. Responsive Breakpoints
   26. Print Styles
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
    /* Primary Colors */
    --green: #1B5E20;
    --green-dark: #144218;
    --green-light: #2E7D32;
    --green-bright: #43A047;
    --green-pale: #E8F5E9;

    /* Gold / Commodity */
    --gold: #C8963E;
    --gold-dark: #A67C2E;
    --gold-light: #D4A84B;
    --gold-pale: #FFF8E1;

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F5F5F0;
    --gray-50: #FAFAFA;
    --gray-100: #F0F0EC;
    --gray-200: #E0E0D8;
    --gray-300: #BDBDB5;
    --gray-400: #9E9E96;
    --gray-500: #757575;
    --gray-600: #616161;
    --gray-700: #424242;
    --dark: #1A1A1A;
    --text: #333333;
    --text-light: #666666;

    /* Semantic */
    --success: #2E7D32;
    --warning: #F9A825;
    --danger: #C62828;
    --info: #1565C0;

    /* Typography */
    --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Layout */
    --container-max: 1200px;
    --container-padding: 1.5rem;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    --box-shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --transition: 0.3s ease;

    /* Header */
    --header-height: 140px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-system);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--green);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--green-dark);
}

ul, ol {
    list-style: none;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--space-md);
    color: var(--text);
}

.text-green { color: var(--green); }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-right { text-align: right; }

.section-title {
    text-align: center;
    margin-bottom: 0;
    font-size: 2rem;
    position: relative;
    padding-bottom: var(--space-md);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: var(--space-sm) auto var(--space-xl);
    font-size: 1rem;
}

/* ============================================================
   4. LAYOUT & GRID
   ============================================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container--narrow {
    max-width: 900px;
}

.container--wide {
    max-width: 1400px;
}

section {
    padding: var(--space-xl) 0;
}

.section--green {
    background: var(--green);
    color: var(--white);
}

.section--green h2,
.section--green h3,
.section--green p {
    color: var(--white);
}

.section--green .section-title::after {
    background: var(--gold);
}

.section--gold {
    background: var(--gold-pale);
}

.section--gray {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
}

/* ============================================================
   5. TOP CONTACT BAR
   ============================================================ */
.top-bar {
    background: linear-gradient(135deg, #0B5D3B 0%, #145228 100%);
    color: #FFD700;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 0;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.top-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    letter-spacing: 0.02em;
}

.top-bar-item a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    padding: 2px 4px;
    border-radius: 4px;
}

.top-bar-item a:hover {
    color: var(--white);
    background: rgba(255, 215, 0, 0.1);
    text-decoration: none;
}

@media (max-width: 768px) {
    .top-bar-inner {
        gap: var(--space-md);
        font-size: 0.8rem;
        justify-content: space-around;
    }
    .top-bar {
        padding: 10px 0;
    }
}

/* Tablet Responsive Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .logo-img {
        height: 80px;
        max-height: 90px;
    }

    .site-header.scrolled .logo-img {
        height: 60px;
        max-height: 70px;
    }

    .nav-list a {
        font-size: 0.8rem;
        padding: var(--space-sm) var(--space-sm);
    }

    .header-whatsapp {
        font-size: 0.8rem;
        padding: var(--space-xs) var(--space-md);
    }
}

/* ============================================================
   6. HEADER & NAVIGATION
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 2px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    padding: 20px 0;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    padding: 12px 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-bottom-color: rgba(0,0,0,0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo a:hover {
    opacity: 0.9;
}

.logo-img {
    height: 100px;
    width: auto;
    max-height: 110px;
    object-fit: contain;
    border-radius: var(--border-radius);
    flex-shrink: 0;
    transition: height 0.3s ease, max-height 0.3s ease, transform 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12));
}

.site-header.scrolled .logo-img {
    height: 70px;
    max-height: 80px;
}

.logo a:hover .logo-img {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .logo-title {
    display: block;
    line-height: 1.2;
    margin-bottom: 5px;
}

.logo-text .logo-subtitle {
    display: block;
    font-family: var(--font-system);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-dark);
    letter-spacing: 0.04em;
    line-height: 1.4;
    text-transform: none;
    max-width: 280px;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: var(--space-sm);
}

.nav-list > li {
    position: relative;
}

.nav-list a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    color: var(--text);
    font-weight: 500;
    font-size: 0.85rem;
    border-radius: var(--border-radius);
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--green);
    background: var(--green-pale);
}

/* ============================================================
   MEGA MENU - Two-Column Dropdown (Desktop)
   Left column = categories, Right column = products on hover
   ============================================================ */

/* Arrow indicator on Products nav link */
.has-dropdown > a::after {
    content: ' \25BC';
    font-size: 0.6rem;
    vertical-align: middle;
    margin-left: 2px;
}

/* The mega menu panel */
.dropdown {
    /* Positioning */
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    z-index: 1000;

    /* Layout */
    display: flex;
    flex-direction: column;
    width: 540px;
    min-height: 280px;
    padding: 0;

    /* Visual */
    background: #fff;
    box-shadow: 0 12px 48px rgba(0,0,0,0.18);
    border-radius: 10px;
    border: 1px solid #e8e8e8;

    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;

    /* Reset list styles */
    list-style: none;
    margin: 0;
}

/* Hover bridge: invisible area between nav link and dropdown to keep hover alive */
.has-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 15px;
    z-index: 999;
    display: none;
}

.has-dropdown:hover::before {
    display: block;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* All links inside dropdown */
.dropdown a {
    font-size: 0.88rem;
    border-radius: 0;
}

/* ---- LEFT COLUMN: Category items ---- */
.dropdown .has-submenu {
    position: static;          /* Keep as stacking context parent but let submenu position to .dropdown */
    width: 210px;
    flex-shrink: 0;
    list-style: none;
}

.dropdown .has-submenu > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: #1a472a;
    padding: 13px 18px;
    border-bottom: 1px solid #f0f0f0;
    border-right: 2px solid transparent;
    transition: all 0.15s ease;
    border-radius: 0;
    margin: 0;
    background: transparent;
    font-size: 0.88rem;
}

.dropdown .has-submenu:first-child > a {
    border-radius: 10px 0 0 0;
}

.dropdown .has-submenu:last-child > a {
    border-bottom: none;
    border-radius: 0 0 0 10px;
}

/* Arrow icon on each category */
.dropdown .has-submenu > a::after {
    content: '\25B6';          /* right-pointing triangle */
    font-size: 0.45rem;
    opacity: 0.35;
    transition: opacity 0.15s ease, transform 0.15s ease;
    flex-shrink: 0;
    margin-left: 8px;
}

/* Category hover */
.dropdown .has-submenu:hover > a {
    background: #e8f5e9;
    color: #1b5e20;
    border-right-color: #2e7d32;
}

.dropdown .has-submenu:hover > a::after {
    opacity: 1;
    transform: translateX(2px);
}

/* ---- RIGHT COLUMN: Product list (positioned overlay) ---- */
.dropdown .submenu {
    position: absolute;
    top: 0;
    left: 210px;
    right: 0;
    bottom: 0;
    background: #fff;
    min-width: 0;
    box-shadow: none;
    border-radius: 0 10px 10px 0;
    border-left: 2px solid #e0f2e1;
    padding: 8px 0;
    list-style: none;
    margin: 0;

    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1001;
    overflow-y: auto;
}

/* Show products when hovering a category */
.dropdown .has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Individual product links */
.dropdown .submenu li {
    list-style: none;
}

.dropdown .submenu a {
    display: block;
    padding: 9px 20px;
    font-size: 0.85rem;
    white-space: nowrap;
    font-weight: 400;
    color: #4a5568;
    border-radius: 0;
    transition: all 0.12s ease;
}

.dropdown .submenu a:hover {
    background: #e8f5e9;
    color: #1b5e20;
    padding-left: 26px;
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.header-whatsapp {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background var(--transition);
}

.header-whatsapp:hover {
    background: #1DA851;
    color: var(--white);
}

.whatsapp-icon {
    font-size: 1.1rem;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   7. HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0D3B0F 0%, #1B5E20 40%, #0D3B0F 100%);
    color: var(--white);
    overflow: hidden;
    padding: var(--space-4xl) 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1574323347407-f5e1ad6d020b?w=1600&q=80') center/cover no-repeat;
    opacity: 0.12;
    mix-blend-mode: overlay;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--white), transparent);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.hero-content {
    max-width: 100%;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    color: var(--white);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero h1 span {
    color: var(--gold-light);
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255,255,255,0.95);
    margin-bottom: var(--space-2xl);
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

/* Hero Product Cards (Right Side) */
.hero-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.hero-product-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition);
    text-align: center;
}

.hero-product-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.hero-product-card .product-emoji {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    display: block;
}

.hero-product-card h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: var(--space-xs);
    font-weight: 700;
}

.hero-product-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.hero-product-card .card-link {
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.hero-product-card .card-link:hover {
    color: var(--white);
}

/* ============================================
   PREMIUM HERO SLIDER
   ============================================ */

.hero-slider {
    position: relative;
    height: 90vh;
    min-height: 550px;
    max-height: 800px;
    overflow: hidden;
    background: #0a4f33;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slider-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 40, 25, 0.92) 0%, rgba(8, 50, 30, 0.82) 40%, rgba(12, 60, 35, 0.85) 100%);
    z-index: 1;
}

.slide-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(212, 168, 62, 0.08) 0%, transparent 60%);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: var(--space-4xl);
}

.slide-content h1 {
    font-size: clamp(2.5rem, 5.5vw, 3.75rem);
    color: var(--white);
    margin-bottom: var(--space-lg);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 40px rgba(0,0,0,0.4);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.slider-slide.active .slide-content h1 {
    opacity: 1;
    transform: translateY(0);
}

.slide-content h1 span {
    color: #FFD700;
}

.slide-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: var(--space-2xl);
    line-height: 1.6;
    font-weight: 400;
    max-width: 550px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
}

.slider-slide.active .slide-content p {
    opacity: 1;
    transform: translateY(0);
}

.slide-buttons {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.7s;
}

.slider-slide.active .slide-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.slider-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 80vh;
        min-height: 600px;
        max-height: none;
    }

    .slide-content {
        padding-top: var(--space-2xl);
        text-align: center;
    }

    .slide-content h1 {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .slide-content p {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .slide-buttons {
        flex-direction: column;
        justify-content: center;
    }

    .slide-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .btn-gold-premium,
    .btn-outline-premium {
        padding: 18px 35px;
        font-size: 1rem;
    }

    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .slider-prev {
        left: 16px;
    }

    .slider-next {
        right: 16px;
    }

    .slider-dots {
        bottom: 30px;
        gap: 10px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

.hero-premium {
    background: linear-gradient(135deg, #0a4f33 0%, #0B5D3B 30%, #145228 70%, #1a6b3a 100%);
    padding: var(--space-6xl) 0;
    min-height: 95vh;
    position: relative;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 160, 23, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.hero-layout-premium {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-5xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content-premium {
    max-width: 750px;
}

.hero-content-premium h1 {
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    color: var(--white);
    margin-bottom: var(--space-xl);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero-content-premium h1 .highlight {
    color: #FFD700;
    position: relative;
    display: inline;
}

.hero-subheadline {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: var(--space-3xl);
    line-height: 1.7;
    font-weight: 400;
    max-width: 600px;
}

.hero-buttons-premium {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.btn-gold-premium {
    background: linear-gradient(135deg, #D4A017 0%, #E5B229 100%);
    color: var(--white);
    padding: 20px 45px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.4);
    letter-spacing: 0.02em;
}

.btn-gold-premium:hover {
    background: linear-gradient(135deg, #C49515 0%, #D4A017 100%);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(212, 160, 23, 0.5);
}

.btn-outline-premium {
    background: transparent;
    color: var(--white);
    padding: 20px 45px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}

.btn-outline-premium:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 20px 45px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #20b859;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.45);
    color: var(--white);
}

/* Premium Product Showcase */
.hero-showcase-premium {
    position: relative;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    position: relative;
}

.showcase-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.showcase-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    color: var(--white);
    padding: var(--space-2xl) var(--space-md) var(--space-md);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    letter-spacing: 0.02em;
}

.showcase-featured {
    grid-column: span 2;
}

.showcase-featured img {
    height: 220px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-2xl);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200,150,62,0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--green);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}

.btn-outline:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--green);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-green {
    background: #0B5D3B;
    color: var(--white);
    border-color: #0B5D3B;
}

.btn-green:hover {
    background: #0a4f33;
    border-color: #0a4f33;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11,93,59,0.4);
}

.btn-sm {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.9rem;
}

.btn-lg {
    padding: var(--space-lg) var(--space-3xl);
    font-size: 1.1rem;
}

/* ============================================================
   8. CARDS & FEATURED CATEGORIES
   ============================================================ */
.category-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--box-shadow-lg);
    border-color: var(--green-light);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 2rem;
    transition: all var(--transition);
}

.category-card:hover .category-icon {
    background: var(--green);
    color: var(--white);
}

.category-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.2rem;
}

.category-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
}

.category-card .card-link {
    font-weight: 600;
    color: var(--green);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.category-card .card-link::after {
    content: '\2192';
    transition: transform var(--transition);
}

.category-card:hover .card-link::after {
    transform: translateX(4px);
}

/* Product Cards - Horizontal Layout (Image Left, Content Right) */
.product-card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    border-radius: 15px;
    background: #fff;
    box-shadow: var(--box-shadow);
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--box-shadow-lg);
    border-color: var(--green-light);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color: var(--green-dark);
}

.product-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-card .card-link,
.product-card .btn {
    font-weight: 600;
    color: var(--green);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.product-card .card-link::after {
    content: '\2192';
    transition: transform var(--transition);
}

.product-card:hover .card-link::after {
    transform: translateX(4px);
}

/* Product Card Image */
.product-image {
    width: 350px;
    min-width: 350px;
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

/* Product Card Content */
.product-content {
    flex: 1;
}

/* Product Cards List (vertical stack for category pages) */
.card-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card-list .product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Products grid override for horizontal cards */
.products-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ============================================================
   B2B PRODUCT CATALOG GRID (unused, kept for backward compat)
   ============================================================ */

.product-catalog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.product-catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: var(--green-light);
}

.catalog-card-image {
    display: block;
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--gray-100);
}

.catalog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-catalog-card:hover .catalog-card-image img {
    transform: scale(1.06);
}

.catalog-card-body {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.catalog-card-body h3 {
    font-size: 1.1rem;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.catalog-card-body h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.catalog-card-body h3 a:hover {
    color: var(--green-light);
}

.catalog-card-body > p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 0.75rem;
    flex-grow: 1;
}

.catalog-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.spec-badge {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    white-space: nowrap;
}

.catalog-card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.catalog-card-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.45rem 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 6px;
}

.catalog-card-actions .btn-outline {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
}

.catalog-card-actions .btn-outline:hover {
    background: var(--green);
    color: var(--white);
}

.catalog-card-actions .btn-gold {
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
}

.catalog-card-actions .btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

/* Product Card Responsive - Horizontal Layout */
@media (max-width: 768px) {
    .product-card {
        flex-direction: column;
    }

    .product-image {
        width: 100%;
        min-width: 100%;
    }

    .product-image img {
        height: 220px;
    }
}

@media (max-width: 600px) {
    .catalog-card-image {
        height: 180px;
    }
}

/* Featured Products Grid with Images */
.featured-products-section {
    padding: var(--space-2xl) 0;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.featured-product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.featured-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-lg);
    border-color: var(--green-light);
}

.featured-product-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--gray-100);
}

.featured-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.featured-product-card:hover .featured-product-image img {
    transform: scale(1.08);
}

.featured-product-content {
    padding: var(--space-xl);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.featured-product-content h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.3rem;
    color: var(--green-dark);
}

.featured-product-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.featured-product-content .btn {
    align-self: flex-start;
}

/* ============================================================
   9. WHY CHOOSE US
   ============================================================ */
.why-card {
    text-align: center;
    padding: var(--space-xl);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: var(--green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 1.8rem;
}

.why-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
}

.why-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Features Grid (Why Buy From Us cards) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.feature-card {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--gold);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    display: block;
}

.feature-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.15rem;
    color: var(--green-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================================
   10. EXPORT MARKETS
   ============================================================ */
.markets-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
}

.market-card {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
}

.market-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--box-shadow-lg);
    border-color: var(--green-light);
}

.market-flag {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    display: block;
}

.market-card h3 {
    margin-bottom: var(--space-md);
    font-size: 1.2rem;
    color: var(--green-dark);
}

.market-card ul {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.8;
}

.market-card ul li {
    padding: 3px 0;
}

.market-highlight {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
    border-color: var(--green);
}

.market-highlight h3 {
    color: var(--gold-light);
}

.market-highlight ul {
    color: rgba(255,255,255,0.95);
}

/* ============================================================
   11. CERTIFICATIONS & TRUST BADGES
   ============================================================ */
.certs-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.cert-badge {
    text-align: center;
    padding: var(--space-xl);
}

.cert-badge .cert-icon {
    width: 80px;
    height: 80px;
    background: var(--green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 2rem;
    font-weight: 700;
    color: var(--green);
}

.cert-badge h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.cert-badge p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.trust-strip {
    background: var(--green-dark);
    padding: var(--space-md) 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
}

.trust-item .check-icon {
    color: var(--gold);
    font-size: 1rem;
}

/* ============================================================
   12. CTA BANNERS
   ============================================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-dark) 100%);
    padding: var(--space-3xl) 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?w=1600&q=80') center/cover no-repeat;
    opacity: 0.08;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.cta-banner p {
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--space-xl);
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-inline {
    background: var(--gold-pale);
    border: 2px solid var(--gold-light);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    text-align: center;
    margin: var(--space-xl) 0;
}

.cta-inline h3 {
    margin-bottom: var(--space-sm);
}

.cta-inline p {
    margin-bottom: var(--space-lg);
}

/* ============================================================
   13. PRODUCT TABLES & SPECS
   ============================================================ */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-xl) 0;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.specs-table thead {
    background: var(--green);
    color: var(--white);
}

.specs-table th {
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.specs-table td {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.95rem;
}

.specs-table tbody tr:hover {
    background: var(--green-pale);
}

.specs-table tbody tr:last-child td {
    border-bottom: none;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.product-image-placeholder {
    background: var(--gray-100);
    border-radius: var(--border-radius-lg);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 3rem;
    overflow: hidden;
}

.product-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Packaging Options */
.packaging-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.packaging-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--transition);
}

.packaging-card:hover {
    border-color: var(--green-light);
    background: var(--green-pale);
}

.packaging-card .pack-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.packaging-card h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.packaging-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Container Info */
.container-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.container-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
}

.container-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--box-shadow-lg);
}

.container-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.container-card h3 {
    padding: var(--space-lg) var(--space-lg) 0;
    color: var(--green-dark);
    font-size: 1.15rem;
}

.container-card p {
    padding: var(--space-sm) var(--space-lg) var(--space-lg);
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.testimonial-card blockquote {
    font-style: italic;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-left: var(--space-lg);
    border-left: 3px solid var(--gold);
}

.testimonial-card cite {
    font-weight: 600;
    color: var(--green-dark);
    font-size: 0.9rem;
    font-style: normal;
}

/* ============================================================
   CONTACT CTA
   ============================================================ */
.contact-cta-section {
    background: linear-gradient(135deg, #0a4f33 0%, #0B5D3B 50%, #0a4f33 100%);
    padding: var(--space-2xl) 0;
    text-align: center;
    color: var(--white);
}

.contact-cta-section h2 {
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.contact-cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto var(--space-2xl);
}

.cta-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}


/* ============================================================
   14. FAQ ACCORDION
   ============================================================ */
.faq-section {
    margin: var(--space-2xl) 0;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    margin-bottom: var(--space-md);
    overflow: hidden;
    background: var(--white);
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: var(--green);
    box-shadow: 0 2px 8px rgba(11, 93, 59, 0.1);
}

.faq-question {
    width: 100%;
    background: var(--white);
    border: none;
    padding: var(--space-lg);
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition);
    color: var(--text);
    font-family: var(--font-system);
    position: relative;
}

.faq-question:hover {
    background: var(--gray-50);
    color: var(--green-dark);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 300;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: var(--space-md);
    display: inline-block;
    line-height: 1;
}

.faq-question.active {
    background: linear-gradient(135deg, #0B5D3B 0%, #145228 100%);
    color: var(--white);
}

.faq-question.active::after {
    content: '−';
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 var(--space-lg);
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
    opacity: 0;
    background: var(--white);
}

.faq-answer.active {
    max-height: 500px;
    padding: var(--space-md) var(--space-lg) var(--space-lg);
    opacity: 1;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: var(--space-md);
        font-size: 0.95rem;
        touch-action: manipulation;
    }
    
    .faq-question::after {
        font-size: 1.3rem;
    }
    
    .faq-answer {
        padding: 0 var(--space-md);
        font-size: 0.9rem;
    }
    
    .faq-answer.active {
        padding: var(--space-sm) var(--space-md) var(--space-md);
    }
    
    .faq-section {
        padding: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0 var(--space-sm);
    }
    
    .faq-answer.active {
        padding: var(--space-xs) var(--space-sm) var(--space-sm);
    }
}

/* Global Responsive - Features, Markets, Testimonials */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .markets-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-slider {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .feature-card {
        padding: var(--space-lg) var(--space-md);
    }
    
    .markets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-products-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .contact-cta-section h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: var(--space-xl) auto 0;
    }
    
    .markets-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    
    .market-card {
        padding: var(--space-md) var(--space-sm);
    }
    
    .market-flag {
        font-size: 2rem;
    }
    
    .market-card h3 {
        font-size: 0.9rem;
    }
}

/* ============================================================
   15. BLOG STYLES
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--box-shadow-lg);
}

.blog-card-image {
    aspect-ratio: 16/9;
    background: var(--gray-100);
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: var(--space-lg);
}

.blog-card-category {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green);
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.blog-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.blog-card-meta {
    font-size: 0.8rem;
    color: var(--gray-400);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-card .read-more {
    font-weight: 600;
    color: var(--green);
    font-size: 0.9rem;
}

/* Single Blog Post */
.blog-article {
    max-width: 800px;
    margin: 0 auto;
}

.blog-article-header {
    margin-bottom: var(--space-2xl);
}

.blog-article-meta {
    display: flex;
    gap: var(--space-lg);
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.blog-article h1 {
    margin-bottom: var(--space-lg);
}

.blog-article-featured-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-2xl);
    aspect-ratio: 21/9;
    background: var(--gray-100);
}

.blog-article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-article-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.blog-article-content h2 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
}

.blog-article-content h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.blog-article-content ul,
.blog-article-content ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-lg);
}

.blog-article-content ul {
    list-style: disc;
}

.blog-article-content ol {
    list-style: decimal;
}

.blog-article-content li {
    margin-bottom: var(--space-sm);
    color: var(--text);
}

.blog-article-content strong {
    color: var(--dark);
}

.blog-article-content blockquote {
    border-left: 4px solid var(--gold);
    background: var(--gold-pale);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-style: italic;
}

.blog-toc {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.blog-toc h3 {
    margin-bottom: var(--space-md);
    font-size: 1rem;
}

.blog-toc ol {
    padding-left: var(--space-lg);
}

.blog-toc ol li {
    margin-bottom: var(--space-sm);
}

.blog-toc a {
    color: var(--green);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

.sidebar-widget {
    background: var(--gray-50);
    border-radius: var(--border-radius);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.sidebar-widget h3 {
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
}

.sidebar-widget ul li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--gray-200);
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
}

/* ============================================================
   16. CONTACT PAGE LAYOUT
   ============================================================ */
.contact-section {
    padding: 60px 0 80px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* LEFT COLUMN: Contact Cards */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.contact-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #e8f5e9;
    border-radius: 10px;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.contact-card-icon.wa-card-icon {
    background: #e8f8ee;
}

.contact-card h4 {
    font-size: 0.82rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-card a,
.contact-card p {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a472a;
    text-decoration: none;
    margin: 0;
    line-height: 1.4;
}

.contact-card a:hover {
    color: #2e7d32;
    text-decoration: underline;
}

/* Contact Hours / Extra Info Blocks */
.contact-hours {
    background: #f9fafb;
    border-radius: 12px;
    padding: 20px 24px;
    border: 1px solid #f0f0f0;
}

.contact-hours h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a472a;
    margin-bottom: 8px;
}

.contact-hours p {
    font-size: 0.88rem;
    color: #4a5568;
    margin: 2px 0;
    line-height: 1.5;
}

/* RIGHT COLUMN: Form */
.contact-form-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 36px 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
}

.contact-form-wrapper h2 {
    font-size: 1.5rem;
    color: #1a472a;
    margin-bottom: 6px;
}

.form-description {
    font-size: 0.92rem;
    color: #6b7280;
    margin-bottom: 28px;
    line-height: 1.5;
}

/* Form Row - 2-column grid inside form */
.premium-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Mobile: stack to single column */
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-form-wrapper {
        padding: 24px 20px;
    }

    .premium-contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-section {
        padding: 32px 0 48px;
    }
}

/* ============================================================
   16b. CONTACT FORM (shared)
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
    color: var(--text);
}

.form-group .required::after {
    content: ' *';
    color: var(--danger);
}

.form-control {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-family: var(--font-system);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(27,94,32,0.1);
}

.form-control::placeholder {
    color: var(--gray-400);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23757575' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
}

.form-success {
    display: none;
    background: var(--green-pale);
    border: 1px solid var(--green-light);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    text-align: center;
    color: var(--green);
}

.form-success.show {
    display: block;
}

/* ============================================================
   PREMIUM INQUIRY FORM SECTION
   ============================================================ */

.inquiry-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

/* LEFT SIDE: Content */
.inquiry-content h2 {
    font-size: 2.5rem;
    color: var(--green-dark);
    margin-bottom: var(--space-lg);
    font-weight: 800;
    line-height: 1.2;
}

.inquiry-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin: var(--space-2xl) 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    color: var(--green-dark);
    font-size: 0.95rem;
}

.badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Inquiry Image */
.inquiry-image {
    margin-top: var(--space-2xl);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.inquiry-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition);
}

.inquiry-image:hover img {
    transform: scale(1.05);
}

/* RIGHT SIDE: Form Card */
.inquiry-form-wrapper {
    position: sticky;
    top: 100px;
}

.inquiry-form-card {
    background: var(--white);
    border-radius: 14px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--gray-200);
}

.premium-contact-form .form-group {
    margin-bottom: var(--space-lg);
}

.premium-contact-form .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
    color: var(--text);
}

.premium-contact-form .form-group label.required::after {
    content: ' *';
    color: var(--danger);
}

.premium-contact-form .form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: var(--font-system);
    color: var(--text);
    transition: all var(--transition);
    background: var(--white);
}

.premium-contact-form .form-control:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(27, 94, 32, 0.1);
}

.premium-contact-form .form-control::placeholder {
    color: var(--gray-400);
}

.premium-contact-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23757575' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.premium-contact-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Submit Button */
.form-submit-btn {
    width: 100%;
    height: 55px;
    background: linear-gradient(135deg, #D4A017 0%, #C49515 100%);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all var(--transition);
    margin-top: var(--space-lg);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, #C49515 0%, #B8890F 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4);
}

.form-submit-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Trust Text Below Button */
.form-trust-text {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-200);
}

.form-trust-text p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: var(--space-xs) 0;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.form-trust-text p::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Contact Info Cards */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--gray-50);
    border-radius: var(--border-radius);
    margin-bottom: var(--space-md);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--green);
}

.contact-info-card h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Map */
.contact-map {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-top: var(--space-xl);
    border: 1px solid var(--gray-200);
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

/* ============================================================
   17. FOOTER
   ============================================================ */
.site-footer {
    background: var(--dark);
    color: #D1D5DB;
    padding: var(--space-3xl) 0 0;
}

/* Footer layout using flex for compatibility */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Footer sections - headings */
.footer-about h3,
.footer-about h4,
.footer-links h3,
.footer-links h4,
.footer-contact h3,
.footer-contact h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Footer about section - description text */
.footer-about p {
    color: #D1D5DB;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Footer links */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #D1D5DB;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links ul li a:hover {
    color: var(--gold-light);
}

/* Footer contact section */
.footer-contact p {
    color: #D1D5DB;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-contact a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--gold-light);
}

/* SVG icons in footer */
.footer-contact svg,
.footer-about svg {
    stroke: #9CA3AF;
    vertical-align: middle;
    margin-right: 6px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: var(--space-2xl);
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: var(--space-lg);
    font-size: 1.1rem;
}

.footer-col p {
    color: #D1D5DB;
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.footer-col ul li {
    margin-bottom: var(--space-sm);
}

.footer-col ul li a {
    color: #D1D5DB;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold-light);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
}

.footer-contact-item .fc-icon {
    flex-shrink: 0;
    color: var(--gold);
}

.footer-contact-item a {
    color: inherit;
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* Footer text links (minified pages) */
.footer-col p a {
    color: var(--gray-300);
    text-decoration: none;
}

.footer-col p a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.footer-bottom {
    margin-top: var(--space-2xl);
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: 0.875rem;
    color: #9CA3AF;
}

.footer-bottom p,
.footer-bottom a,
.footer-bottom span {
    color: #9CA3AF;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
    transition: color var(--transition);
}

.footer-social a:hover {
    color: var(--gold-light);
}

/* ============================================================
   18. WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}

/* Official WhatsApp SVG logo */
.whatsapp-float .wa-logo {
    display: block;
    width: 28px;
    height: 28px;
    fill: #fff;
    position: relative;
    z-index: 2;
}

/* Pulse ring animation */
.whatsapp-float .wa-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: wa-pulse-ring 2s ease-out infinite;
    z-index: 1;
}

@keyframes wa-pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    80%, 100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* WhatsApp Popup */
.whatsapp-popup {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 998;
    background: var(--white);
    color: var(--text);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    font-size: 0.9rem;
    max-width: 260px;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    cursor: default;
}

.whatsapp-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wa-popup-text {
    flex: 1;
    line-height: 1.4;
}

.wa-popup-close {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--gray-400);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.wa-popup-close:hover {
    color: var(--text);
}

@media (max-width: 480px) {
    .whatsapp-popup {
        bottom: 95px;
        right: 12px;
        max-width: 220px;
        font-size: 0.82rem;
    }
}

/* ============================================================
   BUYER ASSISTANT CHATBOT (LEFT SIDE)
   ============================================================ */

.buyer-assistant-toggle {
    position: fixed;
    right: 24px;
    bottom: 85px;
    left: auto;
    top: auto;
    z-index: 997;
    background: linear-gradient(135deg, #0B5D3B 0%, #145228 100%);
    color: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50px;
    padding: 14px 20px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(11, 93, 59, 0.4);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: ba-pulse 3s ease-in-out infinite;
}

.buyer-assistant-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(11, 93, 59, 0.5);
}

.ba-icon {
    font-size: 1.4rem;
}

@keyframes ba-pulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(11, 93, 59, 0.4); }
    50% { box-shadow: 0 6px 30px rgba(212, 160, 23, 0.6); }
}

/* Chat Window */
.buyer-assistant-window {
    position: fixed;
    right: 24px;
    bottom: 140px;
    left: auto;
    top: auto;
    transform: none;
    width: 420px;
    max-width: calc(100vw - 48px);
    height: 620px;
    max-height: calc(100vh - 120px);
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    z-index: 998;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.buyer-assistant-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

/* Header */
.ba-header {
    background: linear-gradient(135deg, #0B5D3B 0%, #145228 100%);
    color: var(--white);
    padding: var(--space-lg);
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ba-header-info {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.ba-avatar {
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.ba-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.ba-status {
    margin: 4px 0 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 6px;
}

.ba-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    display: inline-block;
    animation: ba-status-pulse 2s ease-in-out infinite;
}

@keyframes ba-status-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.ba-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: transform 0.2s ease;
}

.ba-close:hover {
    transform: rotate(90deg);
}

/* Messages Area */
.ba-messages {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-lg);
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.ba-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    animation: ba-message-slide 0.3s ease;
}

@keyframes ba-message-slide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ba-message.bot {
    background: var(--white);
    color: var(--text);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.ba-message.user {
    background: linear-gradient(135deg, #0B5D3B 0%, #145228 100%);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.ba-message strong {
    color: var(--green-dark);
}

.ba-message.user strong {
    color: var(--white);
}

/* Quick Replies */
.ba-quick-replies {
    padding: var(--space-md) var(--space-lg);
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ba-quick-reply {
    background: var(--white);
    border: 2px solid var(--green);
    color: var(--green-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.ba-quick-reply:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 93, 59, 0.3);
}

/* Input Area */
.ba-input-area {
    padding: var(--space-md) var(--space-lg);
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    display: flex;
    gap: var(--space-sm);
    border-radius: 0 0 16px 16px;
}

.ba-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--gray-300);
    border-radius: 24px;
    font-size: 0.95rem;
    font-family: var(--font-system);
    transition: border-color var(--transition);
}

.ba-input:focus {
    outline: none;
    border-color: var(--green);
}

.ba-send {
    background: linear-gradient(135deg, #0B5D3B 0%, #145228 100%);
    color: var(--white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.ba-send:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(11, 93, 59, 0.4);
}

.ba-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: scale(1);
}

/* Typing Indicator */
.ba-typing {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: 12px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.ba-typing-dot {
    width: 8px;
    height: 8px;
    background: var(--gray-400);
    border-radius: 50%;
    animation: ba-typing-bounce 1.4s ease-in-out infinite;
}

.ba-typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.ba-typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes ba-typing-bounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-8px); }
}

/* CTA Button in Chat */
.ba-btn {
    display: inline-block;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
    transition: all var(--transition);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    margin-top: 8px;
}

.ba-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .buyer-assistant-toggle {
        right: 16px;
        left: auto;
        bottom: 180px;
        top: auto;
        transform: none;
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .buyer-assistant-toggle:hover {
        transform: scale(1.05);
    }

    .buyer-assistant-window {
        left: 16px;
        right: 16px;
        top: auto;
        bottom: 160px;
        transform: none;
        width: calc(100% - 32px);
        height: 70vh;
        max-height: none;
    }

    .buyer-assistant-window.active {
        transform: none;
    }
}

@media (max-width: 480px) {
    .buyer-assistant-toggle {
        right: 12px;
        left: auto;
        bottom: 170px;
        padding: 10px 14px;
        font-size: 0.8rem;
    }

    .ba-header h3 {
        font-size: 1rem;
    }

    .ba-message {
        font-size: 0.9rem;
        max-width: 90%;
    }
}

/* ============================================================
   19. STICKY REQUEST QUOTE
   ============================================================ */
.sticky-quote {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 998;
    background: var(--gold);
    color: var(--dark);
    padding: var(--space-md) var(--space-2xl);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(200,150,62,0.5);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    animation: pulse 2s infinite;
}

.sticky-quote:hover {
    background: var(--gold-dark);
    color: var(--dark);
    transform: translateX(-50%) translateY(-2px);
    animation: none;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(200,150,62,0.5); }
    50% { box-shadow: 0 4px 30px rgba(200,150,62,0.8); }
}

/* ============================================================
   20. BREADCRUMB
   ============================================================ */
.breadcrumb {
    background: var(--gray-50);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.85rem;
}

.breadcrumb ol {
    display: flex;
    gap: var(--space-sm);
    list-style: none;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: var(--space-sm);
    color: var(--gray-400);
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb li:last-child {
    color: var(--green);
    font-weight: 600;
}

/* ============================================================
   21. PAGE HEADER (Inner Pages)
   ============================================================ */
.page-header {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: var(--white);
    padding: var(--space-3xl) 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.page-header p {
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ============================================================
   22. ABOUT PAGE SPECIFIC
   ============================================================ */
.about-story {
    padding: var(--space-3xl) 0;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.value-card {
    text-align: center;
    padding: var(--space-xl);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.mission-statement {
    background: var(--green);
    color: var(--white);
    padding: var(--space-3xl);
    border-radius: var(--border-radius-lg);
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: var(--space-2xl) 0;
}

.mission-statement p {
    color: var(--white);
    font-style: italic;
}

/* ============================================================
   23. PRODUCT ENQUIRY FORM (Inline)
   ============================================================ */
.enquiry-form {
    background: var(--gray-50);
    border: 2px solid var(--gold-light);
    border-radius: var(--border-radius-lg);
    padding: var(--space-2xl);
    margin: var(--space-2xl) 0;
}

.enquiry-form h3 {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.enquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

/* ============================================================
   24. UTILITY CLASSES
   ============================================================ */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }
.py-1 { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.py-2 { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }
.py-3 { padding-top: var(--space-3xl); padding-bottom: var(--space-3xl); }

.bg-green { background: var(--green); }
.bg-gold { background: var(--gold-pale); }
.bg-gray { background: var(--gray-50); }

.rounded { border-radius: var(--border-radius); }
.rounded-lg { border-radius: var(--border-radius-lg); }

.shadow { box-shadow: var(--box-shadow); }
.shadow-lg { box-shadow: var(--box-shadow-lg); }

.hidden { display: none; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ============================================================
   25. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Large tablets & small desktops */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-5 { grid-template-columns: repeat(3, 1fr); }
    .market-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .product-detail-grid { grid-template-columns: 1fr; }
    .packaging-options { grid-template-columns: repeat(2, 1fr); }
    .about-values { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
}

/* Tablets */
@media (max-width: 768px) {
    :root {
        --header-height: 76px;
        --container-padding: 1rem;
    }

    section {
        padding: var(--space-2xl) 0;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5 {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .market-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .packaging-options { grid-template-columns: 1fr; }
    .container-info { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .enquiry-form .form-row { grid-template-columns: 1fr; }

    /* Mobile FAQ Improvements */
    .faq-question {
        padding: var(--space-md);
        font-size: 0.95rem;
        min-height: 50px; /* Better touch target */
    }

    .faq-answer {
        padding: 0 var(--space-md);
        font-size: 0.9rem;
    }

    .faq-answer.active {
        padding: 0 var(--space-md) var(--space-md);
    }

    .faq-question::after {
        font-size: 1.3rem;
    }

    /* Mobile Nav */
    .mobile-toggle {
        display: flex;
        order: 2;
        padding: 8px;
    }

    .site-header {
        padding: 12px 0;
        min-height: auto;
    }

    .site-header.scrolled {
        padding: 8px 0;
    }

    .header-inner {
        position: relative;
    }

    .logo {
        order: 1;
        flex: 1;
    }

    .logo a {
        font-size: 0;
        flex-direction: row;
        align-items: center;
    }

    .logo-img {
        height: 50px;
        max-height: 55px;
        filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
    }

    .site-header.scrolled .logo-img {
        height: 42px;
        max-height: 48px;
    }

    /* Dark overlay when mobile menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 997;
        opacity: 1;
        transition: opacity 0.3s ease;
        pointer-events: auto;
    }

    .logo-text {
        display: none;
    }

    /* Mobile Navigation Menu */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px var(--space-xl) var(--space-xl);
        transform: translateX(100%);
        transition: transform var(--transition);
        overflow-y: auto;
        z-index: 998;
        box-shadow: -5px 0 30px rgba(0,0,0,0.2);
    }

    .main-nav::before {
        content: '✕';
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: var(--dark);
        background: var(--gray-100);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .main-nav::before:hover {
        background: var(--green-pale);
        color: var(--green);
        transform: rotate(90deg);
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-list li {
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-list a {
        padding: var(--space-md) var(--space-sm);
        font-size: 1.15rem;
        font-weight: 500;
        border-radius: 0;
    }

    .nav-list a:hover,
    .nav-list a.active {
        background: var(--green-pale);
        padding-left: var(--space-md);
    }

    /* Mobile Dropdown */
    .has-dropdown::before {
        display: none !important;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 var(--space-xl);
        display: none;
        background: var(--gray-50);
        border-radius: 0;
        width: auto;
        min-height: 0;
        flex-direction: column;
    }

    .dropdown.open {
        display: block;
    }

    .dropdown a {
        font-size: 1rem;
        padding: var(--space-sm) var(--space-sm);
    }

    .has-dropdown > a::after {
        float: right;
        transition: transform 0.3s ease;
    }

    .has-dropdown.open > a::after {
        transform: rotate(180deg);
    }

    /* Mobile Nested Submenu */
    .dropdown .has-submenu {
        position: static;
        width: auto;
    }

    .dropdown .has-submenu > a {
        border-bottom: none;
        border-radius: 0;
        font-size: 1rem;
        padding: var(--space-sm) var(--space-sm);
    }

    .dropdown .has-submenu > a::after {
        float: right;
        transition: transform 0.3s ease;
        opacity: 0.5;
    }

    .dropdown .has-submenu.open > a {
        background: #e8f5e9;
    }

    .dropdown .has-submenu.open > a::after {
        transform: rotate(90deg);
        opacity: 1;
    }

    .dropdown .submenu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        border-left: none;
        padding: 0 0 0 var(--space-md);
        display: none;
        background: var(--gray-100, #f3f4f6);
        border-radius: 0;
        min-width: 0;
        min-height: 0;
        overflow-y: visible;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        pointer-events: auto !important;
    }

    .dropdown .submenu.open {
        display: block;
    }

    /* Kill ALL desktop hover behaviors on mobile */
    .dropdown .has-submenu:hover > .submenu {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        /* display is controlled by .open class only */
    }

    .dropdown .has-submenu:hover > a {
        background: transparent;
        border-right-color: transparent;
    }

    .dropdown .has-submenu:hover > a::after {
        transform: none;
        opacity: 0.5;
    }

    .dropdown .submenu a {
        font-size: 0.95rem;
        padding: var(--space-xs) var(--space-sm);
        white-space: normal;
        border-radius: 0;
    }

    .dropdown .submenu a:hover {
        padding-left: var(--space-sm);
    }

    /* Mobile CTA */
    .header-cta {
        display: none;
    }

    .header-cta-mobile {
        display: flex;
        flex-direction: column;
        gap: var(--space-md);
        margin-top: var(--space-2xl);
        padding-top: var(--space-xl);
        border-top: 2px solid var(--gray-100);
    }

    .header-cta-mobile .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 1rem;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: var(--space-3xl) 0;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero-buttons {
        flex-direction: column;
        justify-content: center;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-products {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .hero-product-card {
        padding: var(--space-md);
    }

    .hero-product-card .product-emoji {
        font-size: 2rem;
    }

    /* Premium Hero Mobile */
    .hero-premium {
        padding: var(--space-4xl) 0;
        min-height: auto;
    }

    .hero-layout-premium {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .hero-content-premium {
        text-align: center;
        max-width: 100%;
    }

    .hero-content-premium h1 {
        font-size: clamp(2rem, 7vw, 2.75rem);
    }

    .hero-subheadline {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .hero-buttons-premium {
        flex-direction: column;
        justify-content: center;
    }

    .hero-buttons-premium .btn {
        width: 100%;
        justify-content: center;
    }

    .btn-gold-premium,
    .btn-outline-premium {
        padding: 18px 35px;
        font-size: 1rem;
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .showcase-item img {
        height: 140px;
    }

    .showcase-featured {
        grid-column: span 2;
    }

    .showcase-featured img {
        height: 180px;
    }

    .showcase-label {
        font-size: 0.9rem;
        padding: var(--space-xl) var(--space-sm) var(--space-sm);
    }

    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .featured-product-image {
        height: 200px;
    }

    .featured-product-content {
        padding: var(--space-md);
    }

    .featured-product-content h3 {
        font-size: 1.1rem;
    }

    .featured-product-content p {
        font-size: 0.9rem;
    }

    /* Inquiry Form Tablet */
    .inquiry-layout {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .inquiry-content h2 {
        font-size: 2rem;
    }

    .trust-badges {
        grid-template-columns: 1fr 1fr;
    }

    .inquiry-form-wrapper {
        position: static;
    }

    .inquiry-form-card {
        padding: 28px;
    }

    /* CTA */
    .sticky-quote {
        left: 16px;
        right: 16px;
        transform: none;
        justify-content: center;
    }

    .sticky-quote:hover {
        transform: translateY(-2px);
    }

    .whatsapp-float {
        bottom: 80px;
    }

    /* Footer Bottom */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Small phones */
@media (max-width: 480px) {
    :root {
        --container-padding: 0.75rem;
    }

    /* Mobile Header Optimization */
    .site-header {
        padding: 10px 0;
    }

    .logo-img {
        height: 45px;
        max-height: 50px;
    }

    .site-header.scrolled .logo-img {
        height: 38px;
        max-height: 42px;
    }

    .mobile-toggle {
        padding: 6px;
    }

    .mobile-toggle span {
        width: 22px;
        height: 2px;
    }

    /* Mobile Menu */
    .main-nav {
        padding: 70px var(--space-lg) var(--space-lg);
    }

    .main-nav::before {
        width: 36px;
        height: 36px;
        top: 16px;
        right: 16px;
        font-size: 1.3rem;
    }

    .nav-list a {
        font-size: 1.05rem;
        padding: var(--space-sm) var(--space-xs);
    }

    .hero {
        min-height: 60vh;
    }

    .btn-lg {
        padding: var(--space-md) var(--space-xl);
        font-size: 1rem;
    }

    .specs-table {
        font-size: 0.8rem;
    }

    .specs-table th,
    .specs-table td {
        padding: var(--space-sm);
    }

    .featured-products-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .featured-product-image {
        height: 220px;
    }

    /* Inquiry Form Mobile */
    .inquiry-content h2 {
        font-size: 1.75rem;
    }

    .inquiry-description {
        font-size: 1rem;
    }

    .trust-badges {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .inquiry-image {
        margin-top: var(--space-xl);
    }

    .inquiry-image img {
        height: 220px;
    }

    .inquiry-form-card {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .premium-contact-form .form-control {
        padding: 12px 14px;
        font-size: 1rem; /* Larger for mobile tap */
    }

    .form-submit-btn {
        height: 52px;
        font-size: 1.05rem;
    }

    .form-trust-text p {
        font-size: 0.8rem;
    }
}

/* ============================================================
   27. COMPANY INTRODUCTION SECTION
   ============================================================ */
.company-intro-section {
    padding: 80px 0;
    background: #fff;
}

.company-intro-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.company-intro-content p {
    margin-bottom: 1.25rem;
}

.company-intro-content p:last-child {
    margin-bottom: 0;
}

/* ============================================================
   28. OUR OPERATIONS SECTION
   ============================================================ */
.operations-section {
    padding: 80px 0;
}

.operations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.operation-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.operation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.operation-image {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.operation-card h3 {
    font-size: 1rem;
    color: var(--green);
    margin: 16px 16px 8px;
}

.operation-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 0 16px 16px;
}

@media (max-width: 992px) {
    .operations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .operations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .operations-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   29. TRUST BADGES SECTION
   ============================================================ */
.trust-badges-section {
    padding: 80px 0;
    background: #fff;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.trust-badge-card {
    background: var(--green-pale);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease;
}

.trust-badge-card:hover {
    transform: translateY(-4px);
}

.trust-badge-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.trust-badge-card h3 {
    font-size: 1.1rem;
    color: var(--green);
    margin-bottom: 8px;
}

.trust-badge-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .trust-badge-card {
        padding: 24px 16px;
    }
}

@media (max-width: 480px) {
    .trust-badges-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   30. CONTACT INFO SECTION
   ============================================================ */
.contact-info-section {
    padding: 80px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.contact-info-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-card h3 {
    font-size: 1rem;
    color: var(--green);
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-info-card a {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-info-note {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   31. LOCATION / MAP SECTION
   ============================================================ */
.location-section {
    padding: 80px 0;
    background: #fff;
}

.map-placeholder {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.map-placeholder iframe {
    display: block;
}

/* ============================================================
   32. FEATURE ICON SVG STYLING
   ============================================================ */
.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--gold);
    stroke-width: 1.5;
}

/* ============================================================
   26. PRINT STYLES
   ============================================================ */
@media print {
    .site-header,
    .site-footer,
    .whatsapp-float,
    .sticky-quote,
    .cta-banner,
    .mobile-toggle {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}


