/* ═══════════════════════════════════════════════════════════
   ALI AHSAN HERBAL CARE — Master Stylesheet
   https://aaherbalcare.shop
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ───────────────────────────────── */
:root {
    --forest: #1a5c2a;
    --forest-deep: #0d3318;
    --emerald: #2d8a4e;
    --sage: #7ab68a;
    --mint: #d4edda;
    --cream: #faf8f2;
    --gold: #c8953e;
    --gold-light: #e8be76;
    --gold-dark: #8a6420;
    --charcoal: #1a1a1a;
    --warm-gray: #6b6359;
    --light-gray: #f0ece4;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(26,92,42,0.08);
    --shadow-md: 0 8px 30px rgba(26,92,42,0.12);
    --shadow-lg: 0 20px 60px rgba(26,92,42,0.15);
    --shadow-gold: 0 8px 30px rgba(200,149,62,0.2);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

.accent-font { font-family: 'Cormorant Garamond', serif; }

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

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

/* ═══════════════════════════════════════ */
/* PRELOADER                               */
/* ═══════════════════════════════════════ */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--forest-deep);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    transition: opacity 0.6s, visibility 0.6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
#preloader .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
}
.loader-leaf {
    width: 48px; height: 48px;
    border: 3px solid transparent;
    border-top-color: var(--gold);
    border-right-color: var(--sage);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ─── Keyframes ───────────────────────────────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes sway { 0%, 100% { transform: rotate(-10deg); } 50% { transform: rotate(10deg); } }
@keyframes floatLeaf {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(10deg); }
    50% { transform: translate(-10px, -50px) rotate(-5deg); }
    75% { transform: translate(30px, -20px) rotate(15deg); }
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    70% { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
}

/* ═══════════════════════════════════════ */
/* NAVIGATION                              */
/* ═══════════════════════════════════════ */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
nav.scrolled {
    background: rgba(13,51,24,0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--forest-deep);
    position: relative;
}
.nav-logo-icon::after {
    content: '🌿';
    position: absolute;
    top: -6px; right: -6px;
    font-size: 14px;
}
.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
}
.nav-logo-text span { color: var(--gold-light); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    transition: transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none; border: none; padding: 8px;
}
.mobile-toggle span {
    width: 26px; height: 2px;
    background: var(--white);
    transition: all 0.3s;
    border-radius: 2px;
}
.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); }

/* ═══════════════════════════════════════ */
/* HERO SECTION                             */
/* ═══════════════════════════════════════ */
#hero {
    min-height: 100vh;
    background: linear-gradient(165deg, var(--forest-deep) 0%, var(--forest) 40%, var(--emerald) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(200,149,62,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(122,182,138,0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(255,255,255,0.03) 0%, transparent 30%);
}
.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}
.hero-floating-leaf {
    position: absolute;
    font-size: 60px;
    opacity: 0.08;
    animation: floatLeaf 20s ease-in-out infinite;
}
.hero-floating-leaf:nth-child(1) { top: 15%; left: 5%; animation-delay: 0s; }
.hero-floating-leaf:nth-child(2) { top: 60%; right: 8%; animation-delay: -7s; font-size: 40px; }
.hero-floating-leaf:nth-child(3) { bottom: 20%; left: 15%; animation-delay: -14s; font-size: 50px; }
.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,149,62,0.15);
    border: 1px solid rgba(200,149,62,0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease both;
}
.hero-badge::before { content: '✦'; font-size: 10px; }
.hero-title {
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-title .gold { color: var(--gold-light); }
.hero-title .leaf-accent {
    display: inline-block;
    position: relative;
}
.hero-title .leaf-accent::after {
    content: '🍃';
    position: absolute;
    top: -10px; right: -30px;
    font-size: 24px;
    animation: sway 3s ease-in-out infinite;
}
.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2.5vw, 26px);
    color: var(--sage);
    margin-bottom: 28px;
    font-weight: 500;
    font-style: italic;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-desc {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    max-width: 520px;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-stats {
    display: flex;
    gap: 36px;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.35s both;
}
.hero-stat { text-align: center; }
.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--gold-light);
}
.hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: none; cursor: pointer;
    box-shadow: 0 4px 20px rgba(200,149,62,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(200,149,62,0.5); }
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    cursor: pointer;
    backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: var(--gold-light); }
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease 0.3s both;
}
.hero-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-img-wrapper img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 24px;
}
.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,51,24,0.4) 0%, transparent 50%);
    border-radius: 24px;
}
.hero-floating-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    animation: float 6s ease-in-out infinite;
}
.hero-floating-card.card-1 {
    bottom: -20px; left: -30px;
    display: flex; align-items: center; gap: 12px;
}
.hero-floating-card.card-2 {
    top: 30px; right: -20px;
    animation-delay: -3s;
}
.card-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--emerald), var(--forest));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.card-text-sm { font-size: 11px; color: var(--warm-gray); text-transform: uppercase; letter-spacing: 0.5px; }
.card-text-lg { font-size: 16px; font-weight: 700; color: var(--forest-deep); }

