/* ========================================
   ARKA AROMA — Premium Agarbatti Landing Page
   Light Theme Design System & Motion Styles
   ======================================== */

/* ========== FLOATING CONTACT BUTTONS STYLING ========== */

/* --- Mobile Fix for Hero Section --- */
@media (max-width: 768px) {
    /* 1. Ensure the hero section can grow taller if needed */
    .hero {
        height: auto !important;
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 80px; /* Space for the scroll indicator */
        display: flex;
        flex-direction: column;
    }

    /* 2. Fix the stats layout: Stack them vertically */
    .hero__stats {
        flex-direction: column !important;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
        width: 100%;
    }

    /* 3. Hide the vertical divider lines on mobile */
    .stat__divider {
        display: none !important;
    }

    /* 4. Ensure stats have enough space and don't overlap */
    .stat {
        text-align: center;
        padding: 10px 0;
    }

    /* 5. Fix the Scroll Down overlap */
    .hero__scroll-indicator {
        position: relative; /* Change from absolute to relative to stay below content */
        bottom: auto;
        margin-top: 50px;
        padding-bottom: 20px;
    }

    /* 6. Adjust Hero Text to prevent squeezing */
    .hero__text {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .hero__actions {
        justify-content: center;
    }
}

/* Optional: Small fix for the image badge overlap */
@media (max-width: 480px) {
    .hero__floating-badge {
        font-size: 12px;
        padding: 8px 12px;
    }
}

.floating-contact {
    position: fixed;
    bottom: 25px;
    left: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999; /* Ensures buttons display on top of other content */
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, background-color 0.25s ease;
    text-decoration: none;
}

/* Call Button styling (Warm Gold matching the brand theme) */
.btn-call {
    background-color: #d48325;
}

.btn-call:hover {
    background-color: #b56e1b;
    transform: scale(1.08);
}

/* WhatsApp Button styling (WhatsApp Green) */
.btn-wa {
    background-color: #25d366;
}

.btn-wa:hover {
    background-color: #1fc057;
    transform: scale(1.08);
}

/* Mobile-friendly sizing adjustments */
@media (max-width: 768px) {
    .floating-contact {
        bottom: 15px;
        left: 15px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 46px;
        height: 46px;
    }
}    
    /* ========== FAQ SECTION STYLING ========== */

.faq {
    background-color: #ffffff;
    padding: 80px 0;
}

.faq__container {
    max-width: 800px;
    margin: 40px auto 0 auto;
}

/* Accordion Box */
.faq__item {
    background-color: #faf7f2;
    border: 1px solid #efe4d3;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: box-shadow 0.25s ease;
}

/* Active Open state */
.faq__item[open] {
    box-shadow: 0 4px 12px rgba(212, 131, 37, 0.05);
    background-color: #ffffff;
}

/* Summary / Question Bar */
.faq__question {
    padding: 20px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none; /* Hide standard arrow indicator */
}

/* Hide standard summary marker for Safari */
.faq__question::-webkit-details-marker {
    display: none;
}

/* Custom interactive icon */
.faq__icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: inline-block;
}

.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    background-color: #d48325;
    transition: transform 0.25s ease;
}

/* Horizontal line */
.faq__icon::before {
    top: 9px;
    left: 2px;
    width: 16px;
    height: 2px;
}

/* Vertical line */
.faq__icon::after {
    top: 2px;
    left: 9px;
    width: 2px;
    height: 16px;
}

/* Rotation animation when open */
.faq__item[open] .faq__icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq__item[open] .faq__icon::before {
    transform: rotate(180deg);
}

/* Answer body */
.faq__answer {
    padding: 0 24px 20px 24px;
    border-top: 1px solid rgba(239, 228, 211, 0.5);
}

.faq__answer p {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
    margin: 10px 0 0 0;
}

.faq__answer strong {
    color: #1a1a1a;
}

/* Responsive configurations */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq__question {
        padding: 16px 18px;
        font-size: 0.95rem;
    }
    
    .faq__answer {
        padding: 0 18px 16px 18px;
    }
    
    .faq__answer p {
        font-size: 0.9rem;
    }
}
/* ========== WHY CHOOSE US SECTION STYLING ========== */

