/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #FFC107;
    --dark-yellow: #FFA000;
    --black: #1e293b;
    /* Softer professional black */
    --dark-gray: #334155;
    --light-gray: #f1f5f9;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --success: #4CAF50;
    --danger: #f44336;
    --border-radius: 12px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== LOCATION MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.active {
    display: flex;
}

.modal-content-premium {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.modal-content-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--dark-yellow));
}

.modal-header-premium {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    padding: 20px 15px;
    text-align: center;
    position: relative;
    border-bottom: 3px solid var(--primary-yellow);
    margin: -30px -30px 25px -30px;
    /* Offset the modal padding */
}

.modal-header-premium h2,
.modal-header-premium h3 {
    font-size: 22px;
    color: var(--white);
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
}

.location-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

@media (max-width: 480px) {
    .location-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .modal-header-premium {
        margin: -20px -20px 20px -20px;
        padding: 15px 10px;
    }
}

.location-card-premium {
    background: #ffffff;
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.location-card-premium:hover,
.location-card-premium:focus {
    background: #fffdf5;
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

.location-icon-premium {
    margin: 0 auto 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    transition: var(--transition);
}

.location-icon-premium i {
    font-size: 18px;
    color: #555;
    transition: var(--transition);
}

.location-card-premium:hover .location-icon-premium {
    background: var(--primary-yellow);
}

.location-card-premium:hover .location-icon-premium i {
    color: var(--black);
}

.location-name-premium {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    margin-top: 5px;
}

/* Responsive for modal */
@media (max-width: 480px) {
    .logo {
        max-width: 140px;
    }

    .nav-wrapper {
        gap: 8px;
        padding: 10px 0;
    }

    .contact-wrapper {
        margin-right: 5px;
    }
}



.location-overlay i {
    font-size: 16px;
    color: var(--black);
}

.location-name {
    padding: 12px 15px 5px;
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    text-align: center;
}

.location-card small {
    display: block;
    padding: 0 15px 12px;
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
}

/* Global Offset for Fixed Header */
body {
    padding-top: 85px;
    /* Compilance for fixed header */
}

/* ===== HEADER/NAVBAR (STRICT STICKY) ===== */
.header {
    background: var(--white) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1100 !important;
    /* Higher than any sidebar/modal */
    padding: 12px 0 !important;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    max-width: 200px;
    cursor: pointer;
}



.contact-wrapper {
    position: relative;
    margin-left: auto;
    /* Push to right */
    margin-right: 20px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
    font-size: 18px;
}

.contact-icon:hover {
    background: var(--primary-yellow);
    color: var(--black);
    transform: scale(1.1);
}

.contact-dropdown {
    position: absolute;
    top: 120%;
    left: 0;
    width: 220px;
    /* Narrower to clear scrollbar */
    background: #f8f9fa;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    padding: 12px 10px;
    /* Ultra-compact padding */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border: 1px solid #e0e0e0;
    z-index: 1000;
}

.contact-wrapper:hover .contact-dropdown,
.contact-wrapper.active .contact-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    padding: 6px 10px;
    background: #e9ecef;
    border-radius: 50px;
    width: fit-content;
    margin-left: 5px;
}

.dropdown-header i {
    color: var(--text-dark);
    font-size: 12px;
}

.dropdown-header span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    text-transform: uppercase;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid #d1d5db;
    margin-bottom: 8px;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-dark);
}

