/* ===== 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);
}

/* Fix for today's date highlight in native date picker */
input[type="date"]:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.1);
}

input[type="date"]::-webkit-datetime-edit-day-field:focus,
input[type="date"]::-webkit-datetime-edit-month-field:focus,
input[type="date"]::-webkit-datetime-edit-year-field:focus {
    background-color: var(--primary-yellow);
    color: var(--black);
    border-radius: 2px;
}

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;
}

/* ===== BOOKING MODAL PREMIUM STYLES ===== */
.booking-modal-content {
    max-width: 650px !important;
    width: 95% !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    padding: 20px 25px !important;
    background: #ffffff !important;
    border-radius: 20px !important;
    position: relative;
    border: 3px solid var(--primary-yellow) !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    margin: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.booking-modal-content::-webkit-scrollbar {
    display: none;
}

.premium-gradient-title {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    font-size: 24px;
    width: 100%;
}

/* Center headings in the booking steps */
.booking-step h2 {
    text-align: center;
    margin-bottom: 5px;
}

.booking-modal-content::before {
    display: none !important;
    /* Remove the default yellow line */
}

.close-modal-premium {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    line-height: 1;
}

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

.booking-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}

/* Step Box */
.step-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 30px;
    background: #e5e7eb;
    color: #6b7280;
    font-weight: 500;
    transition: 0.3s ease;
}

/* Active Step */
.step-indicator.active {
    background: #e0a800;
    color: #fff;
    box-shadow: 0 4px 14px rgba(224, 168, 0, 0.4);
}

/* Icon Circle */
.step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Line Between */
.step-line {
    width: 60px;
    height: 2px;
    margin-top: 22px !important;
    background: #cbd5e1;
}

/* Text */
.step-label {
    font-size: 15px;
    white-space: nowrap;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.step-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 15px;
}

.form-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.form-group-premium.full-width {
    grid-column: span 2;
}

.form-group-premium label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group-premium label i {
    color: var(--primary-yellow);
    font-size: 15px;
}

.premium-select-wrapper,
.premium-input-wrapper {
    position: relative;
}

.premium-select-wrapper select,
.premium-input-wrapper input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    color: var(--black);
    appearance: none;
    /* For custom select */
}

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

.premium-select-wrapper::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
    font-size: 12px;
}

.modal-footer-premium {
    margin-top: 35px;
    display: flex;
    justify-content: flex-end;
}

.modal-footer-premium.dual-btn {
    justify-content: space-between;
}

.btn-next-step,
.btn-submit-booking {
    background: var(--black);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-prev-step {
    background: #f1f5f9;
    color: var(--text-dark);
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-next-step:hover,
.btn-submit-booking:hover {
    background: var(--primary-yellow);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-prev-step:hover {
    background: #e2e8f0;
}

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

    .form-group-premium.full-width {
        grid-column: span 1;
    }

    .booking-modal-content {
        padding: 30px 20px !important;
        margin-top: 50px;
        /* Viewport safety */
        max-height: 90vh;
        overflow-y: auto;
    }

    .step-line {
        width: 30px;
    }

    .btn-next-step,
    .btn-submit-booking,
    .btn-prev-step {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .modal-footer-premium {
        flex-direction: column-reverse;
        gap: 12px;
        align-items: center;
    }

    .modal-footer-premium.dual-btn {
        flex-direction: column-reverse; /* Put 'Back' at bottom, 'Next/Submit' at top */
    }
}

/* Premium Input Animation */
.premium-input-wrapper::after,
.premium-select-wrapper::after {
    transition: var(--transition);
}

.premium-input-wrapper:focus-within i,
.premium-select-wrapper:focus-within i {
    color: var(--black) !important;
    transform: scale(1.1);
}

.premium-input-wrapper.with-action {
    display: flex;
    gap: 10px;
}

.premium-input-wrapper.with-action input {
    flex: 1;
}

.btn-inline-action {
    background: var(--primary-yellow);
    color: var(--black);
    padding: 0 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.2);
}

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

.btn-inline-action:disabled {
    background: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
    box-shadow: none;
}

.booking-modal-content {
    animation: modalPop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

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

/* Form Validation Styles */
.form-group-premium input.error,
.form-group-premium select.error {
    border-color: var(--danger) !important;
    background-color: #fff5f5 !important;
}

.form-group-premium input.error:focus,
.form-group-premium select.error:focus {
    box-shadow: 0 0 0 4px rgba(244, 67, 54, 0.1) !important;
}

/* 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: 50%;
    transform: translateX(-50%) translateY(10px);
    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;
    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: translateX(-50%) 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;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        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 {
        width: 85vw;
        position: fixed;
        left: 50%;
        top: 100px;
        /* Aligned with header height */
        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;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Aligns flex items to the left */
    text-align: left;
    /* Aligns text to the left */
}

.services-header-compact .premium-gradient-title {
    text-align: left;
    width: auto;
}

.services-header-compact .heading-decoration {
    justify-content: flex-start;
    width: 100%;
}

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

/* 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: 97%;
}

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

.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: 97%;
    /* 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: 30px 0;
    padding-bottom: 60px;
    background: var(--light-gray);
}

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

@media (min-width: 993px) {
    .packages-content {
        position: sticky;
        top: 85px; /* Matched with the global header height */
        z-index: 10;
        height: fit-content;
    }
}

.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: 3px;
}

.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: 15px; /* Reduced from 25px */
    flex-wrap: wrap;
    gap: 45px;
    /*position: sticky;*/
    top: 85px; /* Ensure gallery header aligns perfectly */
    z-index: 10;
    background: #f8fafc; /* Keep solid background to prevent overlap peek */
    padding: 10px;
    border-radius: 8px;
}

.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;
    top: 166px;
    right: 15px;
    background: #399245;
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 3px;
    border: 2px solid #fff;
}

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

.package-card-info h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #333;
}

.package-card-info p {
    font-size: 11px;
    color: #999;
    margin-bottom: 18px;
    line-height: 1.4;
}

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

.package-card-price {
    font-size: 10px;
    color: #888;
}

.package-card-price strong {
    font-size: 16px;
    color: #222;
    font-weight: 800;
    margin: 0 4px; /* Force spacing around the price tag */
}

.btn-view-small {
    background: #fffdf0; /* very light yellow tint */
    border: 1px solid #fed136; /* vibrant yellow border */
    color: #fdbe00; /* matching yellow text */
    padding: 6px 18px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-view-small:hover {
    background: #fdbe00;
    color: #fff;
    border-color: #fdbe00;
}

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

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

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

    .packages-filter-bar {
        width: 100%;
        gap: 8px;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
    }

    .packages-filter-bar::-webkit-scrollbar {
        height: 2px;
    }

    .packages-filter-bar .compact-select {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    #packages-container {
        min-height: 400px; /* Stabilize height during loading */
    }
}