.why-choose {
    background-color: #faf7f2; /* Warm, soft off-white background */
    padding: 80px 0;
    font-family: inherit;
}

.why-choose__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Card Design */
.feature-card {
    background-color: #ffffff;
    border: 1px solid #efe4d3;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 131, 37, 0.08);
}

/* Icon Container */
.feature-card__icon-container {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #fdf8f0;
    border: 1px solid #f2e2cb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: #d48325; /* Gold/Amber Accent color */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.feature-card:hover .feature-card__icon-container {
    background-color: #d48325;
    color: #ffffff;
}

.feature-card__icon {
    width: 28px;
    height: 28px;
}

/* Typography */
.feature-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.feature-card__desc {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .why-choose {
        padding: 60px 0;
    }
    
    .why-choose__grid {
        gap: 20px;
        margin-top: 35px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}
 /* ========== PROFESSIONAL PRODUCT CARDS CSS ========== */

.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.product-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f1f1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.product-card__image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #fcfcfc;
}

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

/* Badge styling */
.product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #d48325;
    color: #fff;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
    z-index: 2;
}

.product-card__badge--popular {
    background-color: #3b5998;
}

/* Info container layout */
.product-card__info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card__header {
    margin-bottom: 8px;
}

.product-card__category {
    font-size: 0.75rem;
    font-weight: 700;
    color: #a8743a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 2px;
}

.product-card__desc {
    font-size: 0.875rem;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.product-card__rating {
    font-size: 0.85rem;
    color: #ffb100;
    display: flex;
    align-items: center;
}

.rating-count {
    color: #888888;
    margin-left: 4px;
}

/* Professional pricing grid */
.product-card__pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #faf7f2;
    border: 1px solid #efe4d3;
    border-radius: 8px;
    margin: 15px 0;
    padding: 8px 4px;
    text-align: center;
}

.pricing-col {
    display: flex;
    flex-direction: column;
}

.pricing-col:not(:last-child) {
    border-right: 1px solid #eedecc;
}

.price-qty {
    font-size: 0.75rem;
    color: #777777;
    text-transform: uppercase;
    font-weight: 600;
}

.price-value {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 700;
    margin-top: 2px;
}

