﻿:root {
    --saffron: #F4821F;
    --deep-red: #C0392B;
    --crimson: #8B0000;
    --gold: #0B5C1E;
    --gold-light: #F0D060;
    --earth: #6B3A2A;
    --earth-light: #A0522D;
    --cream: #FDF6EC;
    --cream-dark: #F5E8D0;
    --dark-bg: #8B0000;
    --dark-mid: #2D1400;
    --green-leaf: #2E7D32;
    --text-dark: #1C0A00;
    --text-mid: #4A2010;
    --text-light: #8B5A3C;
    --white: #FFFFFF;
    --shadow-warm: 0 20px 60px rgba(196,58,43,0.15);
    --shadow-gold: 0 8px 32px rgba(212,175,55,0.3);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient( 135deg, #8B0000 50%, #8B0000 25%, #8B0000 25%);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212,175,55,0.2);
    transition: all 0.3s ease;
}

.nav-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
}

    .nav-logo img {
        height: 70px; /* 48px se bada */
        width: auto;
        display: block;
        image-rendering: auto;
        object-fit: contain;
        /* unnecessary blur remove */
        filter: none;
        transform: translateZ(0);
        backface-visibility: hidden;
    }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

    .nav-links a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        font-size: 0.88rem;
        font-weight: 500;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        transition: color 0.3s;
        position: relative;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--gold);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

            .nav-links a:hover::after {
                width: 100%;
            }

.nav-cta {
    background: linear-gradient(135deg, var(--saffron), var(--deep-red));
    color: white;
    padding: 0.55rem 1.4rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(192,57,43,0.4);
}

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(192,57,43,0.5);
    }

/* ── HERO ── */
#hero {
    min-height: 100vh;
    background: var(--deep-red);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(192,57,43,0.15) 0%, transparent 70%), radial-gradient(ellipse 50% 80% at 20% 80%, rgba(244,130,31,0.1) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 85% 20%, rgba(212,175,55,0.08) 0%, transparent 50%);
}

.hero-spice-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle 3px at 15% 25%, rgba(212,175,55,0.15) 0%, transparent 100%), radial-gradient(circle 2px at 35% 65%, rgba(244,130,31,0.12) 0%, transparent 100%), radial-gradient(circle 4px at 75% 35%, rgba(192,57,43,0.1) 0%, transparent 100%), radial-gradient(circle 2px at 90% 70%, rgba(212,175,55,0.1) 0%, transparent 100%);
}
/* Decorative spice circles */
.spice-orb {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.spice-orb-1 {
    width: 300px;
    height: 300px;
    right: 5%;
    top: 10%;
    background: radial-gradient(circle at 35% 35%, rgba(192,57,43,0.3), rgba(139,0,0,0.5));
    filter: blur(1px);
    animation-delay: 0s;
}

.spice-orb-2 {
    width: 200px;
    height: 200px;
    right: 20%;
    bottom: 15%;
    background: radial-gradient(circle at 40% 40%, rgba(244,130,31,0.25), rgba(192,57,43,0.3));
    filter: blur(2px);
    animation-delay: 2s;
}

.spice-orb-3 {
    width: 150px;
    height: 150px;
    left: 5%;
    top: 30%;
    background: radial-gradient(circle at 40% 40%, rgba(212,175,55,0.15), transparent);
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    color: var(--gold-light);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease both;
}

    .hero-badge::before {
        content: '✦';
        color: var(--gold);
    }

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease 0.1s both;
}

    .hero-title .accent {
        color: var(--saffron);
        font-style: italic;
    }

.hero-subtitle-hindi {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-desc {
    color: rgba(255,255,255,0.65);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 520px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--saffron), var(--deep-red));
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 32px rgba(192,57,43,0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 40px rgba(192,57,43,0.5);
    }