@media (max-width: 768px) {
    .packages-layout {
        display: grid !important;
        grid-template-columns: 70px 1fr !important; /* Slim sidebar restored */
        gap: 8px !important;
        height: 520px !important; /* Restored height */
        border: none !important;
        background: transparent !important;
        overflow: hidden !important;
        padding: 0 4px !important;
        width: 100% !important;
    }

    .packages-content {
        order: 1 !important;
        height: 100% !important;
        overflow-y: auto !important;
        background: #fff !important;
        border: 1px solid #eee !important;
        border-radius: 12px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

    .packages-service-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }

    .package-service-item {
        padding: 10px 2px !important;
        border-bottom: 1px solid #f8fafc !important;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .package-service-item .service-icon-small {
        width: 25px;
        height: 25px;
        margin: 0 auto;
    }

    .package-service-item .service-text h4 {
        font-size: 8px !important;
        font-weight: 700;
        margin: 0;
        line-height: 1.1;
    }

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

    .package-service-item.active {
        background: #fffdf0 !important;
        border-left: 3px solid var(--primary-yellow) !important;
    }

    .packages-gallery {
        order: 2 !important;
        height: 100% !important;
        overflow-y: auto !important;
        background: #fff !important;
        border: 1px solid #eee !important;
        border-radius: 12px !important;
        display: flex;
        flex-direction: column;
        padding: 0 !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

    .packages-gallery-header {
        padding: 8px 6px !important;
        border-bottom: 1px solid #eee;
        margin-bottom: 8px !important;
        background: #fff;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .packages-filter-bar {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 4px !important;
        width: 100% !important;
        align-items: center !important;
    }

    .compact-select {
        flex: 1 !important;
        min-width: 0 !important;
        width: auto !important;
        height: 24px !important;
        font-size: 8.5px !important;
        padding: 0 2px !important;
        border: 1px solid #eee !important;
        border-radius: 4px !important;
        appearance: none; /* Hide default arrow to save space */
        background-image: none !important;
    }

    .packages-grid-new {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        padding: 0 8px 15px 8px !important;
    }

    .package-card-new {
        border: 1px solid #f0f0f0 !important;
        border-radius: 10px !important;
        display: flex !important;
        flex-direction: column !important;
        background: #fff !important;
    }

    .package-card-img-wrapper {
        height: 85px !important;
    }

    .package-rating {
        top: 72px !important;
        right: 6px !important;
        padding: 1px 5px !important;
        font-size: 8.5px !important;
    }

    .package-card-info {
        padding: 8px 6px !important;
        flex: 1;
    }

    .package-card-info h4 {
        font-size: 10px !important;
        margin-bottom: 3px !important;
        line-height: 1.2;
    }

    .package-card-info p {
        font-size: 8px !important;
        margin-bottom: 8px !important;
        color: #999 !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .package-card-footer {
        padding-top: 6px !important;
        border-top: 1px dashed #e0e0e0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
    }

    .package-card-price {
        font-size: 8.5px !important;
    }

    .package-card-price strong {
        font-size: 12px !important;
    }

    .btn-view-small {
        padding: 3px 0 !important;
        width: 100% !important;
        text-align: center !important;
        font-size: 8.5px !important;
    }
}

@media (max-width: 480px) {
    .packages-layout {
        grid-template-columns: 65px 1fr !important;
        height: 500px !important;
    }

    .package-service-item {
        padding: 8px 2px !important;
    }
}

@media (max-width: 600px) {
    .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: flex-start;
    gap: 15px;
    padding: 15px;
    background: #fbfbfb;
    border-bottom: 1px solid #eee;
    border-radius: 8px 8px 0 0;
}

.search-box-p {
    margin-right: auto;
    position: relative;
    max-width: 100%;
    width: 100%;
}

@media (min-width: 768px) {
    .search-box-p {
        width: auto;
    }
}

.search-box-p i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    z-index: 10;
}

.search-box-p input {
    width: 100%;
    max-width: 400px;
    padding: 8px 15px 8px 35px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.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;
}

.close-mobile-cart {
    display: none;
}

.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;
    align-items: center;
    margin-bottom: 20px;
}

.grand-total-row span,
.grand-total-row strong {
    font-size: 18px;
    font-weight: 800;
    color: #222;
}

.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,
.product-card .btn-view-small.disabled {
    background: #ffba00;
    color: #fff;
    border-color: #ffba00;
    opacity: 1;
}

.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: 30px 0;
}

.trending-slider {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    width: 100%;
}

.trending-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.trending-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-325px * var(--services-count, 7)));
    }
}

.trending-card {
    flex: 0 0 300px;
    max-width: 300px;
    position: relative;
    height: 350px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.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;
}

/* ===== VIDEO TESTIMONIALS SECTION ===== */
.video-testimonials-section {
    padding: 30px 0;
    background: #fff;
    --card-width: 200px;
    --card-gap: 20px;
}

.video-slider {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    width: 100%;
}

.video-track {
    display: flex;
    gap: var(--card-gap);
    width: max-content;
    animation: videoScroll 40s linear infinite;
}

.video-track:hover {
    animation-play-state: paused;
}

@keyframes videoScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc((var(--card-width) + var(--card-gap)) * -6));
    }
}

.video-card {
    flex: 0 0 var(--card-width);
    max-width: var(--card-width);
    height: 350px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f44336;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    background: #f44336;
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

/* ===== TESTIMONIALS SECTION ===== */
/* ===== TESTIMONIALS SECTION (3D FLIP) ===== */
.testimonials-section {
    padding: 30px 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 {
    height: 400px;
    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: 42px 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 h4 {
    font-weight: 400;
}

.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(180px, 1fr));
    gap: 30px;
    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: center;
    gap: 12px;
}

.contact-info i {
    color: var(--primary-yellow);
    width: 16px;
    text-align: center;
}

.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-map-container {
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.footer-map-container:hover {
    border-color: var(--primary-yellow);
    box-shadow: 0 5px 15px rgba(255, 186, 0, 0.1);
}

.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: 130px;
    /* Adjust based on design */
    right: 20px;
    background: #25d366;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 2000;
    text-decoration: none;
    animation: pulse 2s infinite;
    border: 2px solid #fff;
}

.whatsapp-float i {
    font-size: 24px;
    color: #fff;
}

.whatsapp-float span {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.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: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white) !important;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.close-modal-btn:hover {
    background: var(--danger);
    transform: rotate(90deg);
}
.services-modal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 15px 20px 40px 20px; /* Increased bottom padding */
    background: var(--white);
    flex-grow: 1;
}
/* .services-modal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding-top: 10px;
    background: var(--white);
    overflow-y: auto;
    flex-grow: 1;
} */

.service-card-custom {
    padding: 15px 10px;
}
.modal-service-card {
    /* padding: 15px 10px; */
    background: var(--white);
    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;
    padding-bottom: 12px; /* Added internal space */
}

.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: 65px; /* Mode slightly smaller */
    height: 65px;
    border-radius: 50%;
    border: 3px solid var(--primary-yellow);
    overflow: hidden;
    margin-bottom: 10px;
    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 15px 35px 15px;
    background: #f8f9fa;
    text-align: center;
    font-size: 12px;
    color: #999;
    border-top: 1px solid #eee;
}

/* Web-specific fixes for Services Modal */
@media (min-width: 769px) {
    .services-modal-content .modal-header-premium {
        margin: 0 !important;
        padding: 25px 20px !important;
    }

    .services-modal-content .close-modal-btn {
        top: 20px !important;
        right: 20px !important;
        width: 36px !important;
        height: 36px !important;
    }

    .services-modal-content .modal-footer-premium {
        padding: 25px 20px 50px 20px !important;
    }
}

@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: 149px;
    }

    .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: 149px;
        right: 15px;
        width: auto !important;
        max-width: 180px; /* Safety cap */
        height: 42px;
        padding: 6px 15px !important;
        gap: 8px !important;
    }

    .whatsapp-float span {
        font-size: 10px !important;
        letter-spacing: 0.1px;
        line-height: 1.2;
        text-transform: none !important;
    }

    .whatsapp-float i {
        font-size: 20px !important;
    }

    /* Mobile Stats Flex Fix */
    .services-stats {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        margin-top: 20px !important;
    }

    .stat-box {
        min-width: unset !important;
        flex: 1 !important;
        padding: 8px 10px !important;
        gap: 10px !important;
        justify-content: center;
        border-radius: 10px !important;
    }

    .stat-box img,
    .stat-box i {
        width: 24px !important;
        height: 24px !important;
        font-size: 18px !important;
    }

    .stat-box strong {
        font-size: 16px !important;
        display: block;
    }

    .stat-box p {
        font-size: 10px !important;
        margin: 0 !important;
        white-space: nowrap;
    }

    .stars-rating {
        font-size: 10px !important;
        display: block;
    }
}

