﻿html, body {
    overflow-x: hidden;
}


/* hero nav*/
.quick-links-bar {
    background: #1A1A1A; /* Matching your dark professional theme */
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 70px; /* Adjust based on your header height */
    z-index: 10;
}

.ql-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 20px;
    overflow-x: auto; /* Enable horizontal scroll for mobile */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.ql-container::-webkit-scrollbar { display: none; } /* Hide scrollbar for Chrome/Safari */

.ql-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.ql-item i {
    color: #F4C430; /* Your gold accent color */
    font-size: 1.2rem;
}

.ql-item:hover {
    background: #F4C430;
    color: #1A1A1A;
    border-color: #F4C430;
}

.ql-item:hover i { color: #1A1A1A; }

@media (max-width: 768px) {
    .quick-links-bar { top: 60px; padding: 12px 0; }
    .ql-container { justify-content: flex-start; }
    .ql-item { padding: 8px 16px; font-size: 0.8rem; }
}


/* hero */
:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

.video-hero {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 820px;
    display: flex;
    align-items: center; 
    justify-content: center;
    overflow: hidden;
    background: #000;
    font-family: var(--font-body);
}

.hero-video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.95) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 900px;
    padding: 20px; 
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Badge Styling */
.hero-badge-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px; /* Mobile Gap */
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-badge i { color: #F4C430; }

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 9vw, 4rem);
    line-height: 1.15;
    margin-bottom: 15px;
    font-weight: 900;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.highlight-text { color: #F4C430; display: block; margin-top: 5px; }

.hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.2rem);
    max-width: 480px;
    margin: 0 auto 25px;
    line-height: 1.5;
    opacity: 0.9;
}

.hero-seo-glass {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 15px;
    width: 100%;
    max-width: 600px;
    margin-bottom: 25px;
}

.hero-seo-glass p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
}

.btn {
    width: 90%;
    max-width: 320px;
    height: 60px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s ease;
}

.btn:active { transform: scale(0.96); }
.btn-primary { background: #F4C430; color: #1a1a1a; }
.btn-wa-green { background: #22C55E; color: white; }

.scroll-indicator {
    position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%); z-index: 4;
}

.mouse {
    width: 18px; height: 30px; border: 2px solid rgba(255,255,255,0.3); border-radius: 15px; position: relative;
}

.mouse::before {
    content: ""; width: 3px; height: 6px; background: #F4C430;
    position: absolute; left: 50%; transform: translateX(-50%);
    top: 6px; border-radius: 2px; animation: scrollDown 2s infinite;
}

/* DESKTOP REFINEMENT */
@media (min-width: 768px) {
    .video-hero {
        align-items: flex-start; 
    }
    .hero-content { 
        padding-top: 130px; 
    }
    /* Gap reduction between badge and h1 */
    .hero-badge-container {
        margin-bottom: 8px; 
    }
    .hero-title {
        line-height: 1.1; /* Tighter heading for desktop */
    }
    .hero-buttons { flex-direction: row; justify-content: center; gap: 20px; }
    .btn { height: 65px; width: auto; min-width: 280px; }
    .hero-seo-glass { padding: 20px 25px; margin-bottom: 40px; }
}

@media (max-height: 700px) {
    .video-hero { min-height: 700px; }
    .hero-content { padding-top: 60px; }
    .scroll-indicator { display: none; }
}

@keyframes scrollDown {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 12px); opacity: 0; }
}

/* LIGHT SEO SECTION STYLES */
.seo-features {
    background: #fff;
    padding: 80px 20px;
}

/* Dynamic Bento Grid */
.seo-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 24px;
    margin-bottom: 50px;
}

.bento-main {
    grid-row: span 2; /* Spans height of two cards */
    display: flex;
    flex-direction: column;
}

.seo-card {
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid #f2f2f2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.card-image-wrapper {
    position: relative;
    height: 280px; /* Taller for main card */
}

.card-image-wrapper.compact {
    height: 180px; /* Shorter for side cards */
}

.card-image-wrapper img {
    width: 100%; height: 100%; object-fit: cover;
}

/* Live Status Badge */
.status-badge {
    position: absolute; top: 20px; left: 20px;
    background: rgba(255,255,255,0.9);
    padding: 6px 14px; border-radius: 50px;
    font-size: 0.75rem; font-weight: 800; color: #1A1A1A;
    display: flex; align-items: center; gap: 8px; z-index: 2;
}

