/* ============================================================
   Green Goold Herbs — Main Stylesheet
   ============================================================ */

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

/* --- CSS Variables --- */
:root {
    --primary: #1B5E20;
    --primary-light: #2E7D32;
    --primary-dark: #14451A;
    --gold: #C9A227;
    --gold-light: #D4B44A;
    --gold-dark: #A8841A;
    --bg: #FAF8F4;
    --bg-dark: #F2EDE4;
    --dark: #222222;
    --mid: #444444;
    --gray: #666666;
    --gray-light: #999999;
    --border: #E0D9CC;
    --white: #FFFFFF;
    --success: #2E7D32;
    --warning: #F59E0B;
    --error: #DC2626;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
    --shadow-gold: 0 8px 32px rgba(201,162,39,0.20);
    --shadow-green: 0 8px 32px rgba(27,94,32,0.20);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-full: 9999px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.18s ease;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', system-ui, sans-serif;
    --nav-height: 80px;
    --section-pad: 100px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark);
    background: var(--bg);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
    background: none;
}

input, textarea, select {
    font-family: var(--font-body);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--dark);
    font-weight: 700;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
    font-size: 1.2rem;
}

h5 {
    font-size: 1rem;
}

p {
    color: var(--gray);
    line-height: 1.75;
}

.text-primary {
    color: var(--primary);
}

.text-gold {
    color: var(--gold);
}

.text-white {
    color: var(--white);
}

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

.text-dark {
    color: var(--dark);
}

/* --- Container --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Section Padding --- */
.section-pad {
    padding: var(--section-pad) 0;
}

.section-pad-sm {
    padding: 64px 0;
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

    .section-label::before,
    .section-label::after {
        content: '';
        display: block;
        width: 28px;
        height: 1px;
        background: var(--gold);
    }

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.05rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

    .btn::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,0.15);
        opacity: 0;
        transition: opacity 0.25s;
    }

    .btn:hover::after {
        opacity: 1;
    }

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-green);
}

    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(27,94,32,0.30);
    }

.btn-gold {
    background: var(--gold);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

    .btn-gold:hover {
        background: var(--gold-dark);
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(201,162,39,0.35);
    }

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

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

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

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

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.82rem;
}

/* Ripple effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.ripple-wave {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    transform: scale(0);
    animation: ripple-anim 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-anim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* --- Top Bar --- */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.82rem;
    font-weight: 500;
}

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

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 24px;
}

    .top-bar-contact a {
        display: flex;
        align-items: center;
        gap: 6px;
        color: rgba(255,255,255,0.85);
        transition: var(--transition-fast);
    }

        .top-bar-contact a:hover {
            color: var(--gold);
        }

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .top-bar-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.2);
        color: rgba(255,255,255,0.8);
        transition: var(--transition-fast);
        font-size: 0.75rem;
    }

        .top-bar-social a:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--white);
            transform: translateY(-2px);
        }

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: var(--transition);
}

    .navbar.has-topbar {
        top: 42px;
    }

    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: var(--shadow-md);
    }

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    transition: var(--transition-fast);
}

.logo-tagline {
    font-size: 0.63rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.navbar.scrolled .logo-name {
    color: var(--primary);
}

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

.nav-link {
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--gold);
        border-radius: 2px;
        transition: width 0.25s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 60%;
    }

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

    .nav-link.active {
        color: var(--gold);
    }

.navbar.scrolled .nav-link {
    color: var(--mid);
}

    .navbar.scrolled .nav-link:hover {
        color: var(--primary);
    }

    .navbar.scrolled .nav-link.active {
        color: var(--primary);
    }

        .navbar.scrolled .nav-link.active::after,
        .navbar.scrolled .nav-link:hover::after {
            background: var(--primary);
        }

.nav-cta {
    margin-left: 8px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: var(--transition);
    }

.navbar.scrolled .hamburger span {
    background: var(--dark);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    z-index: 1100;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

    .mobile-menu.open {
        transform: translateX(0);
    }

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--primary);
}

.mobile-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

    .mobile-close:hover {
        background: rgba(255,255,255,0.15);
    }