@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: stretch; /* Align bottom */
}

/* 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;
    margin-top: 10px;
}

.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;
    padding: 3px 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 1px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 8px;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
}

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

.product-badge.non-veg,
.product-badge.nonveg {
    background: #d32f2f;
}

.product-badge.standard,
.product-badge.standard-setup {
    background: #2196f3;
}

.product-badge.premium,
.product-badge.premium-setup {
    background: #9c27b0;
}

.product-badge.no-onion-garlic {
    background: #ff9800;
}

.product-badge.veg-&-non-veg,
.product-badge.veg-and-non-veg {
    background: linear-gradient(90deg, #00c853 50%, #d32f2f 50%);
}

.product-badge.bartender,
.product-badge.bar-setup {
    background: #607d8b;
}

.product-badge i {
    font-size: 7px;
    margin-right: 2px;
}

.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: calc(100vh - 450px);
    overflow-y: auto;
    padding: 15px;
    scrollbar-width: thin;
}

.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;
        margin-top: 10px;
    }

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

    #mobileCartBadge {
        display: flex;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 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(1, 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: 10px 0 0px;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 10px;
    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: #ffc107;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(255, 193, 7, 0.3);
}

.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: #ffc107;
    color: #1e293b;
}

.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: #ffc107;
    color: #1e293b;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

/* 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;
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Override menu page sidebar styles */
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow-y: visible !important;
}

.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: #333;
}

.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: 7px !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: flex-start;
    gap: 15px;
    padding: 15px;
    background: #fbfbfb;
    border-bottom: 1px solid #eee;
    border-radius: 8px 8px 0 0;
    position: sticky !important;
    top: 95px !important; /* Preserves exactly its original 15px visual gap from the 80px header */
    z-index: 100 !important;
}

.search-box-p {
    margin-right: auto;
    position: relative;
    max-width: 100%;
    width: 100%;
}

@media (min-width: 768px) {
    .search-box-p {
        width: auto;
    }
}

.search-box-p i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    z-index: 10;
}

.search-box-p input {
    width: 100%;
    max-width: 400px;
    padding: 8px 15px 8px 35px;
    /* border: 1px solid #ddd; */
    border-color: #e0a800;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.diet-toggles-v-container {
    background: #f1f1f1;
    padding: 3px;
    border-radius: 30px;
    display: flex;
    align-items: center;
}

.diet-toggles-v {
    display: flex;
    overflow: hidden;
}

.diet-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    color: #666;
}

.diet-toggle.veg.active {
    background: #2e7d32;
    color: #fff;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.2);
}

.diet-toggle.non-veg.active {
    background: #c62828;
    color: #fff;
    box-shadow: 0 4px 10px rgba(198, 40, 40, 0.2);
}

.diet-toggle i {
    font-size: 14px;
}

/* 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;
    transition: all 0.3s ease;
}

.product-card .btn-view-small:hover,
.product-card .btn-view-small.disabled {
    background: #ffba00 !important;
    color: #fff !important;
    opacity: 1 !important;
}

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

.summary-sticky-card {
    padding: 20px !important;
    padding-top: 0 !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 STRATEGY FOR BOTH IPAD AND MOBILE ===== */