/* Action button configuration */
.product-card__action {
    margin-top: auto;
    padding-top: 5px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background-color: #25d366;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
    transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-whatsapp:hover {
    background-color: #1fc057;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
    transform: translateY(-1px);
}

.icon-whatsapp {
    flex-shrink: 0;
}

/* ── CSS Custom Properties ── */
:root {
    /* Colors - Light Theme */
    --color-primary: #C07830;
    --color-primary-light: #D4A574;
    --color-primary-dark: #9A5E20;
    --color-accent: #E8C472;
    --color-accent-muted: #F5E6C8;
    
    --color-bg-dark: #FFFFFF;
    --color-bg-primary: #FAFAFA;
    --color-bg-secondary: #F4F1ED;
    --color-bg-card: #FFFFFF;
    --color-bg-card-hover: #FDFBF8;
    --color-bg-glass: rgba(255, 255, 255, 0.85);
    
    --color-text-primary: #2C2621;
    --color-text-secondary: #5C5248;
    --color-text-muted: #8A7E72;
    --color-text-accent: #C07830;
    
    --color-border: rgba(192, 120, 48, 0.15);
    --color-border-hover: rgba(192, 120, 48, 0.35);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #C07830, #D4A574, #E8C472);
    --gradient-dark: linear-gradient(180deg, #FAFAFA, #FFFFFF);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(252, 250, 248, 0.95));
    --gradient-glow: radial-gradient(ellipse at center, rgba(192, 120, 48, 0.15), transparent 70%);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Outfit', sans-serif;
    
    /* Spacing */
    --section-padding: clamp(4rem, 8vw, 8rem);
    --container-max: 1240px;
    --container-padding: clamp(1rem, 4vw, 2rem);
    
    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 100px;
    
    /* Shadows - Adjusted for Light Theme */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 32px rgba(44, 38, 33, 0.08);
    --shadow-lg: 0 16px 48px rgba(44, 38, 33, 0.12);
    --shadow-glow: 0 0 30px rgba(192, 120, 48, 0.2);
    --shadow-glow-strong: 0 0 60px rgba(192, 120, 48, 0.35);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

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

body {
    font-family: var(--font-body);
    background: var(--color-bg-dark);
    color: var(--color-text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

/* ── Utility Classes ── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-inline: var(--container-padding);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Smoke Canvas ── */
#smokeCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4; /* Slightly more opaque for light mode */
}

/* ── Mouse Follower ── */
.mouse-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    mix-blend-mode: multiply;
}

.mouse-follower.active {
    width: 50px;
    height: 50px;
    background-color: rgba(192, 120, 48, 0.1);
}

/* ── Section Common Styles ── */
.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
    position: relative;
    padding: 0.4rem 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    background: rgba(192, 120, 48, 0.05);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(192, 120, 48, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(232, 196, 114, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-base);
    background: transparent;
}

.header.scrolled {
    padding: 0.6rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.header__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
}

.logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: 0.5px;
}

.logo-accent {
    color: var(--color-primary-dark);
}

/* Navigation */
.header__nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1.15rem;
    color: var(--color-text-secondary);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

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

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

.nav-link.active {
    color: var(--color-primary-dark);
    background: rgba(192, 120, 48, 0.05);
}

/* Header CTA */
.header__cta {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    background: var(--gradient-primary);
    color: #FFFFFF;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

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

.header__cta:hover::before {
    left: 100%;
}

.header__cta:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

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

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

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

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    transition: all var(--transition-base);
    transform: translateY(20px);
    opacity: 0;
}

.mobile-nav-overlay.active .mobile-nav-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-overlay.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav-overlay.active .mobile-nav-link:nth-child(5) { transition-delay: 0.5s; }

.mobile-nav-link:hover {
    color: var(--color-primary-dark);
}

.mobile-nav-cta {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 700;
    padding: 0.8rem 2.5rem;
    background: var(--gradient-primary);
    color: #FFFFFF;
    border-radius: var(--radius-full);
    margin-top: 1rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--transition-base);
}

.mobile-nav-overlay.active .mobile-nav-cta {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.5s;
}

/* ══════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: clamp(6rem, 10vw, 8rem) 0 var(--section-padding);
    overflow: hidden;
    background: var(--color-bg-primary);
}

.hero__bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(192, 120, 48, 0.05), transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(232, 196, 114, 0.08), transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(154, 94, 32, 0.04), transparent 60%);
    pointer-events: none;
}

.hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Text */
.hero__badge {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary-dark);
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    background: rgba(192, 120, 48, 0.06);
    margin-bottom: 1.5rem;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
}

.hero__subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

/* Buttons */
.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gradient-primary);
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(192, 120, 48, 0.3);
}

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

.btn--primary:hover::before {
    left: 100%;
}

.btn--primary:hover {
    box-shadow: var(--shadow-glow-strong);
    transform: translateY(-3px);
}

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

.btn--outline:hover {
    border-color: var(--color-primary);
    background: rgba(192, 120, 48, 0.05);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero__stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.stat {
    text-align: center;
}

.stat__number {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-primary-dark);
    display: inline;
}

.stat__suffix {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--color-primary-light);
}

.stat__label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.2rem;
}

.stat__divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

/* Hero Image */
.hero__image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__image-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: var(--gradient-glow);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulseGlow 4s ease-in-out infinite;
}

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

.hero__image-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero__image-frame:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.hero__image-frame img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/5;
    transition: transform 0.8s ease;
}

.hero__image-frame:hover img {
    transform: scale(1.05);
}

.hero__floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.6rem 1.25rem;
    background: var(--color-bg-glass);
    backdrop-filter: blur(15px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    color: var(--color-text-primary);
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    animation: floatBadge 6s ease-in-out infinite;
}

.hero__floating-badge--top {
    top: 10%;
    right: -5%;
}

.hero__floating-badge--bottom {
    bottom: 15%;
    left: -5%;
    animation-delay: -3s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Hero Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.5; }
}

/* ══════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════ */
.about {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
    overflow: hidden;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* About Story Card */
.about__story-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.about__story-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about__story-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.about__story-card p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Feature Cards */
.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.feature-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.feature-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card__icon {
    width: 44px;
    height: 44px;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card__icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Timeline */
.about__timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 3rem;
}

.about__timeline::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-border);
}