/* ═══════════════════════════════════════ */
/* TRUST BAR                               */
/* ═══════════════════════════════════════ */
.trust-bar {
    background: var(--white);
    padding: 28px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.trust-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--warm-gray);
}
.trust-icon {
    width: 36px; height: 36px;
    background: var(--mint);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}

/* ═══════════════════════════════════════ */
/* SECTION COMMON                          */
/* ═══════════════════════════════════════ */
section { padding: 100px 0; }
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.section-label::before, .section-label::after {
    content: '';
    width: 30px; height: 1px;
    background: var(--gold);
}
.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--forest-deep);
    margin-bottom: 16px;
}
.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--warm-gray);
    font-style: italic;
}

/* ═══════════════════════════════════════ */
/* ABOUT SECTION                           */
/* ═══════════════════════════════════════ */
#about { background: var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images { position: relative; }
.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}
.about-img-secondary {
    position: absolute;
    bottom: -30px; right: -30px;
    width: 200px; height: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
}
.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-experience-badge {
    position: absolute;
    top: -20px; left: -20px;
    width: 100px; height: 100px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-gold);
}
.about-experience-badge .number {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}
.about-experience-badge .text {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    text-align: center;
}
.about-content h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    color: var(--forest-deep);
    margin-bottom: 20px;
}
.about-content h2 span { color: var(--gold); }
.about-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--emerald);
    font-style: italic;
    margin-bottom: 20px;
}
.about-text {
    color: var(--warm-gray);
    margin-bottom: 28px;
    font-size: 15px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--cream);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--forest);
}
.about-feature-icon {
    width: 32px; height: 32px;
    background: var(--mint);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════ */
/* BENEFITS SECTION                        */
/* ═══════════════════════════════════════ */
#benefits {
    background: linear-gradient(165deg, var(--forest-deep) 0%, var(--forest) 100%);
    position: relative;
    overflow: hidden;
}
#benefits .section-label { color: var(--gold-light); }
#benefits .section-title { color: var(--white); }
#benefits .section-subtitle { color: var(--sage); }
.benefits-bg-glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,149,62,0.08) 0%, transparent 70%);
    top: -200px; right: -200px;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 2;
}
.benefit-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.4s;
    backdrop-filter: blur(10px);
}
.benefit-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-6px);
    border-color: rgba(200,149,62,0.3);
}
.benefit-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(200,149,62,0.3);
}
.benefit-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.benefit-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

/* ═══════════════════════════════════════ */
/* PRODUCTS SECTION                        */
/* ═══════════════════════════════════════ */
#products { background: var(--cream); }
.products-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.product-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
    border: 1px solid rgba(0,0,0,0.04);
}
.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}
.product-img {
    position: relative;
    overflow: hidden;
    height: 440px;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.product-content { padding: 28px; }
.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--forest-deep);
    margin-bottom: 8px;
}
.product-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 16px;
}
.product-desc {
    font-size: 14px;
    color: var(--warm-gray);
    margin-bottom: 20px;
}
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.product-feature-tag {
    background: var(--mint);
    color: var(--forest);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}
.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--forest);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    border: none; cursor: pointer;
}
.product-cta:hover { background: var(--forest-deep); transform: translateY(-2px); }

/* ═══════════════════════════════════════ */
/* HOW IT WORKS                            */
/* ═══════════════════════════════════════ */
#how-it-works { background: var(--white); }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 12%;
    width: 76%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--emerald), var(--gold));
    opacity: 0.3;
}
.step-card { text-align: center; position: relative; }
.step-number {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--forest), var(--emerald));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(26,92,42,0.3);
}
.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--forest-deep);
    margin-bottom: 10px;
}
.step-desc {
    font-size: 14px;
    color: var(--warm-gray);
}