@media (max-width: 1024px) {
    .menu-page {
        padding-top: 60px !important;
    }

    .menu-section {
        padding: 0px 0 0px !important; /* Removed top padding */
    }

    .menu-page .informative-section,
    .menu-page .footer {
        display: none !important;
    }

    .menu-container {
        display: block !important;
        padding: 10px 0 130px 0 !important; /* Ensure products aren't covered by bottom sticky footer */
        height: auto !important;
        min-height: calc(100vh - 100px);
    }

    /* Categories Sidebar - Mobile */
    .categories-sidebar {
        order: 1 !important;
        height: 100% !important;
        overflow-y: auto !important;
        background: #fff !important;
        border: 1px solid #eee !important;
        border-radius: 12px !important;
        padding: 0 !important;
    }

    .categories-sidebar h2 {
        display: none !important; /* Hide 'Categories' text to save space */
    }

    .packages-service-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }

    .category-item {
        padding: 10px 2px !important;
        border-bottom: 1px solid #f8fafc !important;
        text-align: center;
        display: flex !important;
        flex-direction: column !important;
        gap: 4px;
        border: none !important;
        border-radius: 0 !important;
    }

    .category-item .service-icon-small {
        width: 25px !important;
        height: 25px !important;
        margin: 0 auto !important;
    }

    .category-item .service-text h4 {
        font-size: 10px !important;
        font-weight: 700;
        margin: 0;
        line-height: 1.2;
    }

    .category-item .service-text p {
        display: block !important;
        font-size: 8px !important;
        color: #888 !important;
        margin: 0 !important;
    }

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

    /* Products Section - Mobile */
    .products-section {
        order: 2 !important;
        /* height: 100% !important; */
        /* overflow-y: auto !important; */
        background: #fff !important;
        border: 1px solid #eee !important;
        border-radius: 12px !important;
        display: flex;
        flex-direction: column;
        padding: 0 !important;
    }

    .products-action-bar-new {
        padding: 6px !important;
        display: flex !important;
        flex-direction: row !important; /* Allow side-on-side */
        flex-wrap: wrap !important;
        gap: 6px !important;
        background: #fff !important;
        border-bottom: 1px solid #eee !important;
        position: sticky !important;
        top: 70px !important; /* Preserves exactly the 10px padded visual gap from the 60px mobile header */
        z-index: 100 !important;
    }

    .products-action-bar-new .search-box-p {
        display: none !important; /* Hide only the search box, keep filters */
    }

    .cuisine-filter-box {
        flex: 1 !important;
        max-width: 42% !important; /* Reduced slightly to fit decorator icon */
    }

    .mobile-filter-decorator {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 30px !important;
        height: 30px !important; /* Matched to dropdown height */
        background: #fff;
        border: 1.5px solid var(--primary-yellow);
        border-radius: 8px;
        color: var(--primary-yellow);
        font-size: 14px;
        flex-shrink: 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .custom-theme-select {
        width: 100% !important;
        padding: 6px 10px !important;
        font-size: 11px !important;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 10px !important; /* Standard padding for products */
    }

    .package-card-new img {
        height: 85px !important;
        width: 100% !important;
        object-fit: cover !important;
    }

    /* Hide Footer on Checkout Page - Desktop & Mobile */
    .checkout-page footer,
    .checkout-page .footer {
        display: none !important;
    }

    .package-card-info {
        padding: 8px 6px !important;
        flex: 1;
    }

    .package-card-info h4 {
        font-size: 10px !important;
        margin-bottom: 3px !important;
        line-height: 1.2;
    }

    .package-card-info p {
        font-size: 8px !important;
        margin-bottom: 8px !important;
        color: #999 !important;
        line-height: 1.2 !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .package-card-footer {
        padding-top: 6px !important;
        border-top: 1px dashed #e0e0e0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
    }

    .package-card-price {
        font-size: 8.5px !important;
    }

    .package-card-price strong {
        font-size: 11px !important;
    }

    .btn-view-small {
        padding: 4px 0 !important;
        width: 100% !important;
        text-align: center !important;
        font-size: 9px !important;
        border-radius: 4px !important;
    }

    /* Floating Cart Button - Redesigned (v=105) */
    .mobile-cart-floating-btn {
        display: flex !important;
        position: fixed;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        width: 94%;
        background: var(--primary-yellow);
        color: #000;
        padding: 8px 18px;
        border-radius: 8px;
        z-index: 2500;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
        height: 60px;
        transition: all 0.3s ease;
        border: none;
    }

    .mobile-cart-floating-btn:active {
        transform: translateX(-50%) scale(0.97);
    }

    .mcf-left {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mcf-thumbnails {
        display: flex;
        align-items: center;
        padding-left: 2px;
    }

    .mcf-thumb {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid #fff;
        background: #eee;
        flex-shrink: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        margin-left: -14px;
        transition: all 0.3s ease;
    }

    .mcf-thumb:first-child {
        margin-left: 0;
    }

    .mcf-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mcf-text {
        display: flex;
        flex-direction: column;
    }

    .mcf-text span {
        display: block;
        font-size: 14px;
        font-weight: 800;
        color: #000;
        margin-left: 8px; /* Offset because of image overlap */
    }

    .mcf-right {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 800;
        font-size: 14px;
        color: #000;
        padding-left: 10px;
    }

    .mcf-right i {
        font-size: 11px;
        margin-top: 1px;
    }

    /* Slide-over Cart Summary */
    .order-summary-sidebar {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 100% !important;
        height: 100% !important;
        background: #fff !important;
        z-index: 3000 !important;
        transition: right 0.3s ease !important;
        overflow: hidden !important; /* Changed from auto to hidden to manage internal scroll */
    }

    .order-summary-sidebar.active {
        right: 0 !important;
    }

    .summary-sticky-card {
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        box-shadow: none !important;
        border: none !important;
        padding-top: 5px !important;
    }

    .summary-header {
        flex: 1 !important;
        overflow-y: auto !important;
        padding: 0 15px !important;
        scrollbar-width: thin;
    }

    .summary-footer-v {
        background: #fff !important;
        padding: 15px !important;
        /* box-shadow: 0 -4px 15px rgba(0,0,0,0.08) !important; */
        position: relative !important;
        z-index: 10 !important;
    }

    .close-mobile-cart {
        display: block !important;
        position: absolute;
        top: 15px; /* Nudged down for perfect alignment with text center */
        right: 15px;
        background: #f5f5f5 !important;
        border: none;
        font-size: 28px;
        color: #333;
        z-index: 20;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        line-height: 1;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
} /* Closing media query at 6857 */

/* Hide Footer on Checkout Page - Global */
.checkout-page footer,
.checkout-page .footer {
    display: none !important;
}

/* Mobile Bottom Navigation Override for Menu Page */
.mobile-sticky-footer {
    display: none;
    background: #fff !important; /* Solid background to remove gap transparency */
    position: fixed;
    bottom: 0px;
    left: 0;
    width: 100%;
    z-index: 5000;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.08) !important;
    padding: 10px 15px env(safe-area-inset-bottom, 10px) !important;
    flex-direction: column !important;
    gap: 0px; /* Gap removed to look like one section */
    pointer-events: none;
    border-radius: 20px 20px 0 0;
}

body.cart-open .mobile-sticky-footer {
    display: none !important;
}

.mobile-sticky-footer > * {
    pointer-events: auto;
}

.mobile-menu-actions-bar {
    display: none;
    width: 100%;
    background: transparent !important; /* Transparent as parent has white background */
    padding: 5px 0 !important;
    align-items: center;
    gap: 12px;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin-bottom: 5px !important;
}

/* Mobile Decorator - Hidden on Desktop */
.mobile-filter-decorator {
    display: none;
}

.mobile-search-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 12px;
    padding: 0 14px;
    border: 1px solid #e2e8f0;
}

.mobile-search-wrapper i {
    color: #94a3b8;
    font-size: 14px;
}

.mobile-search-wrapper input {
    border: none;
    background: none;
    padding: 12px 10px;
    font-size: 14px;
    width: 100%;
    outline: none;
    color: #1e293b;
}

.mobile-menu-category-btn {
    background: #000;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.mobile-menu-category-btn span {
    font-family: inherit;
}

/* Category Modal Overlay */
.category-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 4000;
    display: flex;
    align-items: flex-end; /* Align to bottom for slide-up effect */
    justify-content: flex-end; /* Align right as per image layout */
    padding: 0 20px 145px; /* Offset to float above the footer buttons */
}