.timeline-item {
    position: relative;
    text-align: center;
    flex: 1;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 3px solid var(--color-bg-secondary);
    box-shadow: 0 0 0 2px var(--color-primary);
    transition: all var(--transition-base);
}

.timeline-item:hover::before {
    transform: translateX(-50%) scale(1.4);
    box-shadow: 0 0 0 4px rgba(192, 120, 48, 0.4);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-year {
    transform: translateY(-5px);
}

.timeline-content h4 {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

.timeline-content p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ══════════════════════════════════════
   PRODUCTS SECTION
   ══════════════════════════════════════ */
.products {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--color-bg-primary);
}

/* Filter Buttons */
.products__filter {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.55rem 1.5rem;
    background: transparent;
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
}

.filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
    background: rgba(192, 120, 48, 0.05);
}

.filter-btn.active {
    background: var(--gradient-primary);
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: var(--shadow-sm);
}

/* Products Grid */
.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

/* Product Card */
.product-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.product-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 0.9rem;
    background: var(--gradient-primary);
    color: #FFFFFF;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.product-card__badge--new {
    background: linear-gradient(135deg, #22C55E, #16A34A);
}

.product-card__badge--popular {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.product-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--color-bg-secondary);
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-card:hover .product-card__overlay {
    opacity: 1;
}