/* ═══════════════════════════════════════ */
/* INGREDIENTS SECTION                     */
/* ═══════════════════════════════════════ */
#ingredients { background: var(--cream); }
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.ingredient-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s;
}
.ingredient-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--sage);
}
.ingredient-emoji {
    font-size: 40px;
    margin-bottom: 14px;
    display: block;
}
.ingredient-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--forest-deep);
    margin-bottom: 4px;
}
.ingredient-urdu {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 8px;
}
.ingredient-benefit {
    font-size: 13px;
    color: var(--warm-gray);
}

/* ═══════════════════════════════════════ */
/* TESTIMONIALS                            */
/* ═══════════════════════════════════════ */
#testimonials {
    background: linear-gradient(165deg, var(--forest-deep) 0%, #153d22 100%);
    position: relative;
    overflow: hidden;
}
#testimonials .section-label { color: var(--gold-light); }
#testimonials .section-title { color: var(--white); }
#testimonials .section-subtitle { color: var(--sage); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s;
}
.testimonial-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}
.testimonial-stars {
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
    color: var(--gold-light);
}
.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
    line-height: 1.7;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--emerald));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
}
.testimonial-name {
    font-weight: 600;
    color: var(--white);
    font-size: 14px;
}
.testimonial-location {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════════ */
/* VIDEO SHOWCASE                          */
/* ═══════════════════════════════════════ */
#video {
    background: linear-gradient(165deg, var(--forest-deep) 0%, #153d22 100%);
    position: relative;
    overflow: hidden;
}
#video .section-label { color: var(--gold-light); }
#video .section-title { color: var(--white); }
#video .section-subtitle { color: var(--sage); }
.video-showcase {
    max-width: 420px;
    margin: 0 auto;
}
.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    background: #000;
    aspect-ratio: 9 / 16;
    cursor: pointer;
    border: 3px solid rgba(200,149,62,0.3);
}
.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 3;
}
.video-play-btn:hover { background: rgba(0,0,0,0.5); }
.video-play-btn .play-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(200,149,62,0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    padding-left: 4px;
}
.video-play-btn:hover .play-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(200,149,62,0.6);
}
.video-play-btn.hidden { display: none; }

/* Custom Video Controls */
.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    z-index: 4;
    opacity: 0;
    transition: opacity 0.3s;
}
.video-wrapper:hover .video-controls,
.video-controls.visible { opacity: 1; }
.vc-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 6px;
    transition: background 0.2s;
    flex-shrink: 0;
}
.vc-btn:hover { background: rgba(255,255,255,0.15); }
.vc-progress-bar {
    flex: 1;
    height: 5px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.vc-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 10px;
    width: 0%;
    transition: width 0.1s linear;
}
.vc-progress-bar:hover { height: 7px; }
.vc-time {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    font-variant-numeric: tabular-nums;
    min-width: 38px;
    text-align: center;
    flex-shrink: 0;
}

/* Video Caption */
.video-caption {
    text-align: center;
    margin-top: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-style: italic;
    color: var(--sage);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.video-caption-icon { font-size: 20px; }

@media (max-width: 768px) {
    .video-showcase { max-width: 320px; }
    .video-play-btn .play-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
    .video-controls { padding: 8px 12px; gap: 6px; }
    .vc-time { font-size: 11px; min-width: 32px; }
}

/* ═══════════════════════════════════════ */
/* GALLERY                                 */
/* ═══════════════════════════════════════ */
#gallery { background: var(--white); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--light-gray);
    border: 1px solid rgba(0,0,0,0.06);
}
/* First 3 items — fixed height in one row */
.gallery-item:nth-child(-n+3) {
    height: 680px;
}
/* 4th item — full width, taller */
.gallery-item:nth-child(4) {
    grid-column: 1 / -1;
    height: 380px;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.6s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,51,24,0.25) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item:nth-child(-n+3) { height: 640px; }
    .gallery-item:nth-child(4) { height: 520px; max-width: 100%; }
}
@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(-n+3) { height: 560px; }
    .gallery-item:nth-child(4) { height: 300px; max-width: 100%; }
}

/* ═══════════════════════════════════════ */
/* FAQ SECTION                             */
/* ═══════════════════════════════════════ */
#faq { background: var(--cream); }
.faq-container {
    max-width: 780px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--forest-deep);
    text-align: left;
}
.faq-icon {
    width: 28px; height: 28px;
    background: var(--mint);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    color: var(--forest);
    transition: transform 0.3s, background 0.3s;
    flex-shrink: 0;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--gold);
    color: var(--white);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer-content {
    padding: 0 28px 22px;
    color: var(--warm-gray);
    font-size: 15px;
    line-height: 1.7;
}