.category-modal-content-wrapper {
    width: 100%;
    max-width: 300px; /* Specific smaller width from reference */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.category-modal-content {
    background: #fff;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    animation: slowModalFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

@keyframes slowModalFadeUp {
    from {
        transform: translateY(50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.category-modal-close-container {
    display: none; /* Removed, footer button now acts as close */
}

.btn-category-close:active {
    transform: scale(0.95);
}

.category-list-wrapper {
    max-height: 55vh;
    overflow-y: auto;
    padding: 8px 0;
}

.category-modal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

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

.category-modal-item.active {
    background: #fff;
}

.category-modal-item.active .cat-name {
    color: #ffc107; /* Switched to theme yellow */
}

.category-modal-item .cat-name {
    font-size: 15px;
    font-weight: 700;
    color: #334155;
    letter-spacing: 0.2px;
}

.category-modal-item .cat-count {
    font-size: 13px;
    font-weight: 800;
    color: #334155;
}

.category-modal-item:active {
    background: #f1f5f9;
}

.category-modal-item.active {
    background: #fffdf0;
    color: #0f172a;
    border-left: 4px solid var(--primary-yellow);
}

.cat-count {
    color: #64748b;
    font-weight: 500;
    font-size: 14px;
    background: #f8fafc;
    padding: 4px 10px;
    border-radius: 20px;
}

@media (max-width: 1024px) {
    .categories-sidebar {
        display: none !important;
    }

    .mobile-sticky-footer {
        display: flex !important;
        flex-direction: column !important;
    }

    .mobile-menu-actions-bar {
        display: flex !important;
    }

    .mobile-cart-floating-btn {
        position: fixed !important;
        bottom: 12px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 94% !important;
        margin: 0 !important;
        display: flex !important;
        height: 55px !important;
    }

    /* Stack inside footer specifically */
    .mobile-sticky-footer .mobile-cart-floating-btn {
        position: relative !important;
        bottom: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        margin: 5px 0 0 0 !important;
        box-shadow: none !important; /* Shadow on container now */
        border-radius: 12px !important;
    }
}

/* Stat Box Styling - Restored */
.services-stats {
    display: flex;
    gap: 20px;
    margin-top: 2px;
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    min-width: 180px;
    border: 1px solid #f0f0f0;
}

.stat-box img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.stat-box strong {
    font-size: 22px;
    font-weight: 800;
    color: #222;
    line-height: 1;
}

.stat-box span.stars-rating {
    font-size: 14px;
    letter-spacing: 1px;
    margin: 2px 0;
    display: inline-block;
    background: linear-gradient(to right, #ffb400 98%, #e0e0e0 98%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: serif;
}

.stat-box p {
    font-size: 12px;
    color: #777;
    margin: 0 !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Package Gallery Active State */
.package-service-item {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1.5px solid transparent;
    margin-top: 3px;
}

.package-service-item:hover {
    background: #fffcf0;
    border-color: #ffb400;
    transform: translateY(-2px);
}

.package-service-item.active {
    background: #ffb400 !important;
    border-color: #ffb400 !important;
    color: #000 !important;
}

.package-service-item.active h4,
.package-service-item.active p {
    color: #000 !important;
}

/* Gallery Title Highlight */
.packages-gallery-header {
    transition: all 0.3s ease;
}

.packages-gallery-header.highlight {
    background: #fffcf0;
    padding: 15px 20px;
    border-radius: 12px;
    border-left: 4px solid #ffb400;
    box-shadow: 0 4px 15px rgba(255, 180, 0, 0.05);
}

.packages-gallery-header.highlight .packages-title-area h3 {
    color: #ffb400 !important;
}

/* CTA Section */
.cta-section {
    background-color: #ffc107;
    padding: 20px 120px;
    border-radius: 12px;
}

/* Content */
.cta-content {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

/* Heading */
.cta-content h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #000;
}

/* Button */
.cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #000;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #000;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.cta-btn img {
    width: 20px;
    height: 20px;
}

/* Hover Effect (YELLOW only) */
.cta-btn:hover {
    background-color: #ffc107;
    /* same yellow */
    color: #000;
    transform: translateY(-2px);
}

/* 🔥 Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 20px;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-content h3 {
        font-size: 18px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Header Button (initial hidden) */
.expert-call-btn {
    display: none;
    align-items: center;
    gap: 8px;
    background: #ffc107;
    color: #000;
    padding: 8px 14px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.expert-call-btn i {
    font-size: 15px;
}

/* Show on scroll */
.expert-call-btn.show {
    display: flex;
}

/* Hover */
.expert-call-btn:hover {
    background: #ffb300;
}

/* Overlay */
.consult-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Main Box */
.consult-box {
    display: grid;
    grid-template-columns: 40% 60%;
    background: #fff;
    border-radius: 14px;
    max-width: 900px;
    width: 95%;
    overflow: hidden;
    font-family: system-ui, sans-serif;
}

/* LEFT */
.consult-left {
    background: #f4f3a8;
    padding: 30px;
}

.consult-left h4 {
    margin-bottom: 15px;
}

.consult-points {
    list-style: none;
    padding: 0;
}

.consult-points li {
    margin-bottom: 10px;
}

.consult-stats {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.consult-review {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
}

/* RIGHT */
.consult-right {
    padding: 30px;
    position: relative;
}

.consult-close {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
}

.consult-right h2 {
    margin-bottom: 10px;
}

.sub-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.consult-right input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.product-select {
    display: flex;
    gap: 10px;
    margin: 10px 0 20px;
}

.product-select button {
    flex: 1;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #ffc107;
    background: #fff;
    cursor: pointer;
}

.product-select button.active {
    background: #f4f3a8;
    font-weight: 600;
}

.consult-submit {
    width: 100%;
    padding: 14px;
    background: #ffc107;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.privacy-text {
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
    color: #666;
}

/* Mobile */
@media (max-width: 768px) {
    .consult-box {
        grid-template-columns: 1fr;
    }

    .consult-left {
        display: none;
    }
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=1600");
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
    /* Offset for fixed header */
}

.hero-content-center h1 {
    font-size: 48px;
    margin: 20px 0;
    text-transform: uppercase;
    font-weight: 800;
}

.hero-content-center p {
    font-size: 20px;
    opacity: 0.9;
}

/* Story Section */
.about-story-section {
    padding: 80px 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

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

.story-overlay-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.story-overlay-card h3 {
    color: var(--primary-yellow);
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}

.story-overlay-card p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.story-text {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-features {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.story-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark-gray);
}

.story-feature-item i {
    color: var(--success);
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.mission-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--dark-yellow);
}

.mission-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--black);
}

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

/* Why Choose Us - Reuse benefit logic or new styles */
.why-choose-us {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.benefit-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    /* slight shadow */
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.benefit-content {
    padding: 20px;
    text-align: center;
}

.benefit-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--black);
}

.benefit-content p {
    font-size: 14px;
    color: var(--text-light);
}

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

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

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

    .hero-content-center h1 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .mission-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== BLOG PAGE STYLES ===== */
.blog-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 100px 0 60px;
    color: var(--white);
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

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

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-yellow);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.blog-meta span i {
    color: var(--primary-yellow);
    margin-right: 5px;
}

.blog-content h3 {
    font-size: 22px;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: var(--transition);
}

.blog-card:hover .blog-content h3 {
    color: var(--dark-yellow);
}

.blog-content p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--black);
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--dark-yellow);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* ===== ADVANCED BLOG DETAIL ===== */
.blog-detail-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    margin-top: -100px;
    position: relative;
    z-index: 10;
    padding-bottom: 80px;
}

.blog-main-content {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid #f1f5f9;
}

.sidebar-widget h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-yellow);
    display: inline-block;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details h4 {
    font-size: 16px;
    margin: 0;
}

.author-details p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.related-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.related-post-item:hover {
    transform: translateX(5px);
}

.related-post-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

.related-post-info h4 {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.related-post-info span {
    font-size: 12px;
    color: var(--text-light);
}

/* Article Styling Enhancements */
.article-drop-cap::first-letter {
    font-size: 60px;
    font-weight: 800;
    float: left;
    margin-right: 15px;
    line-height: 1;
    color: var(--primary-yellow);
    font-family: serif;
}

.blog-article-content h2 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-article-content h2 span {
    background: var(--primary-yellow);
    color: var(--black);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 800;
}

.reading-progress {
    position: fixed;
    top: 85px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #f1f5f9;
    z-index: 1200;
}

.progress-bar {
    height: 100%;
    background: var(--primary-yellow);
    width: 0%;
    transition: width 0.1s ease;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
    border-top: 1px solid #e2e8f0;
    margin-top: 50px;
}

.nav-post {
    max-width: 45%;
}

.nav-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-bottom: 5px;
}

.nav-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    display: block;
}

@media (max-width: 1024px) {
    .blog-detail-container {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .blog-sidebar {
        display: none;
    }

    .blog-main-content {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .blog-detail-title {
        font-size: 28px;
    }

    .blog-article-content p {
        font-size: 16px;
    }
}

/* ===== LUXE POLICY STYLES ===== */
.policy-content-luxe {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}

.policy-text-block {
    font-size: 15px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 30px;
}

.policy-text-block h2 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-yellow);
    margin-bottom: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-text-block h2::after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background: #e2e8f0;
}

.policy-text-block p {
    margin-bottom: 20px;
}

.policy-text-block ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.policy-text-block li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.policy-text-block li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
}

/* ===== PREMIUM ABOUT PAGE ===== */
.about-hero-premium {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)),
        url("https://images.unsplash.com/photo-1511795409834-ef04bbd61622?w=1600");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
    position: relative;
    padding-top: 80px;
}

.about-hero-premium .hero-glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    margin: 0 20px;
    animation: fadeIn 1s ease;
}

.hero-glass-card h1 {
    font-size: clamp(40px, 8vw, 72px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.stats-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: -80px;
    position: relative;
    z-index: 20;
}

.stat-card-premium {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-bottom: 5px solid var(--primary-yellow);
}

.stat-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    font-size: 32px;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--black);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.modern-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    padding: 120px 0;
}

.mission-visual {
    position: relative;
}

.mission-img-main {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.experience-badge-premium {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-yellow);
    color: var(--black);
    padding: 30px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.experience-badge-premium span {
    display: block;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

.experience-badge-premium small {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
}

.mission-content-premium h2 {
    font-size: 48px;
    margin-bottom: 40px;
}

.mission-item-premium {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.mission-item-premium .icon-box {
    width: 70px;
    height: 70px;
    background: #f8fafc;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-yellow);
    flex-shrink: 0;
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}

.mission-item-premium:hover .icon-box {
    background: var(--primary-yellow);
    color: var(--black);
    transform: rotate(10deg);
}

.mission-item-premium h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--black);
}

.mission-item-premium p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
}

