/* MOMOCHEF PREMIUM DESKTOP STYLESHEET (>768px screens) */

/* Global Reset & Base Variables */
:root {
    --primary: #8B0000;
    --primary-dark: #5B0000;
    --accent: #F5B700;
    --accent-hover: #DDA000;
    --bg-cream: #FAF6F0;
    --bg-white: #FFFDF9;
    --text-dark: #2A1D1D;
    --text-muted: #6B5D5D;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 10px 30px -10px rgba(91, 0, 0, 0.12);
    --shadow-hover: 0 20px 40px -15px rgba(91, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .brand-name {
    font-family: var(--font-primary);
    font-weight: 700;
}

/* Hide Mobile Elements on Desktop */
.mobile-sidebar,
.sidebar-overlay,
.mobile-bottom-nav,
.mobile-sticky-cta,
#hamburger-toggle {
    display: none !important;
}

/* Container Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Button UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-gold {
    background-color: var(--accent);
    color: #000;
}

.btn-gold:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 183, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: #FFF;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: #FFF;
    color: var(--primary);
    border-color: #FFF;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #FFF;
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-white-call {
    background-color: #FFF;
    color: var(--primary);
}

.btn-white-call:hover {
    background-color: #F0F0F0;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: #FFF;
    border: 2px solid #FFF;
}

.btn-outline-white:hover {
    background: #FFF;
    color: var(--primary-dark);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

/* Section Common Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    display: inline-block;
    color: var(--accent);
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2.6rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-header .section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}

.section-header .divider {
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* 1. STICKY GLASSMORPHIC HEADER */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.main-header.scrolled {
    background: rgba(91, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #FFF;
}

.logo-icon {
    font-size: 2.2rem;
    color: var(--accent);
    animation: pulseLogo 3s infinite alternate;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: #FFF;
}

.brand-name span {
    color: var(--accent);
}

.brand-tag {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* 2. FULLSCREEN HERO SLIDER */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
    padding-left: 10%;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    max-width: 650px;
    color: #FFF;
    z-index: 10;
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.3s;
}

.hero-slide.active .slide-content {
    transform: translateY(0);
}

.slide-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 183, 0, 0.2);
    border: 1px solid var(--accent);
    padding: 6px 14px;
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.85rem;
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.slide-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #FFF;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.slide-content .subheadline {
    font-size: 1.5rem;
    color: #FAF6F0;
    margin-bottom: 20px;
    font-weight: 300;
}

.slide-content .wholesale-msg {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--accent);
    padding: 10px 20px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    border-radius: 0 8px 8px 0;
}

.slide-content .moq-info {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.slide-actions {
    display: flex;
    gap: 15px;
}

/* Floating Elements Background */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.float-item {
    position: absolute;
    color: rgba(245, 183, 0, 0.25);
    font-size: 2.5rem;
    animation: floatDecor 8s infinite ease-in-out;
}

.float-item.m1 { top: 15%; left: 80%; animation-delay: 0s; }
.float-item.m2 { top: 40%; left: 75%; animation-delay: 2s; font-size: 3.5rem; }
.float-item.m3 { top: 70%; left: 85%; animation-delay: 4s; }
.float-item.m4 { top: 80%; left: 15%; animation-delay: 1s; }

/* Varieties Ticker */
.varieties-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    z-index: 12;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.ticker-title {
    color: var(--accent);
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.9rem;
    margin-right: 20px;
}

.ticker-wrap {
    overflow: hidden;
    width: 100%;
}

.ticker-items {
    display: flex;
    gap: 40px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.ticker-items span {
    color: #E0E0E0;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticker-items span::after {
    content: '•';
    color: var(--accent);
    margin-left: 30px;
}

/* Slider dots */
.slider-dots {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--accent);
}

/* 3. ABOUT US SECTION */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.about-content h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.feature-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.chk-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.chk-item i {
    color: var(--primary);
}

.about-author-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 0, 0, 0.1);
}

.auth-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.auth-info strong {
    display: block;
    color: var(--primary-dark);
}