.dot {
    width: 8px; height: 8px; background: #25D366;
    border-radius: 50%; display: inline-block;
    animation: blink 1.5s infinite;
}

@keyframes blink { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }

.card-content { padding: 25px; }

.card-label {
    color: #D4A017; font-size: 0.7rem; font-weight: 800;
    text-transform: uppercase; margin-bottom: 8px;
}

.card-cta {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 15px; color: #1A1A1A; font-weight: 800;
    text-decoration: none; font-size: 0.9rem;
    border-bottom: 2px solid #D4A017; padding-bottom: 2px;
}

/* Hover State */
.seo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 160, 23, 0.12);
    border-color: #D4A017;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .seo-bento-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
    .bento-main { grid-row: span 1; }
    .card-image-wrapper { height: 200px !important; }
}

/* Mithora Servcies */
.mithora-services {
    padding: 60px 20px;
    background: #fff;
}

.service-header {
    text-align: center;
    margin-bottom: 40px;
}

.gold-tag {
    color: #D4A017;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Makes the Party Order card span two rows */
.service-card.tall {
    grid-row: span 2;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.card-info h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.card-info p {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.order-link {
    color: #D4A017;
    font-weight: 700;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Hover Effect */
.service-card:hover img {
    transform: scale(1.1);
}

.service-card:hover {
    box-shadow: 0 15px 30px rgba(212, 160, 23, 0.2);
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px; /* Slightly smaller for mobile */
    }
    
    .card-info h3 { font-size: 0.95rem; }
    .card-info p { display: none; } /* Hide sub-text on mobile to keep it clean */
}

	/* ============================================
   TASTEBOX - MODERN LUNCH BANNER
   ============================================ */
.tastebox-exact {
    background: var(--dark-brown); /* Dark background makes food pop */
    border-radius: 24px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr; /* Balanced 3-column layout */
    align-items: center;
    gap: 30px;
    margin: 40px auto;
    max-width: 1200px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

/* Background Decoration */
.tastebox-exact::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary-gold);
    filter: blur(100px);
    opacity: 0.2;
}

/* Left Content: Title */
.tb-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 10px;
    color: var(--primary-gold);
}

.tb-left .sub {
    font-size: 1.1rem;
    opacity: 0.8;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Middle Content: The Image Fan */
.tb-images {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 300px;
}

.img-card {
    position: absolute;
    width: 220px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--white);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Fan Effect */
.img-card:nth-child(1) { transform: translateX(-60px) rotate(-10deg); z-index: 1; }
.img-card:nth-child(3) { transform: translateX(60px) rotate(10deg); z-index: 1; }
.img-card.active { 
    transform: scale(1.1); 
    z-index: 2; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Content: CTA */
.tb-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.offer {
    background: var(--primary-orange);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: inline-block;
}

.tb-right h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.tb-right .desc {
    opacity: 0.7;
    margin-bottom: 25px;
}

.cta-btn {
    background: var(--primary-gold);
    color: var(--dark-brown);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.cta-btn:hover {
    background: var(--white);
    transform: translateY(-5px);
}

/* ============================================
   RESPONSIVE FIXES
   ============================================ */
@media (max-width: 1024px) {
    .tastebox-exact {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px;
    }
    .tb-right { align-items: center; text-align: center; }
    .tb-left h2 { font-size: 2rem; }
    .tb-images { height: 350px; margin: 20px 0; }
}

@media (max-width: 480px) {
    .img-card { width: 160px; height: 220px; }
    .img-card:nth-child(1) { transform: translateX(-40px) rotate(-5deg); }
    .img-card:nth-child(3) { transform: translateX(40px) rotate(5deg); }
}


/* Catgory */
.categories-section {
    padding: 60px 20px;
    background: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.cat-heading {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
}

/* Fix for Tabs hiding/cut off */
.cat-tabs-wrapper {
    position: relative;
    margin-bottom: 30px;
    /* This creates a fade effect on the edges so user knows to scroll */
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.cat-tabs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 20px;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide for Firefox */
    -ms-overflow-style: none; /* Hide for IE */
}

.cat-tabs::-webkit-scrollbar { display: none; } /* Hide for Chrome/Safari */

.cat-tab {
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid #E5E7EB;
    background: #fff;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.3s;
    color: #4B5563;
}

.cat-tab.active {
    background: #1A1A1A;
    color: #fff;
    border-color: #1A1A1A;
}

/* Single Card Layout */
.cat-display-box {
    max-width: 450px;
    margin: 0 auto;
}

.cat-card {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #F3F4F6;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.cat-card-img-wrapper {
    position: relative;
    height: 220px;
}

.cat-card-img-wrapper img {
    width: 100%; height: 100%; object-fit: cover;
}

.cat-label {
    position: absolute; top: 15px; left: 15px;
    background: #D4A017; color: #fff;
    padding: 5px 12px; border-radius: 50px;
    font-size: 0.7rem; font-weight: 800;
}

.cat-card-content { padding: 25px; text-align: left; }
.cat-card-content h3 { font-size: 1.3rem; margin-bottom: 10px; }
.cat-card-content p { font-size: 0.95rem; color: #666; line-height: 1.6; margin-bottom: 20px; }

.cat-link {
    color: #D4A017; font-weight: 800; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
}

/* TIFFIN SECTION - NAMESPACED */
.tif-split-wrapper {
    padding: 60px 20px;
    background: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow: hidden;
}

.tif-custom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Header/Text Styling */
.tif-top-tag {
    background: #FFF9E6;
    color: #B8860B;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.tif-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 800;
    margin: 15px 0;
    color: #1A1A1A;
}

.tif-section-desc {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Plan Cards Stack */
.tif-plan-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.tif-plan-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    border: 1px solid #F0F0F0;
    border-radius: 18px;
    position: relative;
    background: #fff;
}

.tif-featured-plan {
    border-color: #F4C430;
    background: #FFFDF8;
    box-shadow: 0 4px 15px rgba(244, 196, 48, 0.1);
}

.tif-value-badge {
    position: absolute;
    top: -10px;
    right: 25px;
    background: #F4C430;
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 6px;
}

.tif-plan-info h4 { font-size: 1.1rem; font-weight: 800; color: #1A1A1A; margin: 0; }
.tif-plan-info p { font-size: 0.85rem; color: #777; margin: 4px 0 0; }
.tif-plan-price { font-size: 1.3rem; font-weight: 900; color: #1A1A1A; }

/* Visuals */
.tif-image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 300px;
    width: 100%;
}

.tif-main-img { width: 100%; height: 100%; object-fit: cover; }

.tif-rating-floating {
    position: absolute; top: 20px; left: 20px;
    background: white; padding: 8px 15px; border-radius: 50px;
    display: flex; align-items: center; gap: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.tif-rating-floating i { color: #F4C430; font-size: 0.9rem; }
.tif-rating-floating span { font-size: 0.75rem; font-weight: 700; color: #1A1A1A; }

.tif-delivery-tag {
    position: absolute; bottom: 20px; right: 20px;
    background: rgba(26, 26, 26, 0.85); color: #fff;
    padding: 6px 14px; border-radius: 50px; font-size: 0.7rem; font-weight: 600;
    backdrop-filter: blur(4px);
}

/* Action Area */
.tif-action-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tif-primary-btn {
    background: #22C55E;
    color: #fff;
    padding: 18px 40px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tif-trust-labels { display: flex; flex-direction: column; gap: 8px; }
.tif-trust-labels span {
    font-size: 0.85rem; font-weight: 600; color: #555;
    display: flex; align-items: center; gap: 8px;
}
.tif-trust-labels i { color: #D4A017; font-size: 1.1rem; }

/* DESKTOP REFINEMENT */
@media (min-width: 992px) {
    .tif-split-wrapper { padding: 100px 20px; }
    
    .tif-custom-container {
        display: grid;
        /* Image gets 40% (0.8fr), Text gets 60% (1.2fr) */
        grid-template-columns: 0.8fr 1.2fr; 
        gap: 80px;
        align-items: center;
    }

    .tif-image-card {
        height: 520px; /* Taller but contained width */
    }

    .tif-content-column {
        padding-right: 40px; /* Prevents text from hitting edge */
    }

    .tif-action-area {
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }

    .tif-primary-btn { width: auto; padding: 18px 50px; }
    
    .tif-trust-labels { gap: 12px; }
}
/* catering */
:root {
    --primary: #F4C430;
    --dark: #1A1A1A;
    --light-bg: #FCFAF7;
    --text-muted: #666;
}

.catering-parent-section {
    padding: 80px 20px;
    background-color: var(--light-bg);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark);
}

.container { max-width: 1140px; margin: 0 auto; }

/* Header */
.section-intro { text-align: center; margin-bottom: 50px; }
.badge-gold { 
    background: #FFF9E6; color: #B8860B; 
    padding: 6px 15px; border-radius: 50px; 
    font-size: 0.75rem; font-weight: 800; letter-spacing: 1px;
}
.main-title { 
    font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 5vw, 3rem); 
    font-weight: 900; margin: 15px 0 10px; 
}
.sub-title { color: var(--text-muted); font-size: 1.1rem; }

/* Grid & Cards */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.menu-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 25px;
    border: 1px solid #F0E6D2;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }

.menu-card.featured {
    border: 2px solid var(--primary);
    background: #FFFDF8;
}

.best-value {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: #000;
    padding: 5px 20px; border-radius: 50px; font-weight: 800; font-size: 0.75rem;
}

.card-tag { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; color: #22C55E; margin-bottom: 10px; }
.card-tag.gold { color: #D4A017; }
.card-tag.purple { color: #A855F7; }

.price-box { margin: 20px 0; }
.price-box .amount { font-size: 2.5rem; font-weight: 900; }
.price-box .currency { font-size: 1.2rem; font-weight: 800; vertical-align: top; margin-right: 2px; }
.price-box .per { color: var(--text-muted); font-size: 0.9rem; }

.item-list { list-style: none; padding: 0; margin-bottom: 30px; min-height: 200px; }
.item-list li { margin-bottom: 12px; font-size: 0.95rem; display: flex; align-items: center; gap: 10px; color: #444; }
.item-list i { color: var(--primary); font-size: 1.1rem; }

.card-btn {
    display: block; text-align: center; background: #f4f4f4; color: #000;
    padding: 15px; border-radius: 12px; text-decoration: none; font-weight: 800; transition: 0.3s;
}
.gold-btn { background: var(--primary); }
.card-btn:hover { opacity: 0.9; }

/* Specialty Dal Baati Section */
.specialty-card {
    background: #fff;
    border-radius: 30px;
    display: flex;
    overflow: hidden;
    margin-bottom: 50px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.specialty-content { padding: 50px; width: 60%; }
.special-label { color: var(--primary); font-weight: 800; text-transform: uppercase; font-size: 0.8rem; }
.specialty-content h3 { font-family: 'Outfit', sans-serif; font-size: 2rem; margin: 10px 0; }
.special-meta { display: flex; gap: 20px; margin: 20px 0 30px; }
.special-meta span { font-size: 0.85rem; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.outline-btn { 
    display: inline-block; padding: 12px 30px; border: 2px solid var(--primary); 
    border-radius: 50px; text-decoration: none; color: #000; font-weight: 800; 
}

.specialty-image { width: 40%; }
.specialty-image img { width: 100%; height: 100%; object-fit: cover; }

/* Estimator Banner */
.estimator-banner {
    background: #1A1A1A; color: #fff;
    padding: 30px 40px; border-radius: 20px;
    display: flex; justify-content: space-between; align-items: center;
}
.est-text h4 { font-family: 'Outfit', sans-serif; font-size: 1.4rem; margin-bottom: 5px; }
.est-text p { opacity: 0.7; font-size: 0.9rem; }
.est-btn { 
    background: var(--primary); color: #000; 
    padding: 15px 30px; border-radius: 12px; 
    text-decoration: none; font-weight: 800; 
    display: flex; align-items: center; gap: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .specialty-card { flex-direction: column; }
    .specialty-content, .specialty-image { width: 100%; }
    .specialty-image { height: 250px; order: 1; }
    .specialty-content { order: 2; padding: 30px; text-align: center; }
    .special-meta { justify-content: center; }
    .estimator-banner { flex-direction: column; text-align: center; gap: 20px; }
}

@media (max-width: 480px) {
    .package-grid { grid-template-columns: 1fr; }
    .main-title { font-size: 1.8rem; }
}
/* SIGNATURE CARD STYLING */
.signature-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    max-width: 1100px;
    margin: 40px auto;
    border: 1px solid #f0f0f0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    transition: transform 0.4s ease;
}

.signature-card:hover {
    transform: translateY(-5px);
}

/* Content Side */
.signature-content {
    flex: 1;
    padding: 60px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.signature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFF9E6;
    color: #D4A017;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.pulse-icon {
    width: 8px;
    height: 8px;
    background: #D4A017;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(212, 160, 23, 0.4);
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0px rgba(212, 160, 23, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(212, 160, 23, 0); }
    100% { box-shadow: 0 0 0 0px rgba(212, 160, 23, 0); }
}

.signature-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.signature-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.signature-features {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a1a1a;
}

.feature-item i {
    font-size: 1.2rem;
    color: #D4A017;
}

.primary-signature-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1a1a1a;
    color: #fff;
    padding: 18px 35px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
}

.primary-signature-btn:hover {
    background: #333;
    transform: scale(1.02);
}

/* Image Side */
.signature-image-wrapper {
    flex: 1;
    height: 100%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.signature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.signature-card:hover .signature-img {
    transform: scale(1.05);
}

.image-overlay-card {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.overlay-price {
    font-weight: 900;
    color: #1a1a1a;
    font-size: 1.1rem;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .signature-card {
        flex-direction: column;
        margin: 20px;
        border-radius: 24px;
    }
    
    .signature-content {
        padding: 40px 30px;
        order: 2;
    }
    
    .signature-image-wrapper {
        width: 100%;
        min-height: 300px;
        order: 1;
    }
    
    .signature-title {
        font-size: 1.8rem;
    }
    
    .signature-features {
        flex-direction: column;
        gap: 15px;
    }
}

/* SNACKS SECTION STYLING */
.snacks-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #ffffff;
}

.snacks-heading {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.snacks-subtext {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Grid Layout */
.snacks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Card Styling */
.snacks-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #F0F0F0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.snacks-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.snacks-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.snacks-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.snacks-card:hover .snacks-img-wrapper img {
    transform: scale(1.08);
}

.snacks-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #1A1A1A;
    backdrop-filter: blur(4px);
}

.snacks-card-body {
    padding: 25px;
}

.snacks-card-body h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.snacks-card-body p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 25px;
    height: 4.5em; /* Maintains uniform card height */
    overflow: hidden;
}

/* Links & Icons */
.snacks-link {
    font-weight: 800;
    color: #D4A017; /* Theme Accent */
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.snacks-link:hover {
    gap: 12px;
    color: #B8860B;
}

.snacks-delivery-note {
    text-align: center;
    background: #F9F9F9;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    margin: 0 auto;
    width: fit-content;
    font-size: 0.95rem;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.snacks-delivery-note i { color: #22C55E; font-size: 1.2rem; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .snacks-section { padding: 60px 15px; }
    .snacks-grid { grid-template-columns: 1fr; }
    .snacks-card-body p { height: auto; }
}

/* VRAT SECTION - NAMESPACED */
.vrat-split-wrapper {
    padding: 80px 20px;
    background: #FFF9F2; /* Traditional Saffron/Cream background */
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow: hidden;
}

.vrat-custom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Header & Text */
.vrat-top-tag {
    background: #FFEDD5;
    color: #C2410C;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.vrat-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 800;
    margin: 15px 0;
    color: #3E2723;
}

.vrat-section-desc {
    font-size: 1.05rem;
    color: #5D4037;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Plan Cards Stack */
.vrat-plan-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.vrat-plan-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    border: 1px solid #FFEDD5;
    border-radius: 18px;
    position: relative;
    background: #fff;
}

.vrat-featured-plan {
    border-color: #FF9933;
    background: #FFFDFB;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.1);
}

.vrat-value-badge {
    position: absolute;
    top: -10px;
    right: 25px;
    background: #FF9933;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 6px;
}

.vrat-plan-info h4 { font-size: 1.1rem; font-weight: 800; color: #3E2723; margin: 0; }
.vrat-plan-info p { font-size: 0.85rem; color: #8D6E63; margin: 4px 0 0; }
.vrat-plan-price { font-size: 1.3rem; font-weight: 900; color: #C2410C; }

/* Image Styling */
.vrat-image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 320px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.vrat-main-img { width: 100%; height: 100%; object-fit: cover; }

.vrat-rating-floating {
    position: absolute; top: 20px; left: 20px;
    background: white; padding: 8px 15px; border-radius: 50px;
    display: flex; align-items: center; gap: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.vrat-rating-floating i { color: #FF9933; font-size: 0.9rem; }
.vrat-rating-floating span { font-size: 0.75rem; font-weight: 700; color: #3E2723; }

.vrat-special-tag {
    position: absolute; bottom: 20px; right: 20px;
    background: rgba(194, 65, 12, 0.9); color: #fff;
    padding: 6px 14px; border-radius: 50px; font-size: 0.7rem; font-weight: 600;
    backdrop-filter: blur(4px);
}

/* Action Area */
.vrat-action-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vrat-primary-btn {
    background: #FF9933;
    color: #fff;
    padding: 18px 40px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.vrat-primary-btn:hover { background: #E67E22; transform: translateY(-2px); }

.vrat-trust-labels { display: flex; flex-direction: column; gap: 8px; }
.vrat-trust-labels span {
    font-size: 0.85rem; font-weight: 600; color: #5D4037;
    display: flex; align-items: center; gap: 8px;
}
.vrat-trust-labels i { color: #22C55E; font-size: 1.1rem; }

/* DESKTOP REFINEMENT */
@media (min-width: 992px) {
    .vrat-split-wrapper { padding: 100px 20px; }
    
    .vrat-custom-container {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr; /* Text gets 60%, Image gets 40% */
        gap: 80px;
        align-items: center;
    }

    .vrat-image-card { height: 520px; }
    .vrat-content-column { padding-right: 40px; }
    .vrat-action-area { flex-direction: row; align-items: center; gap: 30px; }
    .vrat-primary-btn { width: auto; padding: 18px 50px; }
    .vrat-trust-labels { gap: 12px; text-align: left; }
}

/* Namespaced CSS to prevent clashing */
.msig-specialty-section {
    padding: 100px 20px;
    background: #FFFBF5;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.msig-container {
    max-width: 1200px;
    margin: 0 auto;
}

.msig-header {
    text-align: center;
    margin-bottom: 60px;
}

.msig-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.msig-subtitle {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.msig-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.msig-card {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #F0EAD6;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.msig-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(212, 160, 23, 0.1);
}

/* IMAGE FIX: Aspect Ratio Lock */
.msig-image-box {
    width: 100%;
    aspect-ratio: 16 / 11; /* Forces a consistent "Landscape" shape */
    position: relative;
    overflow: hidden;
    background: #eee;
}

.msig-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills the box without gaps */
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.msig-card:hover .msig-image-box img {
    transform: scale(1.1);
}

.msig-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    color: #1A1A1A;
    padding: 7px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.msig-body {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.msig-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.msig-body p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.msig-meta {
    font-size: 0.85rem;
    color: #D4A017;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FFF9E6;
    padding: 8px 15px;
    border-radius: 12px;
    width: fit-content;
}

.msig-link {
    font-weight: 800;
    color: #1A1A1A;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.msig-link:hover {
    color: #D4A017;
    transform: translateX(5px);
}

.msig-footer {
    text-align: center;
    margin-top: 60px;
    color: #999;
    font-weight: 600;
    border-top: 1px dashed #ddd;
    padding-top: 30px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .msig-specialty-section { padding: 60px 15px; }
    .msig-image-box { aspect-ratio: 4 / 3; } /* Slightly taller on mobile */
}


/* LIVE OFFERS SECTION - NO IMAGES VERSION */
.live-offers-section {
    padding: 80px 20px;
    background: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.lo-container {
    max-width: 1000px; /* Slimmer container for text-only focus */
    margin: 0 auto;
}

.lo-header {
    text-align: center;
    margin-bottom: 50px;
}

.lo-badge {
    background: #FF4D4D;
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 15px;
    animation: lo-pulse 2s infinite;
}

@keyframes lo-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 77, 77, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
}

.lo-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    color: #1A1A1A;
    margin: 0;
}

.lo-sub {
    color: #666;
    margin-top: 10px;
    font-size: 1.1rem;
}

/* --- COUPON CARD STYLING --- */
.lo-offer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.lo-card {
    background: #FFF9E6; /* Light Gold */
    border: 2px dashed #D4A017;
    border-radius: 28px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Side Notch/Punch-hole Effect */
.lo-card::before, .lo-card::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid #f0f0f0;
}
.lo-card::before { left: -14px; }
.lo-card::after { right: -14px; }

.lo-card:hover {
    transform: translateY(-10px);
    background: #FFF2CC;
    border-color: #1A1A1A;
    box-shadow: 0 20px 40px rgba(212, 160, 23, 0.1);
}

.lo-tag {
    background: rgba(212, 160, 23, 0.15);
    color: #B8860B;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.lo-amount {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1A1A1A;
    margin-bottom: 5px;
}

.lo-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #D4A017;
    margin: 0 0 10px 0;
    background: #fff;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 8px;
    border: 1px solid #F0F0F0;
}

.lo-card p {
    font-size: 0.95rem;
    color: #6B7280;
    font-weight: 500;
    margin: 0;
}

.lo-copy-hint {
    margin-top: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #1A1A1A;
    opacity: 0.4;
}

/* --- FOOTER STYLING --- */
.lo-footer {
    text-align: center;
}

.lo-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1A1A1A;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lo-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Mobile Fixes */
@media (max-width: 600px) {
    .lo-card { padding: 35px 20px; }
    .lo-card:hover { transform: none; }
}

/* YOUTUBE SECTION STYLING */
.yt-section {
    padding: 80px 20px;
    background: #fcfcfc;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

.yt-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* Handwritten subheader */
.yt-handwritten {
    font-family: 'Dancing Script', cursive; /* Ensure you have this font linked */
    font-size: 1.8rem;
    color: #D4A017;
    margin-bottom: 20px;
}

/* Glassmorphism Card */
.yt-glass-card {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 32px;
    padding: 50px 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

.yt-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.yt-subtext {
    color: #6B7280;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Responsive Video Aspect Ratio (16:9) */
.yt-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.yt-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Bottom Section */
.yt-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid #F3F4F6;
}

.yt-small-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 5px;
}

.yt-small-desc {
    font-size: 0.95rem;
    color: #6B7280;
}

/* YouTube Button */
.yt-cta-btn {
    background: #FF0000; /* YouTube Red */
    color: #fff;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.yt-cta-btn:hover {
    background: #D90000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
}

.yt-cta-btn i {
    font-size: 1.4rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .yt-glass-card { padding: 30px 20px; }
    
    .yt-footer {
        flex-direction: column;
        text-align: center;
    }
    
    .yt-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* USP BLOCK STYLING */
.usp-block {
    padding: 80px 20px;
    background: #fdfdfd;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.usp-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.usp-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.usp-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Card Design */
.usp-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid #F0F0F0;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.usp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: #F4C430; /* Accent Color */
}

/* Icon Box */
.usp-icon-box {
    width: 60px;
    height: 60px;
    background: #FFF9E6;
    color: #D4A017;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: 0.3s ease;
}

.usp-card:hover .usp-icon-box {
    background: #D4A017;
    color: #fff;
}

.usp-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.usp-card-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .usp-block {
        padding: 60px 15px;
    }
    .usp-card {
        padding: 30px 20px;
    }
}

/* PROCESS SECTION - REFINED */
.oj-wrapper {
    padding: 80px 20px;
    background: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.oj-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.oj-sub {
    color: #D4A017;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.oj-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 2.6rem);
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 20px;
}

.oj-desc {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Timeline Flow */
.oj-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 60px;
    position: relative;
}

/* Connecting Line for Desktop */
@media (min-width: 992px) {
    .oj-flow::before {
        content: '';
        position: absolute;
        top: 35px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: #F3F4F6;
        z-index: 1;
    }
}

.oj-step {
    position: relative;
    z-index: 2;
}

.oj-icon {
    width: 70px;
    height: 70px;
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    color: #1A1A1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.active-step .oj-icon {
    background: #1A1A1A;
    color: #fff;
    border-color: #1A1A1A;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.oj-step h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #1A1A1A;
}

.oj-step p {
    font-size: 0.85rem;
    color: #6B7280;
    margin-bottom: 12px;
}

.oj-time {
    display: inline-block;
    padding: 4px 12px;
    background: #FFF9E6;
    color: #B8860B;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Delivery Summary Box */
.oj-delivery-box {
    background: #F9FAFB;
    border-radius: 24px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid #F3F4F6;
}

.oj-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.oj-label {
    font-weight: 700;
    color: #1A1A1A;
}

.oj-time-large {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1A1A1A;
}

.oj-small {
    font-size: 0.85rem;
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.oj-small i { color: #D4A017; }

/* RESPONSIVE */
@media (max-width: 991px) {
    .oj-flow {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .oj-step {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .oj-icon { margin-bottom: 15px; }
}

/* DISCOVERY SECTION - BLOGS & RECIPES */
.discovery-section {
    padding: 60px 20px;
    max-width: 1300px;
    margin: 0 auto;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.section-heading {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.discovery-scroll-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Card Styling */
.discovery-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.discovery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

.blog-type .card-tag { background: rgba(255, 249, 230, 0.9); color: #B8860B; }
.recipe-type .card-tag { background: rgba(235, 255, 240, 0.9); color: #2D6A4F; }

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.discovery-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.card-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.card-btn {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 2px solid #F4C430;
    padding-bottom: 2px;
    transition: 0.3s;
}

.card-btn:hover {
    color: #D4A017;
    border-color: #1a1a1a;
}

/* MOBILE HORIZONTAL SCROLL */
@media (max-width: 768px) {
    .discovery-scroll-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 10px 5px 30px;
        scrollbar-width: none; /* Hide scrollbar Firefox */
    }

    .discovery-scroll-container::-webkit-scrollbar {
        display: none; /* Hide scrollbar Chrome/Safari */
    }

    .discovery-card {
        min-width: 280px;
        max-width: 280px;
        scroll-snap-align: center;
    }
    
    .section-heading { font-size: 1.7rem; }
}

/* FAQ SECTION STYLING */
.faq-wrapper {
    padding: 80px 20px;
    background: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-heading {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.faq-subtext {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #F9FAFB;
    border-radius: 16px;
    border: 1px solid #F0F0F0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item[open] {
    background: #fff;
    border-color: #F4C430; /* Theme Gold */
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

summary {
    padding: 20px 25px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1A1A1A;
    cursor: pointer;
    list-style: none;
    position: relative;
    outline: none;
}

/* Custom Arrow Icon */
summary::after {
    content: '+';
    position: absolute;
    right: 25px;
    font-size: 1.5rem;
    color: #999;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
    color: #D4A017;
}

.faq-content {
    padding: 0 25px 25px;
    line-height: 1.6;
    color: #555;
    font-size: 1rem;
}

.faq-content strong {
    color: #1A1A1A;
}

/* Remove default triangle in Chrome/Safari */
summary::-webkit-details-marker {
    display: none;
}

/* LIVE ORDER SECTION */
.live-order-section {
    padding: 60px 20px;
    background: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.live-container {
    max-width: 900px;
    margin: 0 auto;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
}

/* Status Bar & Pulse */
.live-status-bar {
    background: #1A1A1A;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.pulse-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #22C55E;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(34, 197, 94, 0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0px rgba(34, 197, 94, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0px rgba(34, 197, 94, 0); }
}

.status-text {
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platform-tag {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    font-weight: 600;
}

/* Main Content */
.live-content {
    padding: 50px 40px;
    text-align: center;
}

.live-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.live-sub {
    color: #6B7280;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Coupon Styling */
.coupon-grid {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.coupon-pill {
    background: #FFFBEB;
    border: 1px dashed #F59E0B;
    padding: 8px 16px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.cp-code {
    font-weight: 900;
    color: #B45309;
    font-size: 0.9rem;
}

.cp-desc {
    font-size: 0.7rem;
    font-weight: 700;
    color: #D97706;
}

/* Action Group */
.live-action-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.live-btn {
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.primary-btn {
    background: #1A1A1A;
    color: #fff;
}

.primary-btn:hover {
    background: #333;
    transform: translateY(-3px);
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
}

.whatsapp-btn:hover {
    background: #1eb956;
    transform: translateY(-3px);
}

/* Areas Section */
.live-areas {
    border-top: 1px solid #E5E7EB;
    padding-top: 30px;
}

.area-label {
    font-weight: 800;
    color: #1A1A1A;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.area-label i { color: #EF4444; }

.area-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: #6B7280;
    font-size: 0.9rem;
    font-weight: 600;
}

.dot {
    width: 4px;
    height: 4px;
    background: #D1D5DB;
    border-radius: 50%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .live-content { padding: 40px 20px; }
    .live-action-group { flex-direction: column; }
    .live-status-bar { justify-content: center; text-align: center; }
    .live-btn { width: 100%; justify-content: center; }
}

.tastebox-exact {
    overflow: hidden;
}
@media (max-width: 480px) {
    .img-card:nth-child(1) { transform: translateX(-20px) rotate(-5deg); }
    .img-card:nth-child(3) { transform: translateX(20px) rotate(5deg); }
}
* {
    max-width: 100%;
    box-sizing: border-box;
}