/* Placeholders for light theme */
.product-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.product-card__placeholder--mogra {
    background: linear-gradient(180deg, #FAF4F0, #F0E8E0);
}
.product-card__placeholder--guggul {
    background: linear-gradient(180deg, #F5ECE5, #EBE0D5);
}
.product-card__placeholder--oudh {
    background: linear-gradient(180deg, #F8F0E5, #EAE0D0);
}

.product-card__info {
    padding: 1.5rem;
}

.product-card__category {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary-dark);
}

.product-card__name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0.5rem 0;
    color: var(--color-text-primary);
}

.product-card__desc {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.product-card__rating span:first-child {
    color: var(--color-primary);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.rating-count {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-left: 0.3rem;
}

.product-card__sticks {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    padding: 0.25rem 0.75rem;
    background: rgba(192, 120, 48, 0.1);
    border-radius: var(--radius-full);
}

.product-card__pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.price-tier {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-tier .weight {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.price-tier .price {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.btn--whatsapp {
    background: #25D366;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
    background: #128C7E;
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.btn--whatsapp svg {
    margin-right: 0.4rem;
}

.product-card.hide {
    display: none;
}

/* ══════════════════════════════════════
   TESTIMONIALS SECTION
   ══════════════════════════════════════ */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(192, 120, 48, 0.05), transparent 60%);
    pointer-events: none;
}

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

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(192, 120, 48, 0.1);
    line-height: 1;
}

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

.testimonial-card__stars {
    color: var(--color-primary);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.testimonial-card__text {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.85rem;
    color: #FFFFFF;
    flex-shrink: 0;
}

.testimonial-card__author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.testimonial-card__author span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ══════════════════════════════════════
   CONTACT SECTION
   ══════════════════════════════════════ */
.contact {
    padding: var(--section-padding) 0;
    background: var(--color-bg-primary);
    position: relative;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: start;
}

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

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.contact-info-card:hover {
    border-color: var(--color-primary);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.contact-info-card__icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 120, 48, 0.1);
    border-radius: var(--radius-sm);
    color: var(--color-primary-dark);
}

.contact-info-card__icon svg {
    width: 20px;
    height: 20px;
}

.contact-info-card h4 {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

.contact-info-card p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Contact Form */
.contact__form-wrap {
    position: relative;
}

.contact-form {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.3s ease;
}

.contact-form:focus-within {
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.25rem;
}

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

.form-group label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-primary);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(192, 120, 48, 0.15);
    background: #FFFFFF;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C07830' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

/* Form Success */
.form-success {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
}

.form-success.show {
    opacity: 1;
    visibility: visible;
}

.form-success__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #22C55E;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}

.form-success p {
    color: var(--color-text-secondary);
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
    background: #111111; /* Keep dark footer for premium contrast, but adjust elements */
    color: #FFFFFF;
    position: relative;
}

.footer__top {
    padding: 4rem 0 3rem;
    border-top: 1px solid var(--color-border);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

/* Footer brand elements adapted for dark background */
.footer__brand .logo-text { color: #FFFFFF; }
.footer__brand .logo-accent { color: var(--color-primary-light); }
.footer__tagline {
    font-size: 0.9rem;
    color: #A0A0A0;
    line-height: 1.7;
    margin: 1.25rem 0;
    max-width: 300px;
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #FFFFFF;
    transition: all var(--transition-base);
}

.social-link:hover {
    border-color: var(--color-primary-light);
    color: var(--color-primary-light);
    background: rgba(192, 120, 48, 0.15);
    transform: translateY(-3px);
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.footer__links h4 {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__links a {
    font-size: 0.9rem;
    color: #A0A0A0;
    transition: all var(--transition-fast);
}

.footer__links a:hover {
    color: var(--color-primary-light);
    padding-left: 5px;
}

.footer__newsletter h4 {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__newsletter p {
    font-size: 0.85rem;
    color: #A0A0A0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    transition: border-color var(--transition-fast);
}

.newsletter-form:focus-within {
    border-color: var(--color-primary-light);
}

.newsletter-form input {
    flex: 1;
    font-family: var(--font-body);
    font-size: 0.85rem;
    padding: 0.7rem 1.25rem;
    background: transparent;
    border: none;
    color: #FFFFFF;
    outline: none;
    min-width: 0;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form button {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: #FFFFFF;
    cursor: pointer;
    margin: 3px;
    transition: all var(--transition-base);
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(192,120,48,0.5);
}

.footer__bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.footer__bottom p {
    font-size: 0.8rem;
    color: #888888;
}

.footer__bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer__bottom-links a {
    font-size: 0.8rem;
    color: #888888;
    transition: color var(--transition-fast);
}

.footer__bottom-links a:hover {
    color: var(--color-primary-light);
}

/* ══════════════════════════════════════
   BACK TO TOP
   ══════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-glass);
    backdrop-filter: blur(15px);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-primary-dark);
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-primary);
    color: #FFFFFF;
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

/* ══════════════════════════════════════
   SCROLL ANIMATIONS (Premium Motion)
   ══════════════════════════════════════ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px) scale(0.98);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), 
                transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

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

/* Slide up and fade in for specific elements */
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children animation delays */
.about__features .feature-card:nth-child(2) { transition-delay: 0.15s; }
.about__features .feature-card:nth-child(3) { transition-delay: 0.3s; }
.about__features .feature-card:nth-child(4) { transition-delay: 0.45s; }

.products__grid .product-card:nth-child(2) { transition-delay: 0.15s; }
.products__grid .product-card:nth-child(3) { transition-delay: 0.3s; }
.products__grid .product-card:nth-child(4) { transition-delay: 0.45s; }
.products__grid .product-card:nth-child(5) { transition-delay: 0.6s; }
.products__grid .product-card:nth-child(6) { transition-delay: 0.75s; }

/* ══════════════════════════════════════
   RESPONSIVE DESIGN
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__actions {
        justify-content: center;
    }
    
    .hero__stats {
        justify-content: center;
    }
    
    .hero__image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero__floating-badge--top {
        right: 0;
    }
    
    .hero__floating-badge--bottom {
        left: 0;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .mouse-follower {
        display: none;
    }
}

@media (max-width: 768px) {
    .header__nav,
    .header__cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .testimonials__slider {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about__features {
        grid-template-columns: 1fr;
    }
    
    .about__timeline {
        flex-direction: column;
        gap: 2rem;
        padding-left: 2rem;
    }
    
    .about__timeline::before {
        top: 0;
        bottom: 0;
        left: 2rem;
        right: auto;
        width: 2px;
        height: auto;
    }
    
    .timeline-item {
        text-align: left;
        padding-left: 2rem;
    }
    
    .timeline-item::before {
        left: -6px;
        top: 0;
        transform: none;
    }
    
    .timeline-item:hover::before {
        transform: scale(1.3);
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero__stats {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .products__grid {
        grid-template-columns: 1fr;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}