.benefit-card-premium {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.benefit-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 70px rgba(0, 0, 0, 0.1);
}

.benefit-img-wrapper {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.benefit-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.benefit-card-premium:hover .benefit-img-wrapper img {
    transform: scale(1.15);
}

.benefit-content-premium {
    padding: 35px;
}

.benefit-content-premium h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--black);
}

.benefit-content-premium p {
    transition: var(--transition);
}

.team-social-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(255, 193, 7, 0.9);
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: var(--transition);
}

.team-card-premium:hover .team-social-overlay {
    bottom: 0;
}

.team-card-premium:hover .team-img-wrapper img {
    transform: scale(1.05);
}

.team-info {
    padding: 25px;
}

.team-info h4 {
    font-size: 22px;
    margin-bottom: 5px;
}

.team-info span {
    color: var(--primary-yellow);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

/* Trusted By Section */
.trusted-by-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
    opacity: 0.6;
    filter: grayscale(100%);
}

.trusted-by-logos img {
    height: 40px;
    transition: var(--transition);
}

.trusted-by-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Feature List alignment */
.premium-feature-list {
    margin-top: 30px;
}

.premium-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
}

.premium-feature-item i {
    color: var(--primary-yellow);
    font-size: 18px;
}

@media (max-width: 968px) {
    .about-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-split-grid.reverse {
        direction: ltr;
    }

    .process-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .process-grid-premium {
        grid-template-columns: 1fr;
    }
}

/* --- Amigo News Section --- */
.news-section-premium {
    padding: 40px 0;
    background-color: #f8fafc;
}

.news-section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.news-section-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--black);
    white-space: nowrap;
}

.news-section-title::before,
.news-section-title::after {
    content: "";
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        var(--primary-yellow),
        transparent
    );
    flex: 1;
    max-width: 200px;
}

.news-card-premium {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    overflow: hidden;
    min-height: 450px;
    margin: 0 20px;
}

