/* ========================================
   HANDI HIGHWAY - Landing Page Styles
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --color-primary: #D35400;
    --color-primary-hover: #A04000;
    --color-secondary: #2C3E50;
    --color-background: #FFFFFF;
    --color-surface: #F9F9F9;
    --color-surface-highlight: #FFF5E6;
    --color-text-main: #1A1A1A;
    --color-text-muted: #666666;
    --color-border: #E5E5E5;
    --color-success: #27AE60;
    --color-whatsapp: #25D366;
    --color-veg: #2E7D32;
    --color-nonveg: #C62828;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: clamp(3rem, 8vw, 6rem);
    --grid-gap: 2rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-main);
    background-color: var(--color-background);
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-main);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--color-text-muted);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn i {
    font-size: 1.25rem;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 16px rgba(211, 84, 0, 0.3);
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 84, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-surface-highlight);
}

.btn-whatsapp {
    background: var(--color-whatsapp);
    color: white;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

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

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--color-text-main);
}

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

.nav-cta {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-whatsapp);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
}

.nav-cta:hover {
    background: #20BD5A;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-surface);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 1.5rem;
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: var(--shadow-md);
    display: none;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-content a {
    display: block;
    padding: 1rem;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .nav-cta {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding-top: 100px;
    padding-bottom: var(--section-padding);
    background: linear-gradient(135deg, #FFF8F0 0%, #FFF5E6 50%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(211, 84, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FFF8E1, #FFECB3);
    border: 1px solid #FFD54F;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: #E65100;
    margin-bottom: 1.5rem;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.trust-badge i {
    color: #F9A825;
}

.hero-headline {
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-headline .highlight {
    color: var(--color-primary);
    display: block;
}

.hero-subheadline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--color-text-muted);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--color-border);
    transition: all var(--transition-normal);
}

.hero-feature:hover {
    transform: translateX(4px);
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(211, 84, 0, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text {
    text-align: left;
}

.feature-text strong {
    display: block;
    font-size: 1rem;
    color: var(--color-text-main);
}

.feature-text span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-urgency {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    border: 2px solid #4CAF50;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: #2E7D32;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(76, 175, 80, 0.3); }
    50% { box-shadow: 0 0 20px rgba(76, 175, 80, 0.5); }
}

.hero-urgency i {
    font-size: 1.25rem;
}

.hero-image {
    display: none;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--color-primary), #E65100);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 4px 20px rgba(211, 84, 0, 0.4);
}

.badge-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.badge-text {
    font-size: 0.75rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.stat-item {
    text-align: center;
    padding: 0 1rem;
    border-right: 1px solid var(--color-border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .trust-badge {
        margin-left: 0;
    }
    
    .hero-subheadline {
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .hero-feature {
        flex: 1;
        min-width: 200px;
    }
    
    .hero-ctas {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .hero-urgency {
        justify-content: flex-start;
    }
    
    .hero-image {
        display: block;
    }
}

@media (min-width: 1024px) {
    .hero-features {
        flex-wrap: nowrap;
    }
    
    .hero-feature {
        min-width: auto;
    }
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problem-section {
    padding: var(--section-padding) 0;
    background: var(--color-background);
}

.problem-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.problem-card {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform var(--transition-normal);
}

.problem-card:hover {
    transform: translateY(-4px);
}

.problem-icon {
    width: 64px;
    height: 64px;
    background: var(--color-surface-highlight);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
    color: var(--color-primary);
}

.problem-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.solution-banner {
    background: var(--color-primary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    color: white;
}

.solution-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.solution-content i {
    font-size: 2.5rem;
}

.solution-content h2 {
    color: white;
    font-size: 1.5rem;
}

.solution-content p {
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    .problem-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .solution-content {
        flex-direction: row;
        text-align: left;
    }
}

/* ========================================
   INSTAGRAM SECTION
   ======================================== */
.instagram-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
}

.instagram-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: center;
    margin-bottom: 1rem;
}

.instagram-grid.single {
    max-width: 500px;
    margin: 0 auto;
}