.mobile-nav {
    padding: 16px 0;
    flex: 1;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    border-left: 3px solid transparent;
    transition: var(--transition-fast);
}

    .mobile-nav-link:hover, .mobile-nav-link.active {
        color: var(--primary);
        background: rgba(27,94,32,0.06);
        border-left-color: var(--primary);
    }

.mobile-nav-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
}

    .menu-overlay.open {
        opacity: 1;
        pointer-events: all;
    }

/* --- Page Hero (non-home pages) --- */
.page-hero {
    padding: 180px 0 90px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .page-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width=%2260%22 height=%2260%22 viewBox=%220 0 60 60%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cg fill=%22none%22 fill-rule=%22evenodd%22%3E%3Cg fill=%22%23ffffff%22 fill-opacity=%220.03%22%3E%3Cpath d=%22M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z%22/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

.page-hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(201,162,39,0.10);
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -80px;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: 10%;
}

.hero-shape-3 {
    width: 120px;
    height: 120px;
    top: 40%;
    right: 15%;
}

.page-hero-content {
    
    position: relative;
    z-index: 1;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 16px;
}

    .page-breadcrumb a {
        color: rgba(255,255,255,0.65);
        transition: var(--transition-fast);
    }

        .page-breadcrumb a:hover {
            color: var(--gold);
        }

    .page-breadcrumb span {
        color: var(--gold);
    }

.page-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 540px;
    margin: 0 auto;
}

/* ============================================================
   HOME PAGE — HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

    .hero-slide.active {
        opacity: 1;
    }

    .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transform: scale(1.08);
        transition: transform 8s ease;
    }

    .hero-slide.active img {
        transform: scale(1);
    }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(10, 38, 12, 0.82) 0%, rgba(27, 94, 32, 0.65) 50%, rgba(10, 38, 12, 0.55) 100% );
}

.hero-content {
    margin: auto;
    position: relative;
    z-index: 2;
    max-width: 740px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201,162,39,0.18);
    border: 1px solid rgba(201,162,39,0.40);
    border-radius: var(--radius-full);
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

    .hero-label .dot {
        width: 6px;
        height: 6px;
        background: var(--gold);
        border-radius: 50%;
        animation: pulse-dot 2s infinite;
    }

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

    .hero h1 em {
        font-style: italic;
        color: var(--gold);
    }

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.80);
    margin-bottom: 40px;
    max-width: 580px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: stretch;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stat-card {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 16px 22px;
    text-align: center;
    min-width: 120px;
    transition: var(--transition);
}

    .hero-stat-card:hover {
        background: rgba(255,255,255,0.16);
        transform: translateY(-4px);
    }

    .hero-stat-card .stat-icon {
        font-size: 1.4rem;
        margin-bottom: 4px;
    }

    .hero-stat-card .stat-value {
        display: block;
        font-family: var(--font-heading);
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--gold);
        line-height: 1;
        margin-bottom: 2px;
    }

    .hero-stat-card .stat-label {
        font-size: 0.72rem;
        font-weight: 500;
        color: rgba(255,255,255,0.75);
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.6);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

    .scroll-line::after {
        content: '';
        position: absolute;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gold);
        animation: scroll-drop 2s infinite;
    }

@keyframes scroll-drop {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

/* Hero slide dots */
.hero-dots {
    position: absolute;
    bottom: 36px;
    right: 40px;
    z-index: 3;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: var(--transition-fast);
}

    .hero-dot.active {
        background: var(--gold);
        width: 24px;
        border-radius: 4px;
    }

/* ============================================================
   TRUSTED BY SECTION
   ============================================================ */
.trusted-bar {
    background: var(--white);
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

.trusted-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    overflow: hidden;
}

.trusted-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-light);
    white-space: nowrap;
    flex-shrink: 0;
}

.trusted-track {
    display: flex;
    align-items: center;
    gap: 56px;
    animation: marquee 24s linear infinite;
}

    .trusted-track:hover {
        animation-play-state: paused;
    }

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.trusted-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-light);
    white-space: nowrap;
    transition: var(--transition-fast);
    filter: grayscale(1);
    opacity: 0.55;
}

    .trusted-logo:hover {
        opacity: 1;
        filter: grayscale(0);
        color: var(--primary);
    }