.auth-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about-visuals {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.main-about-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.overlay-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(91, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 20px 25px;
    border-radius: 12px;
    color: #FFF;
    display: flex;
    align-items: center;
    gap: 15px;
}

.oc-num {
    font-size: 2.2rem;
    font-family: var(--font-primary);
    font-weight: 800;
    color: var(--accent);
}

.oc-text {
    font-size: 0.9rem;
    font-weight: 600;
}

/* 4. PRODUCT DIRECTORY GRID */
.products-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-cream);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(91,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(139,0,0,0.2);
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .card-image img {
    transform: scale(1.08);
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 50px;
    color: #FFF;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.veg-badge { background: #2e7d32; }
.nonveg-badge { background: #c62828; }
.spicy-badge { background: #e65100; }
.crunch-badge { background: #ef6c00; }
.hot-badge { background: #d84315; }
.mild-badge { background: #ad1457; }

.card-body {
    padding: 25px;
}

.card-body h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.card-body .desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    height: 42px;
    overflow: hidden;
}

.specs {
    list-style: none;
    margin-bottom: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 15px;
}

.specs li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.spec-lbl {
    color: var(--text-muted);
    font-weight: 500;
}

.spec-val {
    color: var(--text-dark);
    font-weight: 700;
}

.card-footer-actions {
    display: flex;
    gap: 10px;
}

.card-footer-actions .btn {
    flex: 1;
}

/* 5. WHY CHOOSE MOMOCHEF (USP Grid) */
.why-choose-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.usp-card {
    background: var(--bg-white);
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.usp-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--accent);
}

.usp-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(139, 0, 0, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.usp-card:hover .usp-icon {
    background: var(--primary);
    color: #FFF;
}

.usp-card h3 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.usp-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* 6. STATS COUNTER SECTION */
.stats-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(rgba(91, 0, 0, 0.9), rgba(139, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1534422298391-e4f8c172dddb?auto=format&fit=crop&q=80&w=1200') no-repeat center/cover;
    color: #FFF;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-box {
    padding: 10px;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.stat-box .counter {
    font-size: 3rem;
    font-family: var(--font-primary);
    font-weight: 800;
    line-height: 1;
}

.stat-box .plus {
    font-size: 2rem;
    font-family: var(--font-primary);
    color: var(--accent);
    font-weight: 800;
}

.stat-box p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-primary);
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

/* 7. CERTIFICATE SHOWCASE */
.certificates-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.certificates-carousel-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.certificates-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: certScrollLeftToRight 35s linear infinite;
}

.certificates-track:hover {
    animation-play-state: paused;
}

.certificates-track .cert-card {
    width: 480px;
    flex-shrink: 0;
}

@keyframes certScrollLeftToRight {
    0% { transform: translateX(calc(-50% - 15px)); }
    100% { transform: translateX(0); }
}

.cert-card {
    background: var(--bg-cream);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    gap: 20px;
    box-shadow: var(--shadow);
    align-items: center;
    border: 1px solid rgba(0,0,0,0.04);
}

.cert-preview {
    width: 140px;
    height: 180px;
    border-radius: 8px;
    background: linear-gradient(135deg, #FFF 0%, #F5F5F5 100%);
    border: 1px dashed rgba(139,0,0,0.3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-placeholder-icon {
    font-size: 3.5rem;
    color: rgba(139, 0, 0, 0.2);
}

.badge-verified {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #2e7d32;
    color: #FFF;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cert-info {
    flex: 1;
}

.cert-info h3 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.cert-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.cert-no {
    display: inline-block;
    background: rgba(139,0,0,0.06);
    color: var(--primary-dark);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: monospace;
    font-weight: bold;
    margin-bottom: 15px;
}

.cert-actions {
    display: flex;
    gap: 10px;
}

/* 8. COMPANY DETAIL BADGE & IDENTITY */
.company-info-section {
    padding: 60px 0;
    background: var(--bg-cream);
}

.info-card-container {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 45px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: center;
    border: 1px solid rgba(91,0,0,0.05);
}

.ver-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
    border: 1px solid #2e7d32;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.info-details-box h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.info-details-box p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-row {
    display: flex;
    font-size: 0.95rem;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.info-row .lbl {
    width: 200px;
    color: var(--text-muted);
    font-weight: 600;
}

.info-row .val {
    flex: 1;
    color: var(--text-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.copy-btn {
    cursor: pointer;
    color: var(--primary);
    transition: var(--transition);
}

.copy-btn:hover {
    color: var(--accent);
    transform: scale(1.15);
}

.info-qr-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    border-left: 1px solid rgba(0,0,0,0.08);
    padding-left: 40px;
}

.qr-wrapper {
    background: #FFF;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.qr-code {
    font-size: 6.5rem;
    color: var(--primary-dark);
}

.qr-caption {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 10px;
}

.verification-badge-large {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(245, 183, 0, 0.1);
    border: 1px solid var(--accent);
    padding: 12px 20px;
    border-radius: 8px;
    text-align: left;
}

.verification-badge-large i {
    font-size: 1.8rem;
    color: var(--accent);
}

.verification-badge-large h4 {
    font-size: 0.95rem;
    color: var(--primary-dark);
}

.verification-badge-large p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

/* 9. BULK ORDER CTA BANNER */
.bulk-order-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 70px 0;
    color: #FFF;
    text-align: center;
}

.cta-banner-content h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.cta-banner-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 35px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* 10. INTERACTIVE BIHAR MAP */
.service-areas-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.map-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.map-visual-container {
    background: #150202;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(139,0,0,0.3);
}

.bihar-svg-map {
    width: 100%;
    height: auto;
}

.map-district {
    cursor: pointer;
    transition: var(--transition);
}

.map-district text {
    font-family: var(--font-primary);
    pointer-events: none;
}

.map-district:hover circle:first-of-type {
    fill: #FFF;
    r: 16px;
}

.map-district.active circle:first-of-type {
    fill: #F5B700;
}

/* Pulse animation for Patna HQ */
.pulse-circle {
    animation: pulseMapNode 2s infinite;
}

@keyframes pulseMapNode {
    0% { r: 12px; opacity: 1; }
    50% { r: 24px; opacity: 0.4; }
    100% { r: 12px; opacity: 1; }
}

.map-details-card {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hub-info-box {
    background: var(--bg-cream);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border-left: 6px solid var(--accent);
}

.hub-info-box h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.hub-info-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.logistics-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lstat {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.lstat .lbl {
    font-weight: 500;
    color: var(--text-muted);
}

.lstat .val {
    font-weight: 700;
    color: var(--text-dark);
}

.statewide-banner {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(139,0,0,0.05);
    border: 1px solid rgba(139,0,0,0.1);
    padding: 15px 25px;
    border-radius: 12px;
}

.statewide-banner i {
    font-size: 2rem;
    color: var(--primary);
}

.statewide-banner h4 {
    font-size: 1rem;
    color: var(--primary-dark);
}

.statewide-banner p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* 11. GOOGLE REVIEW STYLE TESTIMONIALS */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.testimonial-carousel-container {
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: testimonialScroll 40s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.test-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    width: 380px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.03);
}

.test-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    color: var(--accent);
}

.badge-google {
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.badge-google i {
    color: #4285F4;
}

.test-text {
    font-style: italic;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.test-author strong {
    display: block;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.test-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@keyframes testimonialScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-380px * 3 - 90px)); }
}

/* 12. FAQ ACCORDION */
.faq-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-cream);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(91,0,0,0.03);
    transition: var(--transition);
}

.faq-question {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-dark);
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background: var(--primary-dark);
    color: #FFF;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 20px 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
}

.faq-item.active .faq-answer p {
    color: var(--text-dark);
}

/* 13. CONTACT US SPLIT SECTION */
.contact-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
}

.contact-details-panel {
    background: var(--primary-dark);
    color: #FFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-details-panel h3 {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.contact-details-panel p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.c-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.c-info-item {
    display: flex;
    gap: 15px;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: 12px;
}

.c-info-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(8px);
}

.c-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.c-info-item:hover .c-icon {
    background: var(--accent);
    color: #000;
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 5px 15px rgba(245, 183, 0, 0.3);
}

.c-info-item strong {
    font-family: var(--font-primary);
    display: block;
    font-size: 1rem;
    color: #FFF;
}

.c-info-item p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.map-embed-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.map-embed-container:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transform: translateY(-2px);
}

.contact-form-panel {
    background: var(--bg-white);
    padding: 45px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-form-panel h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

.momochef-direct-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.momochef-direct-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.momochef-direct-form label {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.momochef-direct-form input,
.momochef-direct-form select,
.momochef-direct-form textarea {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(91,0,0,0.15);
    background-color: var(--bg-cream);
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
    color: var(--text-dark);
}

.momochef-direct-form input:focus,
.momochef-direct-form select:focus,
.momochef-direct-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background-color: #FFF;
    box-shadow: 0 6px 18px rgba(245, 183, 0, 0.15);
    transform: translateY(-2px);
}

.momo-select-wrap {
    display: flex;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.momo-select-wrap select {
    flex: 1;
}

.momo-live-badge {
    background: var(--accent);
    color: #000;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 12px rgba(245, 183, 0, 0.25);
    animation: badgeFloat 2s infinite alternate;
}

@keyframes badgeFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-4px); }
}

.w-100 {
    width: 100%;
}

/* 14. FOOTER */
.footer-container {
    background: linear-gradient(180deg, #3a0000 0%, #150000 100%);
    color: #FFF;
    padding: 90px 0 35px;
    border-top: 5px solid var(--accent);
    box-shadow: 0 -15px 40px rgba(245, 183, 0, 0.07);
    position: relative;
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-col h3 {
    font-size: 1.15rem;
    color: var(--accent);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 2px;
    background-color: var(--accent);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-block;
    position: relative;
}

.footer-col ul li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 1.5px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent);
    transform: translateX(8px);
}

.footer-col ul li a:hover::after {
    width: 100%;
}

.footer-about .tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 18px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-links a:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}