/* ═══════════════════════════════════════ */
/* CTA / CONTACT SECTION                   */
/* ═══════════════════════════════════════ */
#contact {
    background: linear-gradient(165deg, var(--forest-deep) 0%, var(--forest) 100%);
    position: relative;
    overflow: hidden;
}
.contact-glow {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,149,62,0.1) 0%, transparent 70%);
    bottom: -200px; left: -200px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.contact-content h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--white);
    margin-bottom: 16px;
}
.contact-content h2 span { color: var(--gold-light); }
.contact-desc {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    margin-bottom: 36px;
    max-width: 460px;
}
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px 24px;
    transition: all 0.3s;
    cursor: pointer;
}
.contact-method:hover {
    background: rgba(255,255,255,0.12);
    transform: translateX(8px);
    border-color: var(--gold);
}
.contact-method-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.contact-method-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.contact-method-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}
.contact-form-side {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
}
.contact-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.form-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    font-size: 15px;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus { border-color: var(--gold); }
textarea.form-input { resize: vertical; min-height: 100px; }
.form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    font-family: 'DM Sans', sans-serif;
    margin-top: 8px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* Form Validation & Alerts */
.required { color: #ff6b6b; }
.optional { color: rgba(255,255,255,0.35); font-weight: 400; font-size: 11px; }
.form-error {
    display: block;
    font-size: 12px;
    color: #ff6b6b;
    margin-top: 5px;
    min-height: 16px;
    transition: all 0.3s;
}
.form-input.invalid {
    border-color: #ff6b6b;
    background: rgba(255,107,107,0.06);
}
.form-input.valid {
    border-color: #4ade80;
}
.form-input:focus.invalid {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255,107,107,0.15);
}
.form-input:focus.valid {
    border-color: #4ade80;
    box-shadow: 0 0 0 3px rgba(74,222,128,0.15);
}
.form-char-count {
    display: block;
    text-align: right;
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    margin-top: 4px;
}
.form-alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: fadeInUp 0.4s ease;
}
.form-alert-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.form-alert strong { display: block; font-size: 15px; margin-bottom: 2px; }
.form-alert p { font-size: 13px; margin: 0; opacity: 0.8; }
.form-alert-success {
    background: rgba(74,222,128,0.12);
    border: 1px solid rgba(74,222,128,0.3);
    color: #4ade80;
}
.form-alert-error {
    background: rgba(255,107,107,0.12);
    border: 1px solid rgba(255,107,107,0.3);
    color: #ff6b6b;
}
.btn-loader { display: inline-flex; align-items: center; gap: 8px; }
.spinner {
    width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: inline-block;
}
.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* ═══════════════════════════════════════ */
/* FOOTER                                  */
/* ═══════════════════════════════════════ */
footer {
    background: #071a0e;
    padding: 60px 0 0;
}
.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-brand-text span { color: var(--gold-light); }
.footer-desc {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin-bottom: 20px;
    max-width: 300px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    transition: all 0.3s;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
    padding: 24px 0;
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 13px;
}

/* ═══════════════════════════════════════ */
/* WHATSAPP FLOATING BUTTON                */
/* ═══════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 999;
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
    color: white;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    transition: transform 0.3s;
    animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ═══════════════════════════════════════ */
/* SCROLL REVEAL                           */
/* ═══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════ */
/* RESPONSIVE                              */
/* ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-container, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { order: -1; }
    .hero-img-wrapper img { height: 360px; }
    .benefits-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid::before { display: none; }
    .ingredients-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .about-img-secondary { right: 10px; bottom: -20px; width: 160px; height: 160px; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(13,51,24,0.98);
        padding: 24px;
        gap: 16px;
        backdrop-filter: blur(20px);
    }
    .mobile-toggle { display: flex; }
    .hero-container { padding: 110px 24px 60px; }
    .hero-stats { gap: 20px; }
    .hero-stat-number { font-size: 28px; }
    .benefits-grid, .products-showcase, .testimonials-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; gap: 24px; }
    .ingredients-grid { grid-template-columns: 1fr 1fr; }
    section { padding: 70px 0; }
    .about-features { grid-template-columns: 1fr; }
    .trust-container { gap: 24px; }
    .hero-floating-card { display: none; }
    .about-experience-badge { width: 80px; height: 80px; top: -10px; left: -10px; }
    .about-experience-badge .number { font-size: 26px; }
    .footer-top { grid-template-columns: 1fr; }
}