.trusted-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    background: var(--white);
}

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

.about-image-wrap {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-img-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--border);
}

    .about-img-badge .badge-icon {
        width: 52px;
        height: 52px;
        background: linear-gradient(135deg, var(--primary), var(--primary-light));
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    .about-img-badge .badge-text strong {
        display: block;
        font-family: var(--font-heading);
        font-size: 1.5rem;
        color: var(--dark);
        line-height: 1;
    }

    .about-img-badge .badge-text span {
        font-size: 0.75rem;
        color: var(--gray);
        font-weight: 500;
    }

.about-img-float {
    position: absolute;
    top: 32px;
    left: -24px;
    width: 130px;
    height: 130px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
}

    .about-img-float img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-content {
}

    .about-content .section-label {
        justify-content: flex-start;
    }

        .about-content .section-label::before {
            display: none;
        }

    .about-content h2 {
        margin-bottom: 24px;
    }

    .about-content p {
        margin-bottom: 18px;
    }

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}

.about-pillar {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

    .about-pillar .pillar-icon {
        width: 40px;
        height: 40px;
        background: rgba(27,94,32,0.10);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        flex-shrink: 0;
        color: var(--primary);
    }

    .about-pillar h4 {
        font-size: 0.88rem;
        color: var(--dark);
        margin-bottom: 2px;
    }

    .about-pillar p {
        font-size: 0.78rem;
        margin: 0;
    }

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories-section {
    background: var(--bg);
}

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

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

    .category-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

    .category-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .category-card:hover img {
        transform: scale(1.08);
    }

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,38,12,0.85) 0%, rgba(10,38,12,0.2) 60%, transparent 100%);
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(10,38,12,0.92) 0%, rgba(10,38,12,0.4) 60%, transparent 100%);
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
}

.category-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
    display: block;
}

.category-info h3 {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 4px;
}

.category-info span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
}

.category-card .cat-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
}

.category-card:hover .cat-arrow {
    opacity: 1;
    transform: scale(1);
}

/* ============================================================
   FEATURED PRODUCTS
   ============================================================ */
.products-section {
    background: var(--white);
}

.products-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 9px 22px;
    border-radius: var(--radius-full);
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--gray);
    background: var(--bg);
    border: 1px solid var(--border);
    transition: var(--transition-fast);
    cursor: pointer;
}

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

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

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.product-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

    .product-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.product-card:hover .product-card-img img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

    .product-badge.organic {
        background: var(--primary);
    }

.product-card-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}

.product-card:hover .product-card-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--dark);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    cursor: pointer;
}

    .product-action-btn:hover {
        background: var(--primary);
        color: var(--white);
    }

.product-card-body {
    padding: 20px;
}

.product-category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 6px;
    display: block;
}

.product-card-body h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.product-card-body p {
    font-size: 0.82rem;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.75rem;
    color: var(--gray-light);
    margin-bottom: 16px;
}

    .product-meta span {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .product-meta .icon {
        color: var(--primary);
    }

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.products-cta {
    text-align: center;
    margin-top: 52px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

    .why-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width=%2260%22 height=%2260%22 viewBox=%220 0 60 60%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cg fill=%22none%22%3E%3Cg fill=%22%23ffffff%22 fill-opacity=%220.03%22%3E%3Cpath d=%22M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z%22/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .why-section .section-header h2,
    .why-section .section-header p {
        color: var(--white);
    }

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

    .why-section .section-label {
        color: var(--gold);
    }

        .why-section .section-label::before,
        .why-section .section-label::after {
            background: var(--gold);
        }

.why-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

    .why-card:hover {
        background: rgba(255,255,255,0.12);
        transform: translateY(-6px);
        border-color: rgba(201,162,39,0.35);
    }

.why-icon {
    width: 72px;
    height: 72px;
    background: rgba(201,162,39,0.15);
    border: 2px solid rgba(201,162,39,0.30);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--gold);
    border-color: var(--gold);
}

.why-card h3 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.why-card p {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    margin: 0;
}

/* ============================================================
   EXPORT PROCESS TIMELINE
   ============================================================ */
.process-section {
    background: var(--bg);
}

.timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
    margin-top: 16px;
}

    .timeline::before {
        content: '';
        position: absolute;
        top: 36px;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--border);
    }

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 12px;
}