.social-links a.facebook-hover:hover { background: #3b5998; border-color: #3b5998; color: #fff; }
.social-links a.instagram-hover:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); border-color: transparent; color: #fff; }
.social-links a.whatsapp-hover:hover { background: #25D366; border-color: #25D366; color: #fff; }
.social-links a.youtube-hover:hover { background: #ff0000; border-color: #ff0000; color: #fff; }
.social-links a.linkedin-hover:hover { background: #0077b5; border-color: #0077b5; color: #fff; }

.footer-contact p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.footer-contact p:hover {
    transform: translateX(4px);
    color: #FFF;
}

.footer-contact p i {
    color: var(--accent);
    font-size: 1rem;
}

.fssai-footer-badge {
    margin-top: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 183, 0, 0.05);
    padding: 10px 18px;
    border-radius: 6px;
    border: 1px solid rgba(245, 183, 0, 0.2);
    font-size: 0.78rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: goldPulse 3s infinite alternate;
}

@keyframes goldPulse {
    0% { box-shadow: 0 0 5px rgba(245, 183, 0, 0.1); border-color: rgba(245, 183, 0, 0.2); }
    100% { box-shadow: 0 0 18px rgba(245, 183, 0, 0.35); border-color: rgba(245, 183, 0, 0.6); }
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.seo-caption {
    font-size: 0.75rem;
}

/* 15. ULTRA-MODERN GLASSMORPHISM POPUP */
.lead-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 2, 2, 0.6);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lead-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.lead-popup-container {
    width: 95%;
    max-width: 700px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lead-popup-overlay.show .lead-popup-container {
    transform: scale(1);
}

.close-popup-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 9999;
}

.close-popup-btn:hover {
    background: #FFF;
    color: #000;
    transform: scale(1.1);
}

.popup-glass-card {
    background: rgba(139, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 30px 25px;
    color: #FFF;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.popup-header {
    text-align: center;
    margin-bottom: 25px;
}

.decor-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.popup-header h2 {
    font-size: 1.8rem;
    color: #FFF;
    margin-bottom: 6px;
}

.popup-header p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

.popup-form .popup-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 12px;
}

.popup-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.popup-field label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.popup-form input,
.popup-form select,
.popup-form textarea {
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: #FFF;
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    transition: var(--transition);
}

.popup-form input::placeholder,
.popup-form textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.popup-form input:focus,
.popup-form select:focus,
.popup-form textarea:focus {
    outline: none;
    background: rgba(255,255,255,0.25);
    border-color: var(--accent);
}

.popup-form select option {
    background: var(--primary-dark);
    color: #FFF;
}

.popup-actions {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

/* 16. CERTIFICATE ZOOM MODAL */
.cert-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cert-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cert-modal-container {
    width: 90%;
    max-width: 500px;
    position: relative;
    background: #FFF;
    border-radius: 12px;
    overflow: hidden;
}

.close-cert-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.5);
    color: #FFF;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.cert-modal-body {
    padding: 40px;
    text-align: center;
}

.cert-mock-image {
    padding: 60px 20px;
    border: 3px double #8B0000;
    background: #FFFDF9;
    border-radius: 8px;
    position: relative;
    margin-bottom: 20px;
}

.modal-large-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.cert-mock-image h2 {
    font-size: 1.4rem;
    color: var(--primary-dark);
}

.cert-mock-image p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cert-stamp {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: rgba(139,0,0,0.2);
    font-weight: 800;
    font-size: 0.8rem;
    border: 2px solid rgba(139,0,0,0.2);
    padding: 3px 6px;
    transform: rotate(-15deg);
}

.cert-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 15px;
}

#modal-cert-num {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* 17. FLOATING ACTIONS CONTAINER FOR DESKTOP (BOTTOM RIGHT) */
.floating-cta-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.f-whatsapp { background-color: #25D366; }
.f-call { background-color: var(--primary); }
.f-enquiry { background-color: var(--accent); color: #000; }

.floating-btn:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Success Animation Toast */
.success-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #2e7d32;
    color: #FFF;
    padding: 15px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 3000;
    font-family: var(--font-primary);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInToast 0.5s ease-out forwards;
}

@keyframes slideInToast {
    from { transform: translateX(120%); }
    to { transform: translateX(0); }
}

/* ANIMATIONS */
@keyframes floatDecor {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes pulseLogo {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}