.contact-box:hover {
    border-color: var(--primary-yellow);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.contact-box i {
    font-size: 16px;
}

.contact-box.whatsapp i {
    color: #25D366;
}

.contact-box span {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
}

.dropdown-footer p {
    font-size: 8.5px;
    color: #6b7280;
    text-align: center;
    line-height: 1.3;
    margin-top: 8px;
    padding: 0 5px;
}

@media (max-width: 768px) {
    .contact-wrapper {
        margin-right: 15px;
    }

    .contact-dropdown {
        width: 280px;
        right: -80px;
        top: 140%;
    }

    .dropdown-header {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }

    .contact-box span {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 10px;
        gap: 8px !important;
    }

    .logo {
        max-width: 130px !important;
        flex-shrink: 1;
    }

    .contact-wrapper {
        margin: 0 !important;
        order: 2;
    }

    .location-badge {
        order: 3;
        padding: 6px 10px !important;
        font-size: 11px !important;
        margin: 0 !important;
        white-space: nowrap;
    }

    .contact-dropdown {
        right: -50px;
        transform: translateY(10px);
        width: 85vw;
        position: fixed;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
    }

    .contact-wrapper.active .contact-dropdown,
    .contact-wrapper:hover .contact-dropdown {
        transform: translateX(-50%) translateY(0);
    }
}

.location-badge {
    background: var(--primary-yellow);
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.location-badge:hover {
    background: var(--dark-yellow);
}

/* ===== HERO SECTION ===== */
.hero {
    background: var(--black);
    color: var(--white);
    padding: 60px 0;
    /* Reduced padding */
    position: relative;
    overflow: hidden;
    min-height: 450px;
    /* Reduced height */
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    /* Ensure container takes width */
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    /* Left align text */
    max-width: 900px;
    /* Limit width */
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    overflow-wrap: break-word;
}

.highlight {
    color: var(--primary-yellow);
}

.subtitle {
    font-size: 20px;
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.subtitle-small {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 36px;
    color: var(--primary-yellow);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.stat-item strong {
    display: block;
    font-size: 28px;
    color: var(--primary-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-item span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* ===== QUOTE FORM ===== */
.quote-form {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    align-items: end;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 18px;
    /* Fixed font size for icon */
    z-index: 2;
    /* Ensure icon is above input */
}

.form-group input,
.form-group select {
    width: 100%;
    height: 50px;
    /* Explicit height for consistency */
    padding: 0 15px 0 65px !important;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

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

.btn-primary {
    background: var(--primary-yellow);
    color: var(--black);
    height: 50px;
    /* Explicit height to match inputs */
    padding: 0 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--dark-yellow);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

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

/* ===== BANNER SLIDER ===== */
.banner-section {
    padding: 40px 0;
    background: var(--light-gray);
}

.banner-slider {
    position: relative;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.banner-slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 40px;
    justify-content: center;
    align-items: center;
    animation: slideIn 0.5s ease;
}

.banner-slide.active {
    display: flex;
}

.banner-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.banner-content h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-content h2 {
    font-size: clamp(24px, 8vw, 38px);
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-content p {
    font-size: clamp(16px, 5vw, 22px);
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-btn {
    background: var(--white);
    color: var(--black);
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.banner-btn:hover {
    background: var(--primary-yellow);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.slider-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--text-light);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-yellow);
    width: 30px;
    border-radius: 6px;
}

/* ===== NEW SERVICES SECTION (COMPACT) ===== */
.services-section-new {
    padding: 6px 0;
    /* Reduced padding to remove faltu space */
    background: var(--white);
}

.services-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 15px;
    /* Reduced for sharp design */
    align-items: stretch;
    padding: 10px 0;
}

/* LEFT SIDE - Structure */
.services-content-wrapper {
    display: flex;
    flex-direction: column;
}

.services-header-compact {
    margin-bottom: 25px;
}

.services-search-compact {
    margin-top: 20px;
}

.services-search-compact h3 {
    font-size: 20px;
    color: var(--black);
    margin-bottom: 5px;
}

.services-search-compact p {
    font-size: 14px;
    color: var(--text-light);
}

/* SERVICES WHITE CARD */
.services-white-card {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.services-grid-vertical {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 15px;
}

/* INDIVIDUAL SERVICE ITEM (Circular) */
.service-item-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.service-item-vertical:hover {
    transform: translateY(-5px);
}

.service-icon-circle {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 4px solid var(--primary-yellow);
    overflow: hidden;
    margin-bottom: 12px;
    background: #fff;
    padding: 3px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.15);
}

.service-icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.service-item-vertical h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
    line-height: 1.2;
}

.service-extra-vertical {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.2;
}

/* RIGHT SIDE - Tall Gallery */
.services-gallery-tall {
    position: relative;
    height: 100%;
}

.gallery-tall-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    /* Force images to fill available height */
    gap: 10px;
    height: 100%;
}

.gallery-item-tall {
    border-radius: 12px;
    border: 3px solid var(--primary-yellow);
    overflow: hidden;
    transition: var(--transition);
}

.services-gallery-tall {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    /* Important: Match parent height */
}

.gallery-item-tall:hover {
    transform: scale(1.05);
    z-index: 2;
}

.gallery-item-tall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats Styling */
.services-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-box i {
    font-size: 32px;
    color: var(--primary-yellow);
}

.stat-box strong {
    font-size: 24px;
    color: var(--black);
    font-weight: 800;
}

.stat-box p {
    font-size: 13px;
    color: var(--text-light);
}

/* Responsive Fixes */
@media (max-width: 992px) {
    .services-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid-vertical {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .services-grid-vertical {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-icon-circle {
        width: 70px;
        height: 70px;
    }
}

/* ===== NEW PACKAGES SECTION (GLOBAL) ===== */
.packages-section-new {
    padding: 8px 0;
    background: var(--light-gray);
}

.packages-content {
    background: var(--white);
    padding: 0;
    border-radius: 12px;
    border: 1px solid #eee;
    overflow: hidden;
}

.packages-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: flex-start;
}

.premium-section-header {
    text-align: center;
    margin-bottom: 30px;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff9e6;
    color: var(--dark-yellow);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--primary-yellow);
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(255, 193, 7, 0.2);
}

.premium-gradient-title {
    font-size: clamp(22px, 7vw, 38px);
    background: linear-gradient(135deg, #FF8C00 0%, #FFD700 50%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
    overflow-wrap: break-word;
    line-height: 1.2;
}

.heading-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    opacity: 0.6;
}

.heading-decoration span {
    height: 2px;
    width: 40px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
}

.heading-decoration i {
    color: var(--primary-yellow);
    font-size: 12px;
}

.premium-subtitle {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 500;
}

.packages-main-title {
    font-size: 32px;
    color: var(--black);
    margin-bottom: 10px;
}

.packages-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.packages-action-bar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.packages-service-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.package-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--white);
}

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

.package-service-item.active,
.package-service-item:hover {
    background: var(--primary-yellow);
}

.package-service-item.active h4,
.package-service-item:hover h4,
.package-service-item.active p,
.package-service-item:hover p {
    color: var(--black);
}

.service-icon-small {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-icon-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-text h4 {
    font-size: 14px;
    color: var(--black);
    margin-bottom: 2px;
    font-weight: 600;
}

.service-text p {
    font-size: 11px;
    color: var(--text-light);
}

/* RIGHT - Package Cards Gallery */
.packages-gallery {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.packages-gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.packages-title-area h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.packages-filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.compact-select {
    padding: 8px 12px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 13px;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.compact-select:hover,
.compact-select:focus {
    border-color: var(--primary-yellow);
    outline: none;
}

.packages-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.package-card-new {
    background: var(--white);
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card-img-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.package-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card-new:hover .package-card-img-wrapper img {
    transform: scale(1.08);
}

.package-rating {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(15, 23, 42, 0.85);
    color: var(--primary-yellow);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 3px;
}

.package-card-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-card-info h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--black);
}

.package-card-info p {
    font-size: 12px;
    color: #777;
    margin-bottom: 15px;
    line-height: 1.4;
}

.package-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f9f9f9;
}

.package-card-price {
    font-size: 12px;
    color: #444;
}

.package-card-price strong {
    font-size: 15px;
    color: var(--black);
    font-weight: 800;
}

.btn-view-small {
    background: #fff;
    border: 1.5px solid var(--primary-yellow);
    color: var(--black);
    padding: 4px 15px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-view-small:hover {
    background: var(--primary-yellow);
}

/* RESPONSIVE OVERRIDES */
@media (max-width: 1200px) {
    .packages-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .packages-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .packages-gallery-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .packages-filter-bar {
        width: 100%;
        gap: 8px;
    }
}

@media (max-width: 600px) {
    .packages-grid-new {
        grid-template-columns: 1fr;
    }

    .compact-select {
        flex: 1;
        min-width: 120px;
    }
}

/* ===== MENU PAGE PREMIUM REDESIGN (v=39) ===== */
.menu-page {
    background: #fff;
    overflow-x: hidden;
}

.menu-section {
    padding: 15px 0;
}

.menu-container {
    display: grid;
    grid-template-columns: 260px 1fr 340px;
    gap: 15px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
    align-items: start;
}

/* SIDEBARS - NO SCROLLERS */
.categories-sidebar,
.order-summary-sidebar {
    position: sticky;
    top: 80px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow-y: auto;
    scrollbar-width: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.categories-sidebar::-webkit-scrollbar,
.order-summary-sidebar::-webkit-scrollbar {
    display: none;
}

/* LEFT SIDEBAR - Categories */
.categories-sidebar h2 {
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.2;
    border-left: 4px solid transparent;
}

.category-item.active {
    background: linear-gradient(90deg, #fff2f2 0%, #fff 100%);
    border-left-color: #ffba00;
}

.category-item .service-icon-small {
    width: 32px;
    height: 32px;
}

.category-item .service-text h4 {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

.category-item .service-text p {
    font-size: 11px;
    color: #999;
}

/* MIDDLE SECTION */
.products-section {
    border: 1px solid #eee;
    border-radius: 8px;
}

.products-action-bar-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #fbfbfb;
    border-bottom: 1px solid #eee;
    border-radius: 8px 8px 0 0;
}

.search-box-p input {
    width: 280px;
    padding: 8px 15px 8px 35px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.premium-badge-v {
    border: 1px solid #9c27b0;
    color: #9c27b0;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.diet-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
}

.diet-toggle.veg {
    color: #2e7d32;
}

.diet-toggle.non-veg {
    color: #c62828;
}

/* PRODUCT CARDS */
.product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 8px;
}

.product-card h4 {
    font-size: 13px;
    height: 34px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-card .btn-view-small {
    width: 100%;
    background: #fff;
    border: 1px solid #ffba00;
    color: #ffba00;
    padding: 7px;
    border-radius: 5px;
    font-weight: 700;
}

/* RIGHT SIDEBAR - Order Summary Match */
.order-summary-sidebar {
    padding: 0;
}

.summary-sticky-card {
    padding: 20px;
}

.summary-header .order-id h3 {
    font-size: 20px;
    color: #ffba00;
    font-weight: 800;
}

.booking-details-mini {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
}

.detail-item .val {
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.detail-item .edit-icon {
    color: #42a5f5;
    font-size: 11px;
}

.calendar-slot-card {
    border: 1.5px solid #b39ddb;
    /* Purple border like ref */
    border-radius: 6px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.slot-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
}

.slot-item i {
    color: #666;
}

.btn-edit-slot {
    background: none;
    border: none;
    color: #333;
    font-weight: 700;
    font-size: 11px;
    cursor: pointer;
}

/* Grouped Cart Items Styling */
.cart-items-grouped {
    margin: 0 -20px;
    /* Bleed to ends */
}

.cart-group {
    margin-bottom: 10px;
}

.cart-group-header {
    background: #f5f5f5;
    /* Grey header as per ref */
    padding: 6px 20px;
    font-size: 11px;
    font-weight: 800;
    color: #333;
    text-transform: capitalize;
}

.cart-item-summary {
    padding: 8px 20px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 10px;
}

.cart-item-summary-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #444;
}

.purple-icon-mini {
    color: #9c27b0;
    font-size: 12px;
}

.diet-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.diet-dot.veg {
    background: #4caf50;
}

.diet-dot.non-veg {
    background: #f44336;
}

/* PILL QUANTITY CONTROL */
.cart-pill-control {
    background: #f2f2f2;
    border-radius: 20px;
    padding: 2px 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e0e0e0;
}

.cart-pill-btn {
    border: none;
    background: none;
    color: #ffba00;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
}

.cart-pill-val {
    font-size: 12px;
    font-weight: 700;
    color: #9c27b0;
    /* Purple value like ref */
    min-width: 25px;
    text-align: center;
}

.item-unit-mini {
    font-size: 11px;
    color: #888;
    min-width: 30px;
}

/* Footer & Total */
.summary-footer-v {
    margin-top: 15px;
    padding: 0;
}

.disclaimer-text {
    font-size: 10px;
    color: #999;
    text-align: center;
    margin-bottom: 10px;
}

.summary-divider-line {
    height: 1px;
    background: #eee;
    margin-bottom: 10px;
}

.fee-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.grand-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
}

.proceed-payment-btn {
    width: 100%;
    background: #ffba00;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
}

.whats-included-card {
    margin-top: 25px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 20px;
}

.whats-included-card h4 {
    font-size: 18px;
    color: #ffba00;
    font-weight: 800;
    margin-bottom: 15px;
}

.inc-item {
    margin-bottom: 12px;
}

.inc-item h5 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
}

.inc-item p {
    font-size: 12px;
    color: #777;
    line-height: 1.4;
}

/* Redesign product cards to match reference grid */
.product-card {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    padding: 8px;
    background: #fff;
    transition: all 0.2s;
}

.product-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.product-card .package-card-info {
    padding: 10px 0 0;
}

.product-card h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    height: 38px;
    overflow: hidden;
}

.product-card .btn-view-small {
    padding: 6px;
    border: 1px solid #f44336;
    background: #fff;
    color: #f44336;
    border-radius: 4px;
    font-weight: 600;
}

.product-card .btn-view-small:hover {
    background: #f44336;
    color: #fff;
}

.packages-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.package-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-yellow);
    border-color: var(--black);
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-select {
    padding: 10px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    background: var(--white);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-select:focus {
    border-color: var(--primary-yellow);
    outline: none;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.package-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-yellow);
    color: var(--black);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    z-index: 1;
}

.package-badge i {
    color: var(--black);
}

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

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

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-info {
    padding: 20px;
}

.package-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--black);
}

.package-desc {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.package-price {
    margin-bottom: 20px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-yellow);
}

.per-person {
    font-size: 14px;
    color: var(--text-light);
}

.btn-view {
    width: 100%;
    background: var(--black);
    color: var(--white);
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-view:hover {
    background: var(--primary-yellow);
    color: var(--black);
}

.view-all-btn {
    text-align: center;
}

.btn-secondary {
    background: var(--white);
    color: var(--black);
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--black);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

/* ===== TRENDING SECTION ===== */
.trending-section {
    padding: 8px 0;
}

.trending-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.trending-card {
    position: relative;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
}

.trending-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.trending-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px;
    color: var(--white);
}

.trending-overlay h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.trending-overlay p {
    color: var(--primary-yellow);
    font-size: 14px;
}

/* ===== TESTIMONIALS SECTION ===== */
/* ===== TESTIMONIALS SECTION (3D FLIP) ===== */
.testimonials-section {
    padding: 8px 0;
    position: relative;
    background: var(--light-gray);
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    perspective: 1000px;
    /* Essential for 3D effect */
}

.testimonial-card {
    background: transparent;
    height: 350px;
    perspective: 1000px;
    cursor: pointer;
}

.testimonial-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.testimonial-card:hover .testimonial-inner {
    transform: rotateY(180deg);
}

.testimonial-front,
.testimonial-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Front Face */
.testimonial-front {
    background: var(--white);
    color: var(--black);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 4px solid var(--primary-yellow);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-front h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--black);
}

.testimonial-front .designation {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 20px;
}

.tap-hint {
    margin-top: auto;
    font-size: 14px;
    color: var(--primary-yellow);
    opacity: 0.8;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* Back Face */
.testimonial-back {
    background: linear-gradient(135deg, #fffcf5 0%, #ffffff 100%);
    color: var(--black);
    transform: rotateY(180deg);
    border: 2px solid var(--primary-yellow);
}

.testimonial-header-back {
    margin-bottom: 15px;
    text-align: center;
}

.testimonial-header-back h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.verified {
    color: #28a745;
    font-size: 13px;
    background: rgba(40, 167, 69, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
}

.rating {
    margin-bottom: 20px;
}

.rating i {
    color: #FFD700;
    font-size: 18px;
    margin: 0 2px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
}

.service-tag {
    display: inline-block;
    background: var(--primary-yellow);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}



/* ===== MENU PAGE FIXED LAYOUT ===== */
body.menu-page {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
}

.menu-page .header {
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-page .menu-section {
    min-height: calc(100vh - 400px);
    padding-top: 20px;
    padding-bottom: 60px;
}

.menu-page .menu-container {
    height: auto;
    align-items: start;
}

.custom-scrollbar {
    overflow-y: auto;
}

.categories-sidebar {
    position: sticky;
    top: 90px;
    height: calc(100vh - 100px);
    overflow-y: auto;
    padding-bottom: 20px;
}

.products-section {
    height: auto;
    padding-bottom: 20px;
}

.cart-sidebar {
    position: sticky;
    top: 90px;
    height: calc(100vh - 100px);
    overflow-y: auto;
    padding-bottom: 20px;
}

.cart-sticky {
    position: static !important;
    height: auto !important;
}

/* Custom Scrollbar */
.categories-sidebar::-webkit-scrollbar,
.products-section::-webkit-scrollbar,
.cart-sidebar::-webkit-scrollbar {
    width: 6px;
}

.categories-sidebar::-webkit-scrollbar-track,
.products-section::-webkit-scrollbar-track,
.cart-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.categories-sidebar::-webkit-scrollbar-thumb,
.products-section::-webkit-scrollbar-thumb,
.cart-sidebar::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.categories-sidebar::-webkit-scrollbar-thumb:hover,
.products-section::-webkit-scrollbar-thumb:hover,
.cart-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--primary-yellow);
}

/* Fix for Category Items */
.package-service-item.category-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-service-item.category-item.active {
    border-color: var(--primary-yellow);
    background: #fff9e6;
}


/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 10px 0;
    background: var(--light-gray);
}

.faq-tabs-wrapper {
    margin-bottom: 40px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    min-width: max-content;
}

.faq-tab {
    padding: 12px 25px;
    border: 2px solid var(--primary-yellow);
    background: transparent;
    border-radius: 30px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
}

.faq-tab.active,
.faq-tab:hover {
    background: var(--primary-yellow);
    color: var(--black);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.faq-content-area {
    max-width: 800px;
    margin: 0 auto;
    min-height: 300px;
    /* Prevent layout shift */
}

.faq-category {
    display: none;
    animation: fadeIn 0.5s ease;
}

.faq-category.active {
    display: block;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Softer border */
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--black);
    font-size: 16px;
    background: var(--white);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-yellow);
    font-size: 14px;
}

.faq-item.active .faq-question {
    color: var(--primary-yellow);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fffcf5;
    /* Very subtle yellow tint for answer */
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    /* Increased max-height for longer answers */
}

.faq-answer p {
    padding: 15px 25px 25px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .faq-tabs {
        justify-content: flex-start;
        padding-left: 20px;
        padding-right: 20px;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 15px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
    margin-bottom: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--primary-yellow);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    display: flex;
    align-items: start;
    gap: 10px;
}

.contact-info i {
    color: var(--primary-yellow);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--white);
    transform: translateY(-3px);
}