.timeline-step {
    width: 72px;
    height: 72px;
    background: var(--white);
    border: 3px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.timeline-item:hover .timeline-step,
.timeline-item.active .timeline-step {
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: var(--shadow-green);
    transform: scale(1.1);
}

.timeline-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    background: var(--gold);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-item h4 {
    font-size: 0.9rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark);
}

.timeline-item p {
    font-size: 0.78rem;
    margin: 0;
}

/* ============================================================
   STATISTICS
   ============================================================ */
.stats-section {
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    background: var(--bg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

    .stat-item:hover {
        background: var(--white);
        border-color: var(--primary);
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
    }

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-suffix {
    color: var(--gold);
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ============================================================
   CERTIFICATES
   ============================================================ */
.certs-section {
    background: var(--bg);
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.cert-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .cert-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), var(--gold));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s ease;
    }

    .cert-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
        border-color: transparent;
    }

        .cert-card:hover::before {
            transform: scaleX(1);
        }

.cert-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(27,94,32,0.10), rgba(201,162,39,0.10));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.cert-card h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--dark);
}

.cert-card p {
    font-size: 0.78rem;
    margin: 0;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    background: rgba(27,94,32,0.08);
    color: var(--primary);
    font-size: 0.68rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
    background: var(--white);
}

.gallery-grid {
    columns: 3;
    gap: 16px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

    .gallery-item img {
        width: 100%;
        display: block;
        transition: transform 0.5s ease;
    }

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,38,12,0.55);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.gallery-zoom {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transform: scale(0.7);
    transition: var(--transition);
}

.gallery-item:hover .gallery-zoom {
    transform: scale(1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.93);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

    .lightbox.open {
        opacity: 1;
        pointer-events: all;
    }

.lightbox-inner {
    position: relative;
    max-width: 1000px;
    width: 95%;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.lightbox.open .lightbox-inner {
    transform: scale(1);
}

.lightbox-inner img {
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid rgba(255,255,255,0.2);
}

    .lightbox-close:hover {
        background: rgba(255,255,255,0.2);
    }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-prev {
    left: -56px;
}

.lightbox-next {
    right: -56px;
}

    .lightbox-prev:hover, .lightbox-next:hover {
        background: rgba(255,255,255,0.2);
    }

/* ============================================================
   WORLD MAP SECTION
   ============================================================ */
.map-section {
    background: var(--bg);
}

.map-wrap {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.world-map-svg {
    width: 100%;
    fill: #dce8dc;
    stroke: var(--white);
    stroke-width: 0.5;
    display: block;
}

.export-pin {
    position: absolute;
    transform: translate(-50%, -100%);
}

.pin-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border: 2px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(27,94,32,0.4);
    animation: ping-pin 2s infinite;
}

@keyframes ping-pin {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(27,94,32,0.4);
    }

    50% {
        box-shadow: 0 2px 8px rgba(27,94,32,0.4), 0 0 0 6px rgba(27,94,32,0.15);
    }
}

.pin-label {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.export-pin:hover .pin-label {
    opacity: 1;
}

.map-legend {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 24px;
    background: var(--bg);
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.map-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--gray);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
    background: linear-gradient(135deg, #f5f0e8 0%, var(--bg) 100%);
    position: relative;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 4px;
}

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

    .testimonial-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
    }

.testimonial-quote {
    font-size: 2.5rem;
    color: var(--gold);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.6;
}

.testimonial-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
}

.author-info span {
    font-size: 0.75rem;
    color: var(--gray-light);
}