.btn-outline {
    background: transparent;
    color: var(--gold-light);
    padding: 0.9rem 2rem;
    border-radius: 4px;
    border: 1.5px solid rgba(212,175,55,0.5);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-outline:hover {
        background: rgba(212,175,55,0.1);
        border-color: var(--gold);
    }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-stat {
    text-align: center;
    padding: 1rem;
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease 0.3s both;
}

.hero-product-showcase {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.product-card-hero {
    background: linear-gradient( 135deg, #8B0000 50%, #8B0000 25%, #8B0000 25%);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}

.product-emoji-ring {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spice-pod {
    background: linear-gradient(135deg, rgba(192,57,43,0.15), rgba(244,130,31,0.1));
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 12px;
    padding: 1rem 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

    .spice-pod:hover {
        background: linear-gradient(135deg, rgba(192,57,43,0.3), rgba(244,130,31,0.2));
        border-color: rgba(212,175,55,0.4);
        transform: translateY(-4px);
    }

    .spice-pod .pod-icon {
        font-size: 1.8rem;
        margin-bottom: 4px;
    }

    .spice-pod .pod-name {
        font-size: 0.68rem;
        color: rgba(255,255,255,0.6);
        font-weight: 600;
        letter-spacing: 0.04em;
    }

.hero-logo-center {
    width: 100px;
    height: 100px;
    margin: 0 auto 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero-logo-center img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

@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);
    }
}

/* ── MARQUEE STRIP ── */
.marquee-strip {
    background: linear-gradient(90deg, var(--crimson), var(--deep-red), var(--saffron), var(--deep-red), var(--crimson));
    padding: 0.7rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

.marquee-item {
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .marquee-item::after {
        content: '✦';
        color: var(--gold-light);
    }

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── SECTIONS ── */
section {
    padding: 6rem 2rem;
}

.section-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .section-label::before {
        content: '';
        display: block;
        width: 24px;
        height: 1.5px;
        background: var(--saffron);
    }

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

    .section-title .italic {
        font-style: italic;
        color: var(--deep-red);
    }

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 3rem;
}

/* ── ABOUT ── */
#about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-wrap {
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(212,175,55,0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .about-img-wrap::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 30% 30%, rgba(244,130,31,0.08), transparent 60%);
    }

.about-big-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.about-tag {
    position: absolute;
    background: linear-gradient(135deg, var(--saffron), var(--deep-red));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
}

.about-tag-1 {
    top: 1rem;
    right: 1rem;
}

.about-tag-2 {
    bottom: 1rem;
    left: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    padding: 1.2rem;
    border: 1px solid rgba(244,130,31,0.15);
    border-radius: 10px;
    background: var(--cream);
    transition: all 0.3s;
}

    .about-feature:hover {
        border-color: rgba(244,130,31,0.4);
        transform: translateY(-2px);
    }

.about-feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.about-feature-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.about-feature-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ── PRODUCTS ── */
#products {
    background: var(--cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(244,130,31,0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 32px 64px rgba(192,57,43,0.15);
        border-color: rgba(244,130,31,0.3);
    }

.product-card-header {
    height: 220px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-bg {
    position: absolute;
    inset: 0;
}

.pc-sabji .product-card-bg {
    background: linear-gradient(135deg, #FF6B35, #D4380D, #8B1A00);
}

.pc-paneer .product-card-bg {
    background: linear-gradient(135deg, #FF9500, #E67E22, #A04000);
}

.pc-chicken .product-card-bg {
    background: linear-gradient(135deg, #C0392B, #922B21, #641E16);
}

.pc-garam .product-card-bg {
    background: linear-gradient(135deg, #8B4513, #A0522D, #6B2D00);
}

.pc-kitchen .product-card-bg {
    background: linear-gradient(135deg, #D4AF37, #B8860B, #8B6914);
}

.product-icon {
    font-size: 4rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    color: white;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
}

.product-card-body {
    padding: 1.5rem;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.product-hindi {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-style: italic;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-sizes {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.product-size {
    background: var(--cream);
    border: 1px solid rgba(244,130,31,0.2);
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-mid);
}

.product-cta {
    width: 100%;
    padding: 0.65rem;
    border-radius: 8px;
    border: 1.5px solid rgba(192,57,43,0.3);
    background: transparent;
    color: var(--deep-red);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.03em;
}

    .product-cta:hover {
        background: var(--deep-red);
        color: white;
    }

/* ── PROCESS ── */
#process {
    background: var(--dark-bg);
}

    #process .section-title {
        color: white;
    }

    #process .section-label {
        color: var(--gold-light);
    }

        #process .section-label::before {
            background: var(--gold-light);
        }

    #process .section-desc {
        color: rgba(255,255,255,0.6);
    }

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    position: relative;
}

    .process-steps::before {
        content: '';
        position: absolute;
        top: 50px;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), rgba(212,175,55,0.3), transparent);
    }

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
    animation: fadeInUp 0.6s ease both;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--saffron), var(--deep-red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(192,57,43,0.4);
}

.step-icon {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.step-title {
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.step-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* ── QUALITY ── */
#quality {
    background: white;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.quality-card {
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(244,130,31,0.1);
    background: var(--cream);
    transition: all 0.3s;
}

    .quality-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(192,57,43,0.1);
    }

.quality-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(244,130,31,0.15), rgba(192,57,43,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(244,130,31,0.2);
}

.quality-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.quality-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ── REVIEWS ── */
#reviews {
    background: var(--cream);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(212,175,55,0.1);
    position: relative;
    transition: all 0.3s;
}

    .review-card:hover {
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        transform: translateY(-4px);
    }

    .review-card::before {
        content: '❝';
        position: absolute;
        top: 1rem;
        right: 1.5rem;
        font-size: 4rem;
        color: rgba(244,130,31,0.08);
        font-family: 'Playfair Display', serif;
        line-height: 1;
    }

.stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), var(--deep-red));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.reviewer-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.reviewer-loc {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* ── WHOLESALE ── */
#wholesale {
    background: linear-gradient(135deg, var(--crimson) 0%, var(--earth) 50%, var(--dark-mid) 100%);
    position: relative;
    overflow: hidden;
}

    #wholesale::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    #wholesale .section-title {
        color: white;
    }

    #wholesale .section-label {
        color: var(--gold-light);
    }

        #wholesale .section-label::before {
            background: var(--gold-light);
        }

    #wholesale .section-desc {
        color: rgba(255,255,255,0.7);
    }