.social-links i {
    color: var(--black);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    font-size: 14px;
}

/* ===== MOBILE BOTTOM NAVIGATION ===== */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.12);
    z-index: 1005;
    /* High enough to stay on top */
    justify-content: space-around;
    padding: 8px 0;
    border-top: 1px solid #eee;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-light);
    font-size: 12px;
    transition: var(--transition);
}

.nav-item i {
    font-size: 24px;
    margin-bottom: 5px;
}

.nav-item.active {
    color: var(--primary-yellow);
}

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float {
    position: fixed;
    bottom: 150px;
    /* Base position for mobile screens */
    right: 20px;
    background: #25D366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1002;
    animation: pulse 2s infinite;
}

.whatsapp-float i {
    font-size: 32px;
    color: var(--white);
}

.book-now-float {
    position: fixed;
    bottom: 80px;
    /* Positioned clearly above mobile-nav */
    right: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
    z-index: 1002;
    cursor: pointer;
    transition: var(--transition);
    animation: slideInRight 0.5s ease-out;
}

.book-now-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.6);
}

.book-now-float i {
    font-size: 20px;
}

/* Services Modal */
/* Services Modal */
.services-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.services-modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.services-modal-content {
    background: var(--white);
    width: 95%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: all 0.4s ease-out;
}