.instagram-embed {
    width: 100%;
    max-width: 400px;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.instagram-embed .instagram-media {
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.instagram-cta {
    text-align: center;
}

@media (min-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .instagram-embed {
        max-width: 450px;
    }
}

/* ========================================
   PACKAGES SECTION
   ======================================== */
.packages-section {
    padding: var(--section-padding) 0;
    background: var(--color-surface);
}

.package-category {
    margin-bottom: 4rem;
}

.category-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.veg-badge {
    background: #E8F5E9;
    color: var(--color-veg);
}

.nonveg-badge {
    background: #FFEBEE;
    color: var(--color-nonveg);
}

.category-header h2 {
    margin-bottom: 0.5rem;
}

.packages-grid {
    display: grid;
    gap: 2rem;
}

.package-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.package-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.75rem;
    background: var(--color-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.package-tag.premium {
    background: linear-gradient(135deg, #F1C40F, #E67E22);
}

.package-content {
    padding: 1.5rem;
}

.package-content h3 {
    margin-bottom: 1rem;
    font-size: 1.375rem;
}

.package-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.price-original {
    font-size: 1rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.price-current {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-per {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.package-items {
    margin-bottom: 1.25rem;
}

.item-category {
    font-size: 0.875rem;
    padding: 0.375rem 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-muted);
}

.item-category:last-child {
    border-bottom: none;
}

.item-category strong {
    color: var(--color-text-main);
}

.item-category.extras {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-success);
    border-bottom: none;
    padding-top: 0.75rem;
}

.customization-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--color-primary);
    background: var(--color-surface-highlight);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .package-image {
        height: 180px;
    }
}

/* ========================================
   MENU IMAGE CARDS (New Image-Based Design)
   ======================================== */
.menu-images-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.menu-image-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.menu-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.menu-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.menu-image-buttons {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    justify-content: center;
    flex-wrap: wrap;
}

.menu-image-buttons .btn {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
}

.nonveg-coming-soon {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.nonveg-coming-soon p {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.nonveg-coming-soon .menu-image-buttons {
    background: transparent;
}

@media (min-width: 768px) {
    .menu-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .menu-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   NEW MENU CARD STYLES (Like PDF Menu)
   ======================================== */
.menu-card {
    background: linear-gradient(180deg, #0F4C3A 0%, #0A3A2C 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
}

.menu-card.nonveg-card {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
}

.menu-card.premium-card {
    border: 2px solid #F1C40F;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 1.5rem 1rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.menu-card-title h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.menu-card-title .tagline {
    color: #F1C40F;
    font-size: 1rem;
    font-weight: 500;
}

.package-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    background: var(--color-primary);
    color: white;
}

.package-badge.best-seller {
    background: #E74C3C;
}

.package-badge.premium {
    background: linear-gradient(135deg, #F1C40F, #E67E22);
    color: #1a1a1a;
}

.package-badge.morning {
    background: #3498DB;
}

.package-badge.popular {
    background: #9B59B6;
}

.package-badge.best-value {
    background: #27AE60;
}

.menu-card-price {
    text-align: right;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: var(--radius-md);
}

.price-strike {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
}

.price-offer {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #F1C40F;
    font-family: var(--font-heading);
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: white;
    font-weight: 500;
}

.offer-tag {
    display: inline-block;
    background: #E74C3C;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.menu-section-title {
    text-align: center;
    padding: 0.75rem;
    margin: 0 1.5rem;
}

.menu-section-title span {
    display: inline-block;
    background: #F1C40F;
    color: #1a1a1a;
    padding: 0.5rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
}

.menu-section-title.nonveg span {
    background: #E74C3C;
    color: white;
}

.menu-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1.5rem 1rem;
}

.menu-categories-grid.starters-grid {
    grid-template-columns: 1fr;
}

.menu-category-box {
    background: #8B0000;
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
}

.menu-category-box.nonveg {
    background: #722F37;
}

.menu-category-box.wide {
    grid-column: span 2;
}

.category-header {
    color: #F1C40F;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-subtext {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.category-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-items li {
    color: white;
    font-size: 0.85rem;
    padding: 0.2rem 0;
    font-weight: 500;
}

.category-items.horizontal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.category-items.horizontal li {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
}

.menu-extras {
    padding: 0 1.5rem 1rem;
}

.extra-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.extra-row:last-child {
    border-bottom: none;
}

.extra-label {
    background: #8B0000;
    color: #F1C40F;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    min-width: 80px;
    text-align: center;
}

.nonveg-card .extra-label {
    background: #722F37;
}

.extra-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-style: italic;
}

.extra-items {
    color: white;
    font-size: 0.85rem;
    flex: 1;
}

.menu-includes {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 1.5rem;
    text-align: center;
}

.includes-title {
    color: #F1C40F;
    font-weight: 600;
    font-size: 0.85rem;
    font-style: italic;
}

.includes-items {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    display: block;
    margin-top: 0.25rem;
}

.menu-quantity {
    background: #F1C40F;
    padding: 0.75rem 1.5rem;
    text-align: center;
}

.quantity-title {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.85rem;
}

.quantity-details {
    color: #1a1a1a;
    font-size: 0.8rem;
    display: block;
}

.menu-card-footer {
    padding: 1.5rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.menu-card-footer .customization-note {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.menu-card-footer .customization-note i {
    color: #F1C40F;
}

.menu-card-footer .btn {
    min-width: 140px;
}

.cta-buttons-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-call {
    background: #3498DB;
    color: white;
    box-shadow: 0 4px 16px rgba(52, 152, 219, 0.3);
}

.btn-call:hover {
    background: #2980B9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Responsive for menu cards */
@media (max-width: 640px) {
    .menu-card-header {
        flex-direction: column;
    }
    
    .menu-card-price {
        text-align: center;
        width: 100%;
    }
    
    .menu-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-category-box.wide {
        grid-column: span 1;
    }
    
    .category-items.horizontal {
        gap: 0.375rem;
    }
    
    .category-items.horizontal li {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
    
    .extra-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .extra-label {
        min-width: auto;
    }
}

@media (min-width: 768px) {
    .menu-categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .menu-category-box.wide {
        grid-column: span 4;
    }
}

/* Pricing Tables */
.pricing-table-section {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.pricing-table-section h3 {
    margin-bottom: 0.5rem;
}

.pricing-table-section > p {
    margin-bottom: 2rem;
}

.pricing-tables {
    display: grid;
    gap: 2rem;
}

.pricing-table {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.pricing-table h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--color-veg);
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
}

.pricing-table.nonveg h4 {
    background: var(--color-nonveg);
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 0.75rem 1rem;
    text-align: center;
}

.pricing-table thead {
    background: rgba(0, 0, 0, 0.05);
}

.pricing-table th {
    font-weight: 600;
    font-size: 0.875rem;
}

.pricing-table tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}

.pricing-table td:last-child {
    font-weight: 600;
    color: var(--color-primary);
}

@media (min-width: 768px) {
    .pricing-tables {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   DELIVERY SHOWCASE SECTION
   ======================================== */
.delivery-showcase-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F0 100%);
}

.delivery-showcase-grid {
    display: grid;
    gap: 2rem;
}

.showcase-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal);
}

.showcase-card:hover {
    transform: translateY(-8px);
}

.showcase-image {
    height: 280px;
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.showcase-card:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-content {
    padding: 1.5rem;
    text-align: center;
}

.showcase-content h3 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    font-size: 1.25rem;
}

.showcase-content p {
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .delivery-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-image {
        height: 320px;
    }
}

/* ========================================
   WHY US SECTION
   ======================================== */
.why-us-section {
    padding: var(--section-padding) 0;
    background: var(--color-background);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 0.5rem;
}

.why-us-grid {
    display: grid;
    gap: 1.5rem;
}

.why-us-card {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.why-us-card:hover {
    background: var(--color-surface-highlight);
    transform: translateY(-4px);
}

.why-us-icon {
    width: 72px;
    height: 72px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 2rem;
    color: white;
}

.why-us-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-us-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works-section {
    padding: var(--section-padding) 0;
    background: #F5F5F5;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
}

.step-card {
    background: #FFFFFF;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #E8E8E8;
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    z-index: 10;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--color-surface-highlight);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem auto 1.25rem;
    font-size: 2rem;
    color: var(--color-primary);
}

.step-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: var(--color-text-main);
}

.step-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-connector {
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
}

@media (min-width: 768px) {
    .steps-grid {
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
    }
    
    .step-card {
        flex: 1;
        max-width: 300px;
    }
    
    .step-connector {
        display: flex;
    }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--color-background);
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #F1C40F;
    font-size: 1.125rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-info strong {
    display: block;
    font-size: 0.9375rem;
}

.author-info span {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   GOOGLE REVIEWS SECTION
   ======================================== */
.google-reviews-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
}

.google-reviews-section .section-header {
    margin-bottom: 2rem;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.google-icon {
    width: 40px;
    height: 40px;
}

.google-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rating-stars {
    color: #FBBC04;
    font-size: 1.125rem;
    display: flex;
    gap: 2px;
}

.rating-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.google-map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;
}

.google-map-wrapper iframe {
    display: block;
    width: 100%;
    min-height: 350px;
}

.google-cta {
    text-align: center;
}

@media (min-width: 768px) {
    .google-map-wrapper iframe {
        min-height: 450px;
    }
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    padding: var(--section-padding) 0;
    background: #FFFFFF;
}

.faq-category {
    margin-bottom: 2.5rem;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
}

.faq-item {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--color-primary);
}

.faq-item.active {
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(211, 84, 0, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-main);
    transition: all var(--transition-normal);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question span {
    flex: 1;
}

.faq-question i {
    font-size: 1.25rem;
    color: var(--color-primary);
    transition: transform var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p,
.faq-answer ul {
    padding: 0 1.25rem 1.25rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-answer ul {
    padding-left: 2.5rem;
    margin-top: 0.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer li:last-child {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .faq-question {
        padding: 1rem;
        font-size: 0.9375rem;
    }
    
    .faq-answer p,
    .faq-answer ul {
        padding: 0 1rem 1rem;
        font-size: 0.875rem;
    }
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 0.75rem;
}

.cta-content > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-info a {
    color: white;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-secondary);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 0.75rem;
}

.footer-brand .logo-text {
    color: white;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: var(--color-whatsapp);
    color: white;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-text {
    display: none;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

@media (min-width: 768px) {
    .whatsapp-text {
        display: inline;
    }
}

/* ========================================
   MODAL STYLES
   ======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: var(--color-surface);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--color-border);
    color: var(--color-text-main);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.modal-header h2 {
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

.modal-header p {
    font-size: 0.9375rem;
}

/* Form Styles */
#inquiryForm {
    padding: 0 2rem 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--color-text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    background: white;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group input[readonly] {
    background: var(--color-surface);
    color: var(--color-text-main);
}

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

/* Success Modal */
.success-modal {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--color-success);
    margin-bottom: 1.5rem;
}

.success-modal h2 {
    margin-bottom: 0.5rem;
}

.success-modal p {
    margin-bottom: 2rem;
}

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

@media (min-width: 480px) {
    .success-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .package-content h3 {
        font-size: 1.25rem;
    }
    
    .price-current {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}