.news-content-col {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.news-toggle-wrapper {
    background: #f1f5f9;
    padding: 5px;
    border-radius: 50px;
    display: inline-flex;
    margin-bottom: 40px;
}

.news-toggle-btn {
    padding: 10px 30px;
    border-radius: 50px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-toggle-btn.active {
    background: var(--white);
    color: var(--black);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.news-item-display {
    width: 100%;
    transition: all 0.5s ease;
    opacity: 1;
}

.news-item-display.fade {
    opacity: 0;
    transform: translateY(10px);
}

.news-partner-logo {
    height: 40px;
    margin: 0 auto 25px auto;
    display: block;
    object-fit: contain;
}

.news-headline {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.4;
    margin: 0 auto 20px auto;
    max-width: 500px;
}

.news-read-more {
    color: var(--primary-yellow);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.news-read-more:hover {
    gap: 12px;
}

.news-pagination {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 30px;
}

.news-dot {
    width: 6px;
    height: 6px;
    background: #e2e8f0;
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

.news-logos-col {
    flex: 1;
    background: #f1f5f9;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logos-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.news-grid-logo {
    background: var(--white);
    padding: 15px;
    border-radius: 12px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.news-grid-logo:hover {
    transform: translateY(-5px);
}

.news-grid-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.news-grid-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 992px) {
    .news-card-premium {
        flex-direction: column;
    }

    .news-content-col {
        padding: 40px 20px;
    }

    .news-logos-col {
        padding: 40px 20px;
    }

    .news-headline {
        font-size: 20px;
    }

    .logos-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Blog Detail Premium Styles --- */
.blog-detail-header-premium {
    position: relative;
    padding: 120px 0 160px;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.blog-detail-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff 30%, var(--primary-yellow) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-detail-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    padding: 80px 0;
}

.blog-main-content {
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        sans-serif;
    color: #475569;
    /* Soothing slate gray */
    line-height: 1.9;
}

.blog-main-content p {
    font-size: 16px;
    margin-bottom: 25px;
    letter-spacing: normal;
}

.blog-main-content h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    margin: 40px 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-main-content h2 span {
    background: var(--primary-yellow);
    color: var(--black);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.article-drop-cap::first-letter {
    float: left;
    font-size: 60px;
    line-height: 0.8;
    font-weight: 700;
    margin-right: 12px;
    margin-top: 8px;
    color: var(--primary-yellow);
}

.blog-article-content blockquote {
    background: #f8fafc;
    border-left: 5px solid var(--primary-yellow);
    padding: 40px;
    margin: 50px 0;
    font-style: italic;
    font-size: 24px;
    color: var(--black);
    border-radius: 0 20px 20px 0;
    line-height: 1.6;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--white);
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    margin-bottom: 40px;
    border: 1px solid #f1f5f9;
}

.sidebar-widget h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-widget h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 10px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details h4 {
    font-size: 18px;
    font-weight: 700;
}

.author-details p {
    font-size: 14px;
    color: var(--primary-yellow);
    font-weight: 600;
}

.related-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    cursor: pointer;
}

.related-post-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

.related-post-info h4 {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.related-post-item:hover h4 {
    color: var(--primary-yellow);
}

.related-post-info span {
    font-size: 13px;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .blog-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .blog-main-content p {
        font-size: 16px;
    }

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

/* --- Contact Page Premium Styles --- */
.contact-container-premium {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    border: 1px solid #f1f5f9;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: #fffdf0;
    color: var(--primary-yellow);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-info-details h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
}

.contact-info-details p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.contact-form-side {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.contact-form-side h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-form-side p {
    color: #64748b;
    margin-bottom: 30px;
}

.form-group-premium {
    margin-bottom: 20px;
}

.form-group-premium label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #334155;
}

.form-input-premium {
    width: 100%;
    padding: 15px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-input-premium:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

textarea.form-input-premium {
    min-height: 150px;
    resize: vertical;
}

.submit-btn-premium {
    width: 100%;
    padding: 18px;
    background: var(--primary-yellow);
    color: var(--black);
    border: none;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn-premium:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

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

@media (max-width: 576px) {
    .contact-form-side {
        padding: 30px 20px;
    }

    .trending-card {
        flex: 0 0 260px;
        height: 300px;
    }

    .video-testimonials-section {
        --card-width: 160px;
        --card-gap: 15px;
    }

    .video-card {
        flex: 0 0 var(--card-width);
        height: 280px;
    }
}

/* ===== REVIEWS PAGE STYLES ===== */
.reviews-page-section {
    padding: 60px 0;
    background: #fdfdfd;
}

.reviews-list-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.reviews-list-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.reviews-list-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #444;
}

.review-row {
    padding: 25px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    gap: 20px;
    transition: background 0.2s ease;
}

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

.review-row:hover {
    background: #fafafa;
}

.reviewer-avatar-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

/* Sample Avatar Colors */
.bg-coral {
    background: #ff8a80;
}

.bg-gold {
    background: #ffd54f;
}

.bg-sky {
    background: #81d4fa;
}

.bg-mint {
    background: #a5d6a7;
}

.bg-purple {
    background: #b39ddb;
}

.bg-rose {
    background: #f48fb1;
}

.bg-slate {
    background: #b0bec5;
}

.review-main-content {
    flex-grow: 1;
}

.review-top-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.reviewer-name-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviewer-name-rating h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.rating-badge-small {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-badge-small.high {
    background: #4caf50;
}

.rating-badge-small.mid {
    background: #ff9800;
}

.rating-badge-small.low {
    background: #f44336;
}

.review-date-text {
    font-size: 12px;
    color: #888;
}

.review-comment-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.page-link:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.page-link.active {
    background: #2b6cb0;
    color: #fff;
    border-color: #2b6cb0;
}

@media (max-width: 768px) {
    .review-row {
        flex-direction: column;
        gap: 10px;
    }

    .reviewer-avatar-circle {
        display: none;
        /* Hide avatar on mobile if too cramped */
    }

    .review-top-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* ===== SEO CONTENT SECTION (informative-section) ===== */
.informative-section {
    padding: 60px 0;
    background: #fff;
}

.informative-wrapper {
    background: #fffdf0;
    /* Light yellow shade */
    padding: 40px;
    border-radius: 30px;
    border: 2px solid var(--primary-yellow);
    /* Yellow border */
}

.informative-item {
    margin-bottom: 25px;
}

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

.informative-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.informative-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #444;
    margin-bottom: 5px;
}

.informative-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.informative-item ul {
    list-style: none;
    padding-left: 0;
}

.informative-item ul li {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.informative-item ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
}

@media (max-width: 768px) {
    .informative-wrapper {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .informative-item h3 {
        font-size: 16px;
    }
}

/* Auth Toggle Styles */
.auth-toggle-wrapper {
    display: flex;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 12px;
    margin-bottom: 25px;
    gap: 5px;
}

.auth-toggle-btn {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    color: #64748b;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-toggle-btn.active {
    background: var(--white);
    color: var(--black);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.auth-section {
    display: none;
    animation: fadeIn 0.4s ease;
}

.auth-section.active {
    display: block;
}

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

.label-with-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.checkbox-label-premium {
    font-size: 11px !important;
    color: #64748b !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    cursor: pointer;
    font-weight: 500 !important;
}

.checkbox-label-premium input {
    margin: 0;
    width: 14px;
    height: 14px;
    cursor: pointer;
}

/* Wrapper */
.guest-wrapper {
    background: #f4f5f7;
    padding: 20px;
    border-radius: 10px;
    max-width: 700px;
}

/* Title */
.guest-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2b2b2b;
}

/* Row Layout */
.guest-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Column */
.guest-col {
    flex: 1;
    min-width: 250px;
}

/* Card */
.guest-card {
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 16px;
    padding: 18px;
    transition: 0.3s ease;
}

.guest-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Header */
.guest-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

/* Dot */
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* VEG Style */
.guest-card.veg span {
    color: #1f8a4c;
}

.guest-card.veg .dot {
    background: #28a745;
}

/* NON VEG Style */
.guest-card.nonveg span {
    color: #c62828;
}

.guest-card.nonveg .dot {
    background: #e53935;
}

/* Input */
.guest-input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    font-size: 14px;
    outline: none;
    transition: 0.2s;
}

.guest-input:focus {
    border-color: #999;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.04);
}

/* Responsive */
@media (max-width: 600px) {
    .guest-row {
        flex-direction: column;
    }
}
/* ===== CART SUMMARY STYLES ===== */
.cart-group {
    margin-bottom: 5px;
}

.cart-group-header {
    font-size: 10px;
    font-weight: 700;
    /* color: var(--primary-yellow); */
    color: #333;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== CART LAYOUT (UPDATED PREMIUM) ===== */
.cart-item-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
}

.cart-item-summary:hover {
    background: #fdfdfd;
}

/* Left: Dot + Name */
.ci-left {
    display: flex;
    align-items: center;
    gap: 3px;
    flex: 1; /* Allows name to take available space */
    min-width: 0; /* Important for truncation */
}

.ci-name {
    font-size: 11px;
    font-weight: 600;
    color: #334155;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Right: Controls + Qty + Remove */
.ci-right {
    display: flex;
    align-items: center;
    gap: 0px;
}

/* Diet Dot */
.diet-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block;
}

.diet-dot.veg {
    background: #22c55e;
    box-shadow: 0 0 4px rgba(34, 197, 94, 0.4);
}
.diet-dot.non-veg {
    background: #ef4444;
    box-shadow: 0 0 4px rgba(239, 68, 68, 0.4);
}

/* Quantity Controls */
.cart-pill-control {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 8px;
    padding: 2px;
    border: 1px solid #e2e8f0;
}

.cart-pill-btn {
    width: 24px;
    height: 24px;
    border: none;
    background: #fff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.cart-pill-btn:hover {
    background: var(--primary-yellow);
    color: #000;
    transform: translateY(-1px);
}

.cart-pill-val {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    min-width: 24px;
    text-align: center;
}

/* Total Qty Display */
.cart-qty-display {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    min-width: 40px;
    text-align: right;
}

.cart-qty-display .unit {
    font-size: 11px;
    font-weight: 400;
    color: #64748b;
    margin-left: 2px;
}

/* Remove Icon (Trash) */
.cart-remove-icon {
    border: none;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-remove-icon:hover {
    color: #ef4444;
    background: #fef2f2;
}

.cart-remove-icon i {
    font-size: 14px;
}

/* Restored Empty Cart State */
.empty-cart-state {
    text-align: center;
    padding: 40px 20px;
    color: #94a3b8;
}

.empty-cart-state i {
    font-size: 48px;
    color: #e2e8f0;
    margin-bottom: 15px;
    display: block;
}

.empty-cart-state p {
    font-size: 15px;
    margin: 0;
    font-weight: 500;
}

/* ===== CART ACCORDION STYLES ===== */
/* ===== CART ACCORDION STYLES ===== */
.accordion-group {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    /* margin-bottom: 24px; */
    overflow: hidden;
    background: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.accordion-group:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Stronger shadow on hover */
}

/* ... (Header styles remain similar, implied unchanged in replacement logic unless I explicitly overwrite) ... */
/* Actually, I am replacing the block starting from .accordion-group, need to be careful not to delete header styles */
/* I will rewrite the whole block or target specifically */

/* Refined Cart Pill (Purple Tone) */
.cart-pill-control.refined {
    background: #f8f5ff; /* Light purple tint */
    border: 1px solid #e9d5ff;
    padding: 2px 4px;
    border-radius: 20px; /* Pill shape */
    gap: 4px;
}

.cart-pill-control.refined .cart-pill-btn {
    width: 20px;
    height: 20px;
    font-size: 14px;
    background: transparent;
    box-shadow: none;
    color: #94a3b8;
}

.cart-pill-control.refined .cart-pill-btn:hover {
    color: #000;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cart-pill-val.custom-color {
    color: #7c3aed; /* Purple text */
    font-weight: 700;
    font-size: 14px;
    min-width: 30px;
}

/* Remove Icon Left */
.cart-remove-icon-left {
    width: 28px;
    height: 28px;
    border-radius: 8px; /* Soft square */
    background: #f3f4f6;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* margin-right: 8px; Remove margin since gap handles it */
    color: #64748b;
    transition: all 0.2s;
    flex-shrink: 0;
}

.cart-remove-icon-left:hover {
    background: #fee2e2;
    color: #ef4444;
}

.cart-remove-icon-left i {
    font-size: 10px; /* Slightly larger */
}

/* Unit Display */
.unit-display {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    margin-left: 2px;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 12px 15px;
    margin: 0;
    border-bottom: none;
    user-select: none;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #f8f9fa;
}

.accordion-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
    /* color: var(--primary-yellow); */
    color: #333;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.3s ease,
        padding 0.3s ease;
    padding: 0 15px;
}

.accordion-group.active .accordion-content {
    padding: 0 15px 12px 15px;
}

.accordion-content .cart-item-summary:last-child {
    border-bottom: none;
}

/* Remove Arrows/Spinners from input number */
/* Chrome, Safari, Edge, Opera */
input.cart-qty-input::-webkit-outer-spin-button,
input.cart-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input.cart-qty-input {
    font-weight: 700;
    color: #7c3aed; /* Match purple */
    font-family: inherit;
    outline: none;
}

.category-display-header {
    text-align: center;
}

/* ===== CUSTOM TABS STYLING ===== */
/* Container override */
#tabs.ui-tabs {
    border: none;
    background: transparent;
    padding: 0;
    font-family: inherit;
}

/* Nav List */
#tabs .ui-tabs-nav {
    background: transparent;
    border: none;
    border-bottom: 2px solid #f1f5f9;
    padding: 0;
    margin: 0 0 5px 0;
    display: flex;
    gap: 0; /* Remove gap for seamless full width */
    border-radius: 0;
    list-style: none; /* Remove dots */
}

/* Tab Item */
#tabs .ui-tabs-nav li {
    background: transparent;
    border: none;
    margin: 0;
    padding: 0;
    top: 0;
    box-shadow: none !important;
    flex: 1; /* Equal Width */
    text-align: center;
}

/* Tab Link */
#tabs .ui-tabs-nav li a {
    color: #64748b;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 4px; /* Increased vertical padding */
    text-decoration: none;
    display: block;
    outline: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    background: transparent;
    width: 100%; /* Ensure link fills the li */
    box-sizing: border-box; /* Handle padding correctly */
}

/* ===== TIME SLOT SELECTION STYLES ===== */
.time-periods-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    background: #f8fafc;
    padding: 6px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.period-tab {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.period-tab.active {
    background: var(--white);
    color: var(--black);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.period-tab i {
    font-size: 16px;
    margin-bottom: 2px;
}

.period-tab.active i {
    color: var(--primary-yellow);
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
    max-height: 250px;
    overflow-y: auto;
    padding: 5px;
}

.time-slot-item {
    padding: 12px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.time-slot-item:hover {
    border-color: var(--primary-yellow);
    background: #fffdf0;
    transform: translateY(-2px);
}

.time-slot-item.selected {
    border-color: var(--primary-yellow);
    background: #fffef0;
    box-shadow: 0 4px 12px rgba(255, 186, 0, 0.15);
}

.time-slot-item .slot-time {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

.time-slot-item .slot-period {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
}

.time-slot-item.selected::after {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: -8px;
    right: -8px;
    color: var(--primary-yellow);
    background: var(--white);
    border-radius: 50%;
    font-size: 16px;
}

/* Custom Scrollbar for Time Slots */
.time-slots-grid::-webkit-scrollbar {
    width: 6px;
}

.time-slots-grid::-webkit-scrollbar-track {
    background: #f8fafc;
    border-radius: 10px;
}

.time-slots-grid::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}

.time-slots-grid::-webkit-scrollbar-thumb:hover {
    background: #cbd5e0;
}

/* Active State */
#tabs .ui-tabs-nav li.ui-tabs-active a,
#tabs .ui-tabs-nav li.ui-state-active a,
#tabs .ui-tabs-nav li.ui-state-hover a {
    color: #0f172a; /* Darker text */
    border-bottom-color: var(--primary-yellow); /* Yellow underline */
    background: transparent;
}
#tabs .ui-tabs-nav li.ui-tabs-active a {
    color: #000;
}

/* Tab Panel */
#tabs .ui-tabs-panel {
    padding: 0; /* Let content control padding */
    background: transparent;
    border: none;
}

/* What's Included Content Styling */
.whats-included-content {
    padding: 4px 0;
}
.inc-item {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f8f9fa;
}
.inc-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.inc-item h5 {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin: 0 0 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.inc-item h5::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--primary-yellow);
    border-radius: 50%;
}
.inc-item p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    padding-left: 12px;
    line-height: 1.4;
}

/* ===== COUPON SECTION ===== */
.coupon-block-wrapper {
    margin: 15px 0;
}

.coupon-section {
    background: #fff;
    border: 1.5px solid #f1f5f9;
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.coupon-section:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.cs-left {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 800;
    color: #1b317e; /* Navy blue from image */
    font-size: 18px;
    letter-spacing: -0.5px;
}

.cs-left i {
    color: #1e293b;
    font-size: 22px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-left i::after {
    content: "%";
    position: absolute;
    font-size: 10px;
    color: #fff;
    font-family: inherit;
    font-weight: 900;
}

.coupon-section .fa-chevron-right {
    display: none;
}

.applied-coupon-card {
    background: #e8f5e9;
    border: 1px solid #43a047;
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.ac-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ac-left i {
    color: #43a047;
    font-size: 20px;
}

.ac-code {
    display: block;
    font-weight: 700;
    color: #2e7d32;
    text-transform: uppercase;
    font-size: 14px;
}

.ac-desc {
    display: block;
    font-size: 11px;
    color: #4caf50;
}

.remove-coupon {
    color: #e57373;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.2s;
}

.remove-coupon:hover {
    color: #d32f2f;
}

/* ===== COUPON MODAL ===== */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.coupon-modal-content {
    background: #fff;
    width: 90%;
    max-width: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
    border: 1px solid #e0e0e0;
}

.modal-header-new {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.modal-header-new h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.close-modal-btn {
    font-size: 24px;
    cursor: pointer;
    opacity: 0.8;
    transition: 0.2s;
    line-height: 1;
}

.close-modal-btn:hover {
    opacity: 1;
    color: #ffc107;
}

.modal-body-new {
    padding: 20px;
    max-height: 70vh;
    overflow-y: auto;
}

.coupon-search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.coupon-search-bar input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.coupon-search-bar input:focus {
    outline: none;
    border-color: #ffc107;
}

.coupon-search-bar button {
    background: #1e293b;
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s;
}

.coupon-search-bar button:hover {
    background: #ffc107;
    color: #000;
}

.available-coupons-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #888;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.coupons-list-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.coupon-item-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.2s;
    background: #fdfdfd;
}

.coupon-item-card:hover {
    border-color: #ffc107;
    background: #fffbf0;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.cic-left {
    display: flex;
    flex-direction: column;
}

.cic-code {
    font-weight: 800;
    font-size: 15px;
    color: #1e293b;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.cic-desc {
    font-size: 12px;
    color: #666;
}

.cic-apply-btn {
    color: #e0a800;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    background: rgba(255, 193, 7, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    transition: 0.2s;
}

.cic-apply-btn:hover {
    background: #e0a800;
    color: #fff;
}

/* ===== REFINED COUPON MODAL ITEMS ===== */
.coupon-item-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    background: #f8fafc;
    margin-bottom: 10px;
}

.coupon-item-card:hover {
    border-color: #e0a800;
    background: #fff;
    box-shadow: 0 4px 15px rgba(224, 168, 0, 0.15);
    transform: translateY(-2px);
}

.cic-left {
    display: flex;
    flex-direction: column;
}

.cic-code {
    font-weight: 800;
    font-size: 16px;
    color: #1e293b;
    letter-spacing: 0.5px;
}

.cic-desc {
    font-size: 13px;
    color: #64748b;
    margin-top: 2px;
}

.cic-apply-btn {
    background: #fff;
    color: #e0a800;
    border: 1px solid #e0a800;
    font-weight: 700;
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
    cursor: pointer;
}

.cic-apply-btn:hover {
    background: #e0a800;
    color: #fff;
}