.services-modal-overlay.active .services-modal-content {
    transform: translateY(0);
}

/* Shared Header already defined at top */

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.close-modal-btn:hover {
    background: var(--danger);
    transform: rotate(90deg);
}

.services-modal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 20px;
    background: var(--white);
    overflow-y: auto;
    flex-grow: 1;
}

.modal-service-card {
    background: var(--white);
    padding: 15px 10px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #f0f0f0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-yellow);
    background: #fffdf5;
}

.modal-card-img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 3px solid var(--primary-yellow);
    overflow: hidden;
    margin-bottom: 12px;
    background: #eee;
    padding: 2px;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.2);
    transition: var(--transition);
}

.modal-service-card:hover .modal-card-img {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

.modal-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.modal-service-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
    line-height: 1.2;
}

.modal-service-card .sub-text {
    font-size: 10px;
    color: var(--text-light);
    font-weight: 500;
}

.modal-footer-premium {
    padding: 15px;
    background: #f8f9fa;
    text-align: center;
    font-size: 12px;
    color: #999;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .services-modal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 15px;
    }

    .services-modal-content {
        width: 95%;
        border-radius: 15px;
    }

    .modal-card-img {
        width: 60px;
        height: 60px;
    }

    .modal-header-premium h3 {
        font-size: 18px;
    }
}


@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 155px;
    }

    .book-now-float {
        bottom: 90px;
        padding: 10px 15px;
        font-size: 14px;
    }

    .book-now-float i {
        font-size: 18px;
    }

    .services-modal-content {
        width: 98%;
        max-height: 95vh;
        border-radius: 12px;
    }

    .modal-header-premium {
        padding: 15px 10px;
    }

    .services-modal-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 12px;
    }

    .modal-service-card {
        padding: 10px 5px;
    }

    .modal-card-img {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }

    .modal-service-card h4 {
        font-size: 11px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 18px;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .quote-form {
        grid-template-columns: 1fr;
    }

    .nav-wrapper {
        flex-wrap: wrap;
    }

    .search-bar {
        order: 3;
        flex-basis: 100%;
        max-width: 100%;
    }

    .services-grid,
    .packages-grid,
    .trending-slider,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .banner-content h2 {
        font-size: 24px;
    }

    .mobile-nav {
        display: flex;
    }

    .footer {
        margin-bottom: 70px;
    }

    .whatsapp-float {
        bottom: 90px;
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float i {
        font-size: 26px;
    }
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none !important;
    }
}

/* ===== MENU PAGE STYLES ===== */
.menu-page {
    background: var(--light-gray);
}