.wholesale-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.wholesale-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wholesale-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.2rem;
    border-radius: 12px;
}

.wb-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.wb-title {
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.wb-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* ── FORM ── */
.form-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(8px);
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

    .form-group label {
        display: block;
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--gold-light);
        margin-bottom: 6px;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .form-group input, .form-group select, .form-group textarea {
        width: 100%;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.15);
        color: white;
        font-family: 'Nunito', sans-serif;
        font-size: 0.9rem;
        transition: border-color 0.3s;
        outline: none;
    }

        .form-group input::placeholder, .form-group textarea::placeholder {
            color: rgba(255,255,255,0.3);
        }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            border-color: rgba(212,175,55,0.5);
        }

        .form-group select option {
            background: var(--dark-bg);
            color: white;
        }

    .form-group textarea {
        resize: vertical;
        min-height: 80px;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-form {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    color: var(--dark-bg);
    font-weight: 800;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.04em;
    margin-top: 0.5rem;
}

    .btn-form:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(212,175,55,0.4);
    }

/* ── CONTACT ── */
#contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem;
    border: 1px solid rgba(244,130,31,0.15);
    border-radius: 12px;
    background: var(--cream);
    transition: all 0.3s;
}

    .contact-item:hover {
        border-color: rgba(244,130,31,0.4);
    }

.ci-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(244,130,31,0.15), rgba(192,57,43,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(244,130,31,0.2);
}

.ci-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.ci-value {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.ci-sub {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 2px;
}

.contact-form-card {
    background: var(--cream);
    border: 1px solid rgba(244,130,31,0.15);
    border-radius: 16px;
    padding: 2.5rem;
}

    .contact-form-card .form-group label {
        color: var(--text-mid);
    }

    .contact-form-card input, .contact-form-card select, .contact-form-card textarea {
        background: white;
        border: 1px solid rgba(244,130,31,0.2);
        color: var(--text-dark);
    }

        .contact-form-card input:focus, .contact-form-card textarea:focus {
            border-color: var(--saffron);
        }

        .contact-form-card input::placeholder, .contact-form-card textarea::placeholder {
            color: rgba(107,58,42,0.4);
        }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(37,211,102,0.4);
    animation: pulse-wa 2s ease-in-out infinite;
    transition: transform 0.3s;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
    }

@keyframes pulse-wa {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(37,211,102,0.4);
    }

    50% {
        box-shadow: 0 8px 48px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1);
    }
}

.whatsapp-label {
    position: absolute;
    right: 70px;
    background: var(--dark-bg);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.whatsapp-float:hover .whatsapp-label {
    opacity: 1;
}

/* ── FOOTER ── */
footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(212,175,55,0.1);
    padding: 4rem 2rem 2rem;
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 8px rgba(244,130,31,0.3));
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

.footer-desc {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}

    .social-btn:hover {
        background: rgba(244,130,31,0.2);
        border-color: var(--saffron);
        color: var(--saffron);
    }

.footer-col-title {
    color: var(--gold-light);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

    .footer-links a {
        color: rgba(255,255,255,0.45);
        font-size: 0.85rem;
        text-decoration: none;
        transition: color 0.3s;
    }

        .footer-links a:hover {
            color: var(--gold-light);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

.footer-cert {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cert-badge {
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.2);
    color: var(--gold-light);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 7rem;
    }

    .hero-visual {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .wholesale-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats {
        grid-template-columns: repeat(3,1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    section {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .hero-stat-num {
        font-size: 1.3rem;
    }
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ── SUCCESS MSG ── */
.success-msg {
    display: none;
    background: rgba(46,125,50,0.15);
    border: 1px solid rgba(46,125,50,0.4);
    color: #81C784;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-top: 1rem;
}