.stars {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.testi-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--dark);
}

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

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

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

    .testi-dot.active {
        background: var(--primary);
        width: 24px;
        border-radius: 4px;
    }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    position: relative;
    overflow: hidden;
    background-image: url('https://images.pexels.com/photos/5332494/pexels-photo-5332494.jpeg?auto=compress&cs=tinysrgb&h=650&w=940');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,38,12,0.90) 0%, rgba(27,94,32,0.80) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

    .cta-content h2 {
        color: var(--white);
        margin-bottom: 16px;
    }

    .cta-content p {
        color: rgba(255,255,255,0.75);
        margin-bottom: 36px;
        font-size: 1.05rem;
    }

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}

.contact-info h3 {
    margin-bottom: 16px;
}

.contact-info > p {
    margin-bottom: 32px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: var(--transition-fast);
}

    .contact-item:hover {
        border-color: var(--primary);
        box-shadow: var(--shadow-sm);
    }

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(27,94,32,0.10);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item-text strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.contact-item-text span, .contact-item-text a {
    font-size: 0.88rem;
    color: var(--gray);
}

    .contact-item-text a:hover {
        color: var(--primary);
    }

.contact-map {
    margin-top: 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 220px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    font-size: 0.85rem;
    position: relative;
}

    .contact-map img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.map-placeholder-text {
    position: absolute;
    background: rgba(255,255,255,0.9);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    color: var(--gray);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
}

    .contact-form-wrap h3 {
        margin-bottom: 24px;
    }

.form-group {
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 7px;
}

    .form-group label span {
        color: var(--error);
    }

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition-fast);
    outline: none;
}

    .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(27,94,32,0.10);
    }

    .form-control.error {
        border-color: var(--error);
    }

    .form-control::placeholder {
        color: var(--gray-light);
    }

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

select.form-control {
    cursor: pointer;
}

.form-error {
    display: none;
    font-size: 0.75rem;
    color: var(--error);
    margin-top: 4px;
}

.form-control.error + .form-error {
    display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.75);
}

.footer-main {
    padding: 80px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-brand {
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

    .footer-logo .logo-icon {
        background: rgba(201,162,39,0.20);
        border: 1px solid rgba(201,162,39,0.30);
    }

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.6);
}

.footer-social {
    display: flex;
    gap: 10px;
}

    .footer-social a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.65);
        font-size: 0.82rem;
        transition: var(--transition-fast);
    }

        .footer-social a:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--white);
            transform: translateY(-2px);
        }

.footer-col h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--font-body);
    position: relative;
    padding-bottom: 12px;
}

    .footer-col h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 28px;
        height: 2px;
        background: var(--gold);
        border-radius: 2px;
    }

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

    .footer-links a {
        font-size: 0.86rem;
        color: rgba(255,255,255,0.60);
        transition: var(--transition-fast);
        display: flex;
        align-items: center;
        gap: 6px;
    }

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

.newsletter-form {
    margin-top: 4px;
}

.newsletter-input-wrap {
    display: flex;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 10px;
}

    .newsletter-input-wrap input {
        flex: 1;
        padding: 12px 14px;
        background: rgba(255,255,255,0.07);
        border: none;
        color: var(--white);
        font-size: 0.84rem;
        outline: none;
        font-family: var(--font-body);
    }

        .newsletter-input-wrap input::placeholder {
            color: rgba(255,255,255,0.4);
        }

    .newsletter-input-wrap button {
        padding: 12px 16px;
        background: var(--gold);
        color: var(--white);
        font-size: 0.85rem;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition-fast);
        border: none;
        white-space: nowrap;
    }

        .newsletter-input-wrap button:hover {
            background: var(--gold-dark);
        }

.newsletter-note {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.40);
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

    .footer-contact-item .fc-icon {
        color: var(--gold);
        flex-shrink: 0;
        margin-top: 1px;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.10);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.40);
}

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

    .footer-bottom-links a {
        color: rgba(255,255,255,0.40);
        transition: var(--transition-fast);
    }

        .footer-bottom-links a:hover {
            color: var(--gold);
        }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-green);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 800;
    border: none;
    font-size: 1rem;
}

    .back-to-top.visible {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    .back-to-top:hover {
        background: var(--gold);
        transform: translateY(-4px);
    }

/* ============================================================
   PAGE LOADER
   ============================================================ */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--primary-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.6s, visibility 0.6s;
}

    .page-loader.hidden {
        opacity: 0;
        visibility: hidden;
    }