/* Menu Info Bar */
.menu-info-bar {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.menu-info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-item i {
    font-size: 28px;
    color: var(--primary-yellow);
}

.info-item strong {
    display: block;
    font-size: 16px;
    color: var(--black);
}

.info-item span {
    display: block;
    font-size: 12px;
    color: var(--text-light);
}

.change-details-btn {
    background: var(--primary-yellow);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.change-details-btn:hover {
    background: var(--dark-yellow);
}

/* Menu Container - 3 Part Layout */
.menu-section {
    padding: 20px 0 100px;
}

.menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 280px 1fr 350px;
    gap: 25px;
    align-items: start;
}

/* LEFT - Categories Sidebar */
.categories-sidebar {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
}

.sidebar-header {
    padding: 20px;
    background: var(--primary-yellow);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.sidebar-header h3 {
    color: var(--black);
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.categories-list {
    padding: 10px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 5px;
}

.category-item:hover {
    background: var(--light-gray);
}

.category-item.active {
    background: var(--primary-yellow);
}

.category-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-info h4 {
    font-size: 15px;
    color: var(--black);
    margin-bottom: 3px;
}

.item-count {
    font-size: 12px;
    color: var(--text-light);
}

/* MIDDLE - Products Section */
.products-section {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.products-header h2 {
    font-size: 26px;
    color: var(--black);
}

.view-toggle {
    display: flex;
    gap: 8px;
}

.toggle-btn {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.toggle-btn.active {
    background: var(--primary-yellow);
}

.toggle-btn i {
    font-size: 16px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.product-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    border-color: var(--primary-yellow);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 2px solid white;
}

.product-badge.veg {
    background: #00C853;
}

.product-badge.non-veg {
    background: #D32F2F;
}

.product-badge i {
    font-size: 7px;
    color: white;
}

.product-image {
    height: 140px;
    overflow: hidden;
    position: relative;
}

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

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

.quick-add {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: var(--primary-yellow);
    color: var(--black);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.product-card:hover .quick-add {
    opacity: 1;
    transform: translateY(0);
}

.product-info {
    padding: 12px;
}

.product-info h3 {
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-desc {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.4;
    height: 32px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.price-info {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-yellow);
}

.unit {
    font-size: 11px;
    color: var(--text-light);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    background: var(--light-gray);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--primary-yellow);
}

.qty-btn i {
    font-size: 10px;
}

.qty-input {
    width: 38px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    padding: 5px;
}

.suggestion-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 10px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.suggestion-badge i {
    color: var(--primary-yellow);
    font-size: 10px;
}

/* RIGHT - Cart Sidebar */
.cart-sidebar {
    position: sticky;
    top: 90px;
}

.cart-sticky {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.cart-header {
    background: var(--primary-yellow);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 18px;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
}

.clear-cart-btn {
    background: transparent;
    color: var(--danger);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    transition: var(--transition);
}

.clear-cart-btn:hover {
    background: rgba(244, 67, 54, 0.1);
}

.cart-items {
    max-height: 400px;
    overflow-y: auto;
    padding: 15px;
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
}

.empty-cart i {
    font-size: 60px;
    color: var(--light-gray);
    margin-bottom: 15px;
}

.empty-cart p {
    font-size: 16px;
    margin-bottom: 5px;
}

.empty-cart small {
    font-size: 13px;
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--light-gray);
    border-radius: 8px;
    margin-bottom: 10px;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
}

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

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--black);
}

.cart-item-qty {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-yellow);
}

.remove-item {
    background: transparent;
    color: var(--danger);
    padding: 5px;
    transition: var(--transition);
}

.remove-item:hover {
    color: #b71c1c;
}

.cart-summary {
    padding: 20px;
    border-top: 2px solid var(--light-gray);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.summary-row.total {
    font-size: 18px;
    color: var(--black);
}

.summary-divider {
    height: 1px;
    background: var(--light-gray);
    margin: 15px 0;
}

.proceed-btn {
    width: 100%;
    background: var(--black);
    color: var(--white);
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    margin: 20px;
    width: calc(100% - 40px);
}

.proceed-btn:hover {
    background: var(--primary-yellow);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.cart-suggestions {
    padding: 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.cart-suggestions h4 {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-suggestions i {
    color: var(--primary-yellow);
}

.suggestion-text {
    font-size: 12px;
    line-height: 1.5;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

/* Responsive Menu Page */
@media (max-width: 1200px) {
    .menu-container {
        grid-template-columns: 250px 1fr 320px;
    }
}

@media (max-width: 992px) {
    .menu-container {
        grid-template-columns: 1fr;
    }

    .categories-sidebar,
    .cart-sidebar {
        position: static;
        max-height: none;
    }

    .categories-sidebar {
        order: 2;
    }

    .products-section {
        order: 1;
    }

    .cart-sidebar {
        order: 3;
    }
}

@media (max-width: 768px) {
    .menu-info-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .cart-sidebar {
        display: block;
        margin-top: 30px;
    }

    #mobileCartBadge {
        display: flex;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .products-grid .package-card-new img {
        height: 120px;
    }

    .products-grid .package-card-info {
        padding: 10px;
    }

    .products-grid .package-card-info h4 {
        font-size: 13px;
    }

    .packages-service-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .package-service-item {
        flex-direction: column;
        text-align: center;
        padding: 10px;
        gap: 8px;
    }

    .service-icon-small {
        width: 40px;
        height: 40px;
    }

    .service-text h4 {
        font-size: 12px;
    }

    .service-text p {
        font-size: 10px;
    }
}

/* ===== CHECKOUT PAGE STYLES ===== */
.checkout-page {
    background: var(--light-gray);
}

/* Checkout Header */
.checkout-steps {
    display: flex;
    align-items: center;
    gap: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    opacity: 0.4;
}

.step.completed,
.step.active {
    opacity: 1;
}

.step i {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.step.completed i {
    background: var(--success);
    color: white;
}

.step.active i {
    background: var(--primary-yellow);
    color: var(--black);
}

.step span {
    font-size: 12px;
    font-weight: 600;
}

.step-line {
    width: 60px;
    height: 2px;
    background: var(--light-gray);
    margin: 0 10px;
    margin-bottom: 20px;
}

.step-line.completed {
    background: var(--success);
}

.header-help {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.header-help i {
    color: var(--primary-yellow);
}

.header-help a {
    color: var(--primary-yellow);
    font-weight: 700;
}

/* Checkout Container */
/* ===== CHECKOUT PAGE STYLES (v97 Redesign) ===== */
.checkout-page {
    background: #f8fafc;
}

.checkout-section {
    padding: 30px 0 100px;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    align-items: start;
}

/* LEFT - Step-based Checkout */
.order-details-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Saving Tag */
.saving-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-weight: 600;
    color: var(--black);
    font-size: 14px;
}

.saving-tag i {
    color: #10b981;
    font-size: 18px;
    transform: rotate(90deg);
}

/* Checkout Step Cards */
.checkout-steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1px;
    /* Divider effect */
    background: #e2e8f0;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.checkout-step-card {
    background: var(--white);
    padding: 24px;
    transition: var(--transition);
}

.step-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-icon-box {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 18px;
    flex-shrink: 0;
}

.step-title-area {
    flex: 1;
}

.step-title-area h3 {
    font-size: 18px;
    color: var(--black);
    font-weight: 600;
    margin: 0;
}

.step-title-area p {
    font-size: 15px;
    color: #64748b;
    margin-top: 4px;
}

.step-status-icon {
    color: #cbd5e1;
    font-size: 22px;
}

/* Active/Completed State */
.checkout-step-card.active .step-icon-box {
    background: #f1f5f9;
    color: #64748b;
}

.checkout-step-card.active .step-status-icon {
    color: #10b981;
}

/* Current Step State */
.checkout-step-card.current {
    background: var(--white);
}

.checkout-step-card.current .step-icon-box {
    background: #f1f5f9;
    color: #64748b;
}

/* Disabled/Placeholder State */
.checkout-step-card.disabled {
    opacity: 0.8;
}

.checkout-step-card.disabled .step-title-area h3 {
    color: #94a3b8;
}

/* Step Content */
.step-card-content {
    margin-top: 20px;
    padding-left: 68px;
    /* Align with title */
}

.btn-select-address {
    width: 100%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    /* Purple from image */
    color: white;
    padding: 16px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-select-address:hover {
    background: #FFA500;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Cancellation Policy */
.cancellation-policy-v97 {
    margin-top: 20px;
    padding: 10px 5px;
}

.cancellation-policy-v97 h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.cancellation-policy-v97 ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.cancellation-policy-v97 li {
    position: relative;
    padding-left: 25px;
    font-size: 15px;
    color: #334155;
    line-height: 1.6;
}

.cancellation-policy-v97 li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 24px;
    line-height: 1;
    color: var(--black);
}

.read-full-policy {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* RIGHT - Order Summary (Synced with Menu) */
.order-summary-sidebar {
    position: sticky;
    top: 90px;
}

.summary-sticky-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.summary-header .order-id h3 {
    font-size: 18px;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 15px;
}

.booking-details-mini {
    background: #f8fafc;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-item span:first-child {
    font-size: 13px;
    color: #64748b;
}

.detail-item .val {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
}

.edit-icon {
    font-size: 12px;
    color: var(--primary-yellow);
    cursor: pointer;
}

.calendar-slot-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px;
    margin-top: 10px;
}

.slot-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
}

.slot-item i {
    color: #64748b;
}

.btn-edit-slot {
    margin-left: auto;
    color: #ffba00;
    font-weight: 700;
    font-size: 13px;
}

/* Cart Items Grouped */
.cart-items-grouped {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 5px;
}

.cart-items-grouped::-webkit-scrollbar {
    width: 4px;
}

.cart-items-grouped::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}

/* Summary Footer */
.summary-footer-v {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.disclaimer-text {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 15px;
    line-height: 1.4;
}

.fee-row,
.grand-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.fee-row span {
    font-size: 14px;
    color: #64748b;
}

.grand-total-row span {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
}

.grand-total-row strong {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
}

.proceed-payment-btn {
    width: 100%;
    background: var(--black);
    color: var(--white);
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 15px;
    transition: var(--transition);
}

.proceed-payment-btn:hover {
    background: var(--primary-yellow);
    color: var(--black);
}

/* Included Card */
.whats-included-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 20px;
    margin-top: 10px;
}

.whats-included-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.inc-item {
    margin-bottom: 12px;
}

.inc-item:last-child {
    margin-bottom: 0;
}

.inc-item h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}

.inc-item p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
}

/* Responsive Fixes */
@media (max-width: 992px) {
    .checkout-container {
        grid-template-columns: 1fr;
    }

    .order-summary-sidebar {
        position: static;
        order: 2;
    }

    .order-details-section {
        order: 1;
    }
}

@media (max-width: 600px) {
    .checkout-step-card {
        padding: 16px;
    }

    .step-card-header {
        gap: 12px;
    }

    .step-icon-box {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .step-title-area h3 {
        font-size: 16px;
    }

    .step-card-content {
        padding-left: 52px;
    }

    .btn-select-address {
        font-size: 16px;
        padding: 14px;
    }
}

textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
}

textarea:focus {
    border-color: var(--primary-yellow);
    outline: none;
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.form-select:focus {
    border-color: var(--primary-yellow);
    outline: none;
}

.add-details-btn {
    background: transparent;
    color: var(--primary-yellow);
    padding: 8px 15px;
    border: 2px dashed var(--primary-yellow);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.add-details-btn:hover {
    background: var(--primary-yellow);
    color: var(--black);
}

.address-actions {
    float: right;
}

.action-btn {
    background: transparent;
    color: var(--primary-yellow);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--light-gray);
}

.select-address-btn {
    width: 100%;
    background: var(--primary-yellow);
    color: var(--black);
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    margin-top: 10px;
    transition: var(--transition);
}

.select-address-btn:hover {
    background: var(--dark-yellow);
}

.slot-display {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--light-gray);
    border-radius: 8px;
    font-size: 14px;
}

.slot-display i {
    color: var(--primary-yellow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-card-content input[type="text"],
.step-card-content input[type="email"],
.step-card-content input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: var(--black);
    background: #f8fafc;
    transition: var(--transition);
}

.step-card-content input:focus {
    border-color: var(--primary-yellow);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.1);
}

.step-card-content {
    padding-top: 20px;
    padding-left: 68px;
    /* Align with title area */
}

@media (max-width: 600px) {
    .step-card-content {
        padding-left: 0;
        padding-top: 15px;
    }
}

/* Payment Section */
.payment-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--light-gray);
}

.payment-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.payment-option:has(input:checked) {
    border-color: var(--primary-yellow);
    background: rgba(255, 193, 7, 0.05);
}

.payment-option input[type="radio"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    accent-color: var(--primary-yellow);
}

.option-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.option-content i {
    font-size: 28px;
    color: var(--primary-yellow);
}

.option-content strong {
    display: block;
    font-size: 15px;
    margin-bottom: 3px;
}

.option-content small {
    color: var(--text-light);
    font-size: 12px;
}

.pay-btn {
    width: 100%;
    background: var(--primary-yellow);
    color: var(--black);
    padding: 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.pay-btn:hover {
    background: var(--dark-yellow);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
}

.terms-checkbox {
    margin-top: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.terms-checkbox input {
    margin-right: 8px;
}

.terms-checkbox a {
    color: var(--primary-yellow);
    font-weight: 600;
}

/* Info Cards */
.info-card {
    background: #E3F2FD;
    border-left: 4px solid #2196F3;
    padding: 20px;
    border-radius: 8px;
}

.info-card h4 {
    font-size: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2196F3;
}

.info-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.info-card a {
    color: #2196F3;
    font-weight: 600;
}

.learn-more-btn {
    background: transparent;
    color: #2196F3;
    padding: 8px 15px;
    border: 2px solid #2196F3;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.learn-more-btn:hover {
    background: #2196F3;
    color: white;
}

.support-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.support-icon {
    width: 60px;
    height: 60px;
}

.support-text {
    flex: 1;
}

.support-text p {
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.5;
}

.whatsapp-connect-btn {
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.whatsapp-connect-btn:hover {
    background: #128C7E;
}

/* Order Summary - RIGHT */
.order-summary-section {
    position: sticky;
    top: 90px;
}

.summary-sticky {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.summary-header {
    background: var(--primary-yellow);
    padding: 20px;
}

.summary-header h3 {
    font-size: 18px;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order-id {
    font-size: 16px;
    font-weight: 600;
}

.event-details-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 20px;
    background: var(--light-gray);
}

.detail-icon {
    text-align: center;
}

.detail-icon i {
    font-size: 24px;
    color: var(--primary-yellow);
    margin-bottom: 8px;
}

.detail-icon strong {
    display: block;
    font-size: 16px;
    color: var(--black);
}

.detail-icon small {
    font-size: 11px;
    color: var(--text-light);
}

.edit-package-btn {
    width: calc(100% - 40px);
    margin: 20px;
    background: transparent;
    border: 2px solid var(--primary-yellow);
    color: var(--primary-yellow);
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.edit-package-btn:hover {
    background: var(--primary-yellow);
    color: var(--black);
}

.package-selection {
    padding: 0 20px 15px;
    border-bottom: 2px solid var(--light-gray);
}

.package-selection label {
    display: block;
    font-size: 13px;
    margin-bottom: 10px;
}

.select-package-btn {
    background: var(--light-gray);
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.select-package-btn:hover {
    background: var(--primary-yellow);
}

.whatsapp-notification {
    padding: 15px 20px;
    background: #E8F5E9;
    border-bottom: 2px solid var(--light-gray);
}

.whatsapp-notification label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    cursor: pointer;
}

.whatsapp-notification i {
    color: #25D366;
    font-size: 18px;
}

.whatsapp-notification input {
    width: 18px;
    height: 18px;
    accent-color: #25D366;
}

.order-items-list {
    max-height: 250px;
    overflow-y: auto;
    padding: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
}

.order-item-name {
    color: var(--text-dark);
}

.order-item-qty {
    color: var(--text-light);
    font-size: 12px;
}

.price-breakdown {
    padding: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
}

.price-row.discount {
    color: var(--success);
}

.price-row.total {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    padding-top: 15px;
}

.packing-select {
    display: flex;
    align-items: center;
    gap: 10px;
}

.packing-select select {
    padding: 5px 10px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-size: 12px;
}

.divider {
    height: 1px;
    background: var(--light-gray);
    margin: 15px 0;
}

.coupons-section {
    padding: 20px;
    background: var(--light-gray);
}

.coupons-btn {
    width: 100%;
    background: transparent;
    border: 2px dashed var(--primary-yellow);
    color: var(--primary-yellow);
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.coupons-btn:hover {
    background: var(--primary-yellow);
    color: var(--black);
}

.coupons-content {
    margin-top: 15px;
}

.coupon-input {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.coupon-input input {
    flex: 1;
    padding: 10px;
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    font-size: 13px;
}

.coupon-input button {
    background: var(--primary-yellow);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

.coupon-input button:hover {
    background: var(--dark-yellow);
}

.available-coupons h5 {
    font-size: 14px;
    margin-bottom: 10px;
}

.coupon-card {
    background: var(--white);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.coupon-card:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.coupon-card i {
    font-size: 24px;
    color: var(--primary-yellow);
}

.coupon-card strong {
    display: block;
    font-size: 14px;
    color: var(--black);
    margin-bottom: 3px;
}

.coupon-card p {
    font-size: 11px;
    color: var(--text-light);
}

.coupon-card button {
    margin-left: auto;
    background: transparent;
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.coupon-card button:hover {
    background: var(--primary-yellow);
    color: var(--black);
}

/* Checkout Footer */
.checkout-footer {
    background: var(--black);
    color: var(--white);
    padding: 40px 0 90px;
}

/* Checkout Steps Row Layout */
.checkout-steps-container {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

/* Checkout Steps (Centered Row) */
.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto 15px;
}


.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    cursor: pointer;
    transition: var(--transition);
}

.step i {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #999;
    border: 1px solid #ddd;
}

.step span {
    font-size: 11px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
}

.step.completed i {
    background: #2e7d32;
    color: #fff;
    border-color: #2e7d32;
}

.step.completed span {
    color: #2e7d32;
}

.step.active i {
    background: #ffc107;
    color: #000;
    border-color: #ffc107;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
}

.step.active span {
    color: #000;
    font-weight: 800;
}

.step-line {
    height: 2px;
    background: #ddd;
    flex: 1;
    max-width: 50px;
    margin-top: -18px;
    /* Aligns with icons */
}

.step-line.completed {
    background: #2e7d32;
}

/* Header Help Section */
.header-help {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.header-help span {
    font-size: 11px;
    color: #666;
    font-weight: 600;
}

.header-help a {
    font-size: 14px;
    font-weight: 800;
    color: #222;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-help i {
    font-size: 13px;
    color: #ffc107;
}

/* Assistance Bar */
.assistance-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px dashed #eee;
    font-size: 13px;
    color: #666;
}

.assistance-bar i {
    color: #ffc107;
}

.assistance-bar strong {
    color: #000;
    font-weight: 800;
}

@media (max-width: 480px) {
    .checkout-steps {
        gap: 5px;
        padding: 0 5px;
    }

    .step i {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .step span {
        font-size: 9px;
    }

    .step-line {
        margin-top: -16px;
        max-width: 30px;
    }

    .assistance-bar {
        font-size: 12px;
    }
}

.checkout-footer {
    background: var(--black);
    color: var(--white);
    padding: 40px 0 90px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: var(--transition);
}

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

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-social span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--white);
    transform: translateY(-3px);
}

.footer-social i {
    color: var(--black);
}

.footer-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-info i {
    color: var(--primary-yellow);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-bottom: 8px;
}

/* Responsive Checkout */
@media (max-width: 1200px) {
    .checkout-container {
        grid-template-columns: 1fr 400px;
    }
}

@media (max-width: 992px) {
    .checkout-container {
        grid-template-columns: 1fr;
    }

    .order-summary-section {
        position: static;
    }

    /* REMOVED: display: none to keep steps visible */

    .help-section {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .event-details-icons {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Diet Legend Premium Style */
.diet-legend-premium {
    display: flex;
    gap: 12px;
    background: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    border: 1px solid #ffcc00;
    margin-left: 15px;
    cursor: pointer;
    /* Added for interactivity */
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #444;
    transition: var(--transition);
    opacity: 0.6;
    /* Dim by default */
}

.legend-item.active {
    opacity: 1;
    transform: scale(1.1);
}

.legend-item.veg i {
    color: #2e7d32;
}

.legend-item.non-veg i {
    color: #d32f2f;
}

@media (max-width: 480px) {
    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .diet-legend-premium {
        margin-left: 0;
        padding: 5px 12px;
    }
}

/* ===== MENU PAGE PREMIUM REDESIGN (v=41) - END OF FILE FOR MAXIMUM SPECIFICITY ===== */

.menu-page {
    background: #fff;
    overflow-x: hidden;
}

.menu-section {
    padding: 15px 0;
}

.menu-container {
    display: grid !important;
    grid-template-columns: 260px 1fr 340px !important;
    gap: 15px !important;
    max-width: 1440px !important;
    margin: 0 auto;
    padding: 0 15px;
    align-items: start;
}

/* SIDEBARS - NO SCROLLERS */
.categories-sidebar,
.order-summary-sidebar {
    position: sticky !important;
    top: 80px !important;
    background: #fff !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 8px;
    overflow-y: auto;
    scrollbar-width: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    z-index: 10;
}

.categories-sidebar::-webkit-scrollbar,
.order-summary-sidebar::-webkit-scrollbar {
    display: none;
}

/* LEFT SIDEBAR - Categories */
.categories-sidebar h2 {
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.2s;
    border-left: 4px solid transparent;
}

.category-item.active {
    background: linear-gradient(90deg, #fffcf0 0%, #fff 100%) !important;
    border-left-color: var(--primary-yellow) !important;
}

.category-item .service-icon-small {
    width: 32px;
    height: 32px;
}

.category-item .service-text h4 {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

.category-item .service-text p {
    font-size: 11px;
    color: #999;
}

/* MIDDLE SECTION */
.products-section {
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
}

.products-action-bar-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #fbfbfb;
    border-bottom: 1px solid #eee;
    border-radius: 8px 8px 0 0;
}

.search-box-p input {
    width: 280px;
    padding: 8px 15px 8px 35px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.premium-badge-v {
    border: 1px solid #9c27b0;
    color: #9c27b0;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.diet-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
}

.diet-toggle.veg {
    color: #2e7d32;
}

.diet-toggle.non-veg {
    color: #c62828;
}

/* PRODUCT CARDS */
.product-card {
    border: 1px solid #eee !important;
    border-radius: 8px;
    padding: 8px !important;
}

.product-card h4 {
    font-size: 13px;
    height: 34px;
    margin-bottom: 2px;
    line-height: 1.3;
}

.product-card-info p {
    display: none !important;
}

.product-card .btn-view-small {
    width: 100%;
    background: #fff;
    border: 1px solid #ffba00;
    color: #ffba00;
    padding: 7px;
    border-radius: 5px;
    font-weight: 700;
}

/* RIGHT SIDEBAR - Order Summary Match */
.order-summary-sidebar {
    padding: 0 !important;
}

.summary-sticky-card {
    padding: 20px !important;
    background: transparent !important;
}

/* CRITICAL: Overriding any legacy summary-header background */
.summary-header {
    background: transparent !important;
    padding: 0 !important;
    margin-bottom: 15px;
    display: block !important;
}

.summary-header .order-id h3 {
    font-size: 20px !important;
    color: var(--black) !important;
    font-weight: 800 !important;
    background: transparent !important;
}

.booking-details-mini {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: transparent !important;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
}

.detail-item .val {
    color: #333 !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.detail-item .edit-icon {
    color: #42a5f5;
    font-size: 11px;
}

.calendar-slot-card {
    border: 1.5px solid #b39ddb !important;
    /* Purple border like ref */
    background: transparent !important;
    border-radius: 6px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.slot-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
}

.slot-item i {
    color: #666;
}

.btn-edit-slot {
    background: none;
    border: none;
    color: #333;
    font-weight: 700;
    font-size: 11px;
    cursor: pointer;
}

/* Grouped Cart Items Styling */
.cart-items-grouped {
    margin: 0 -20px;
    /* Bleed to ends */
}

.cart-group {
    margin-bottom: 10px;
}

.cart-group-header {
    background: #f5f5f5 !important;
    /* Grey header as per ref */
    padding: 6px 20px;
    font-size: 11px;
    font-weight: 800;
    color: #333;
    text-transform: capitalize;
}

.cart-item-summary {
    padding: 8px 20px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 10px;
}

.cart-item-summary-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #444;
}

.purple-icon-mini {
    color: #9c27b0;
    font-size: 12px;
}

.diet-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.diet-dot.veg {
    background: #4caf50;
}

.diet-dot.non-veg {
    background: #f44336;
}

/* PILL QUANTITY CONTROL */
.cart-pill-control {
    background: #f2f2f2;
    border-radius: 20px;
    padding: 2px 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e0e0e0;
}

.cart-pill-btn {
    border: none;
    background: none;
    color: #ffba00;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
}

.cart-pill-val {
    font-size: 12px;
    font-weight: 700;
    color: #9c27b0;
    /* Purple value like ref */
    min-width: 25px;
    text-align: center;
}

.item-unit-mini {
    font-size: 11px;
    color: #888;
    min-width: 30px;
}

/* Footer & Total */
.summary-footer-v {
    margin-top: 15px;
    padding: 0;
}

.disclaimer-text {
    font-size: 10px;
    color: #999 !important;
    text-align: center;
    margin-bottom: 10px;
    background: transparent !important;
}

.summary-divider-line {
    height: 1px;
    background: #eee;
    margin-bottom: 10px;
}

.fee-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.grand-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 800;
    color: #222 !important;
    margin-bottom: 20px;
    background: transparent !important;
}

.proceed-payment-btn {
    width: 100%;
    background: var(--primary-yellow) !important;
    color: var(--black) !important;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
}

.whats-included-card {
    margin-top: 25px;
    background: #fff !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 10px;
    padding: 20px;
}

.whats-included-card h4 {
    font-size: 18px;
    color: var(--primary-yellow) !important;
    font-weight: 800;
    margin-bottom: 15px;
}

/* Fix mobile nav z-index */
.mobile-nav {
    z-index: 1000;
}

/* ===== MOBILE RESPONSIVE FIX (v=43) - PLACED AT VERY END ===== */
@media (max-width: 1024px) {
    .menu-container {
        grid-template-columns: 240px 1fr !important;
        gap: 15px !important;
    }

    .order-summary-sidebar {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .menu-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        padding: 0 10px !important;
    }

    .categories-sidebar {
        order: 1 !important;
        position: relative !important;
        top: 0 !important;
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        z-index: 5 !important;
    }

    .categories-sidebar h2 {
        font-size: 16px !important;
        padding: 10px !important;
    }

    .packages-service-list {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 8px !important;
        padding: 5px !important;
    }

    .category-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 10px 5px !important;
        border-radius: 8px !important;
        border: 1px solid #eee !important;
    }

    .category-item.active {
        border-left: none !important;
        border: 1.5px solid var(--primary-yellow) !important;
        background: #fffcf0 !important;
    }

    .category-item .service-icon-small {
        margin-bottom: 5px !important;
    }

    .category-item .service-text h4 {
        font-size: 11px !important;
    }

    .category-item .service-text p {
        display: none !important;
    }

    .products-section {
        order: 2 !important;
        width: 100% !important;
        border: none !important;
    }

    .products-action-bar-new {
        flex-direction: column !important;
        gap: 12px !important;
        padding: 15px !important;
    }

    .search-box-p {
        width: 100% !important;
    }

    .search-box-p input {
        width: 100% !important;
    }

    .diet-toggles-v {
        width: 100% !important;
        justify-content: space-between !important;
    }

    .diet-toggle {
        flex: 1 !important;
        justify-content: center !important;
    }

    .packages-grid-new.products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 10px !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .order-summary-sidebar {
        order: 3 !important;
        display: block !important;
        position: relative !important;
        top: 0 !important;
        width: 100% !important;
        margin-bottom: 30px !important;
        box-shadow: none !important;
        border-top: 2px solid var(--primary-yellow) !important;
    }

    .proceed-payment-btn {
        background: var(--primary-yellow) !important;
        color: var(--black) !important;
        padding: 15px !important;
        font-size: 15px !important;
        position: sticky !important;
        bottom: 75px !important;
        z-index: 1001 !important;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1) !important;
    }

    .product-card-info p {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .packages-service-list {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ===== LOADING SPINNER FOR SCROLL ===== */
.loader-container {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.loader-v45 {
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-yellow);
    border-radius: 50%;
    animation: spin-v45 1s linear infinite;
}

@keyframes spin-v45 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}