.loader-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 800;
    letter-spacing: 0.05em;
}

    .loader-logo span {
        color: var(--gold);
    }

.loader-bar {
    width: 160px;
    height: 2px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    animation: loader-fill 1.5s ease forwards;
}

@keyframes loader-fill {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/* ============================================================
   PRODUCT DETAILS PAGE
   ============================================================ */
.product-details-section {
    background: var(--white);
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.product-gallery-main {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 16px;
}

    .product-gallery-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

    .product-gallery-main:hover img {
        transform: scale(1.04);
    }

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.product-thumb {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

    .product-thumb.active {
        border-color: var(--primary);
    }

    .product-thumb:hover {
        border-color: var(--gold);
    }

    .product-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.product-info {
}

    .product-info .product-category {
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 8px;
        display: block;
    }

    .product-info h1 {
        font-size: clamp(1.8rem, 3vw, 2.4rem);
        margin-bottom: 8px;
    }

.product-botanical {
    font-style: italic;
    color: var(--gray-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

    .product-rating .stars {
        font-size: 0.9rem;
    }

    .product-rating span {
        font-size: 0.8rem;
        color: var(--gray-light);
    }

.product-info > p {
    margin-bottom: 28px;
}

.product-specs-quick {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.spec-quick-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

    .spec-quick-item .sq-icon {
        font-size: 1.1rem;
        color: var(--primary);
        flex-shrink: 0;
    }

    .spec-quick-item .sq-label {
        font-size: 0.68rem;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--gray-light);
        display: block;
    }

    .spec-quick-item .sq-value {
        font-size: 0.84rem;
        font-weight: 600;
        color: var(--dark);
    }

.product-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

    .product-actions .btn {
        flex: 1;
        min-width: 160px;
    }

.product-tabs {
    margin-top: 64px;
}

.tabs-nav {
    display: flex;
    border-bottom: 2px solid var(--border);
    gap: 4px;
    margin-bottom: 36px;
    overflow-x: auto;
}

.tab-btn {
    padding: 12px 22px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition-fast);
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}

    .tab-btn.active, .tab-btn:hover {
        color: var(--primary);
        border-bottom-color: var(--primary);
    }

.tab-panel {
    display: none;
}

    .tab-panel.active {
        display: block;
    }

.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

    .spec-table tr {
        border-bottom: 1px solid var(--border);
    }

        .spec-table tr:last-child {
            border-bottom: none;
        }

    .spec-table td {
        padding: 12px 16px;
    }

        .spec-table td:first-child {
            font-weight: 600;
            color: var(--dark);
            width: 40%;
            background: var(--bg);
        }

        .spec-table td:last-child {
            color: var(--gray);
        }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

    .team-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
    }

.team-card-img {
    aspect-ratio: 1;
    overflow: hidden;
}

    .team-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

.team-card:hover .team-card-img img {
    transform: scale(1.06);
}

.team-card-body {
    padding: 20px;
    text-align: center;
}

    .team-card-body h4 {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .team-card-body span {
        font-size: 0.78rem;
        color: var(--primary);
        font-weight: 500;
        display: block;
        margin-bottom: 12px;
    }

.team-social {
    display: flex;
    justify-content: center;
    gap: 8px;
}

    .team-social a {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        color: var(--gray);
        transition: var(--transition-fast);
    }

        .team-social a:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
        }

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

.value-card {
    padding: 36px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

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

.value-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* ============================================================
   CERTIFICATES PAGE
   ============================================================ */
.certs-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.cert-full-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

    .cert-full-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

.cert-card-header {
    padding: 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
}

    .cert-card-header .cert-big-icon {
        font-size: 3rem;
        margin-bottom: 12px;
        display: block;
    }

    .cert-card-header h3 {
        color: var(--white);
        font-size: 1.2rem;
        margin-bottom: 4px;
    }

    .cert-card-header span {
        font-size: 0.78rem;
        color: rgba(255,255,255,0.75);
    }

.cert-card-body {
    padding: 24px;
}

    .cert-card-body p {
        font-size: 0.88rem;
        margin-bottom: 16px;
    }

    .cert-card-body .cert-meta {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

.cert-meta-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

    .cert-meta-item:last-child {
        border-bottom: none;
    }

    .cert-meta-item strong {
        color: var(--dark);
    }

    .cert-meta-item span {
        color: var(--gray);
    }

/* ============================================================
   REQUEST QUOTE PAGE
   ============================================================ */
.quote-section {
    background: var(--bg);
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 48px;
    align-items: start;
}

.quote-sidebar {
}

    .quote-sidebar h3 {
        margin-bottom: 16px;
    }

    .quote-sidebar > p {
        margin-bottom: 24px;
        font-size: 0.9rem;
    }

.quote-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.quote-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--dark);
}

    .quote-feature .qf-icon {
        width: 36px;
        height: 36px;
        background: rgba(27,94,32,0.10);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        flex-shrink: 0;
    }

.quote-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

    .quote-form-wrap h3 {
        margin-bottom: 28px;
        font-size: 1.6rem;
    }

/* ============================================================
   EXPORT COUNTRIES PAGE
   ============================================================ */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.country-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--border);
    transition: var(--transition-fast);
}

    .country-card:hover {
        border-color: var(--primary);
        box-shadow: var(--shadow-sm);
        transform: translateX(4px);
    }

.country-flag {
    font-size: 2rem;
    flex-shrink: 0;
}

.country-info strong {
    display: block;
    font-size: 0.92rem;
    color: var(--dark);
    margin-bottom: 2px;
}

.country-info span {
    font-size: 0.75rem;
    color: var(--gray);
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg);
    padding: 40px 24px;
}

.error-content {
}

.error-number {
    font-family: var(--font-heading);
    font-size: clamp(8rem, 20vw, 16rem);
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    opacity: 0.12;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    top: 0;
    white-space: nowrap;
}

.error-wrap {
    position: relative;
}

.error-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    display: block;
}

.error-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.error-content p {
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.error-links {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   PRODUCTS LISTING PAGE
   ============================================================ */
.products-listing {
    background: var(--bg);
}

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.products-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
    position: sticky;
    top: calc(var(--nav-height) + 20px);
}

.sidebar-section {
    margin-bottom: 28px;
}

    .sidebar-section:last-child {
        margin-bottom: 0;
    }

.sidebar-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.sidebar-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.86rem;
    color: var(--dark);
    border: 1px solid transparent;
}

    .sidebar-option:hover {
        background: var(--bg);
        border-color: var(--border);
    }

    .sidebar-option.active {
        background: rgba(27,94,32,0.08);
        color: var(--primary);
        border-color: rgba(27,94,32,0.20);
    }

.sidebar-option-count {
    font-size: 0.72rem;
    background: var(--border);
    padding: 2px 7px;
    border-radius: var(--radius-full);
    color: var(--gray);
}

.products-main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.products-count {
    font-size: 0.88rem;
    color: var(--gray);
}

.products-sort {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
}

    .products-sort select {
        padding: 8px 12px;
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        font-size: 0.84rem;
        background: var(--white);
        color: var(--dark);
        cursor: pointer;
        outline: none;
    }

.products-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-page {
    background: var(--bg);
}

.gallery-filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.d-flex {
    display: flex;
}

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

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

.gap-2 {
    gap: 8px;
}

.gap-3 {
    gap: 12px;
}

.gap-4 {
    gap: 16px;
}

.mt-2 {
    margin-top: 8px;
}

.mt-4 {
    margin-top: 16px;
}

.mt-6 {
    margin-top: 24px;
}

.mt-8 {
    margin-top: 32px;
}

.mb-2 {
    margin-bottom: 8px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-6 {
    margin-bottom: 24px;
}

.mb-8 {
    margin-bottom: 32px;
}

.w-full {
    width: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

/* Success message */
.form-success-msg {
    display: none;
    background: rgba(27,94,32,0.10);
    border: 1px solid rgba(27,94,32,0.25);
    color: var(--primary);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    margin-top: 12px;
    gap: 8px;
    align-items: center;
}

    .form-success-msg.show {
        display: flex;
    }
