﻿



/* Custom Radio Card Styling */
.custom-radio-card {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .custom-radio-card:hover {
        border-color: #0d6efd;
        background-color: #f8f9fa;
    }

    .custom-radio-card input[type="radio"]:checked + label {
        border-color: #0d6efd;
        background-color: #e7f1ff;
    }

    .custom-radio-card .form-check-input {
        margin-top: 0.5rem;
    }

/* Activities List Styling */
.activities-list {
    max-height: 300px;
    overflow-y: auto;
}

.activity-item {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 10px;
    transition: all 0.2s ease;
}

    .activity-item:hover {
        border-color: #0d6efd;
        background-color: #f8f9fa;
    }

    .activity-item input[type="checkbox"]:checked + label {
        color: #0d6efd;
        font-weight: 500;
    }








/* ===================================================================
   BOOKING FORM STYLES - Entertainment & Events Platform
   =================================================================== */

/* ===================================================================
   1. CSS VARIABLES AND ROOT STYLES
   =================================================================== */
:root {
    --primary-color: #6c5ce7;
    --primary-dark: #5649c0;
    --secondary-color: #fd79a8;
    --accent-color: #00cec9;
    --light-bg: #f8f9fa;
    --dark-bg: #2d3436;
    --success: #00b894;
    --warning: #fdcb6e;
    --danger: #d63031;
    --booking-primary: #667eea;
    --booking-secondary: #764ba2;
}

/* ===================================================================
   2. BODY AND GLOBAL LAYOUT STYLES
   =================================================================== */
body {
    font-family: 'Poppins', sans-serif;
    background-attachment: fixed;
    color: #333;
    position: relative;
    min-height: 100vh;
    padding-bottom: 80px;
}

    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(253, 121, 168, 0.1) 100%);
        z-index: -1;
    }

.location-card {
    cursor: pointer;
    transition: 0.2s ease;
}

    .location-card:hover {
        transform: scale(1.02);
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }



/* ===================================================================
   3. NAVIGATION STYLES
   =================================================================== */
.navbar {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
}

    .navbar-brand span {
        color: var(--secondary-color);
    }

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
}

    .navbar-nav .nav-link:hover {
        color: white !important;
    }

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background-color: var(--secondary-color);
        transition: width 0.3s ease;
    }

    .navbar-nav .nav-link:hover::after {
        width: 80%;
    }

.navbar-nav .active .nav-link::after {
    width: 80%;
}

/* ===================================================================
   4. MAIN BOOKING CONTAINER
   =================================================================== */
.booking-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

/* Decorative party icons */
.party-icon {
    position: absolute;
    color: rgba(255,255,255,0.1);
    font-size: 4rem;
    animation: float 6s ease-in-out infinite;
}

    .party-icon:nth-child(1) {
        top: 10%;
        left: 5%;
        animation-delay: 0s;
    }

    .party-icon:nth-child(2) {
        top: 20%;
        right: 10%;
        animation-delay: 2s;
    }

    .party-icon:nth-child(3) {
        bottom: 15%;
        left: 10%;
        animation-delay: 4s;
    }

/* Booking header styles */
.booking-title {
    color: white;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.booking-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Main booking form container */
.booking-form {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===================================================================
   5. PROGRESS BAR STYLES
   =================================================================== */
.progress {
    background-color: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    height: 10px;
}

.progress-bar {
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.8s ease;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
}

/* ===================================================================
   6. BOOKING STEP MANAGEMENT
   =================================================================== */
.booking-step {
    display: none;
    animation: fadeInSlide 0.5s ease-in-out;
}

    .booking-step.active {
        display: block;
    }

.step-icon {
    color: #667eea;
    margin-right: 0.5rem;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* ===================================================================
   7. LOCATION SELECTION STYLES (STEP 1)
   =================================================================== */
.location-selection-section {
    width: 100%;
}

.location-card {
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%; /* Ensure equal height cards */
    display: flex;
    flex-direction: column;
}

    .location-card .card-body {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

        .location-card .card-body .card-text {
            flex: 1;
        }

    .location-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .location-card.selected {
        border-color: #667eea;
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    }

        .location-card.selected::after {
            content: '✓ SELECTED';
            position: absolute;
            top: 15px;
            right: 15px;
            background: #667eea;
            color: white;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: bold;
            z-index: 2;
        }

.location-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.location-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.location-feature {
    background: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #666;
}

/* Location card responsive adjustments */
@media (max-width: 767px) {
    .location-img {
        height: 180px;
    }

    .location-card {
        margin-bottom: 1rem;
    }
}

@media (min-width: 768px) {
    /* Ensure consistent card heights on desktop */
    .location-list {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
    }

        .location-list > [class*="col-"] {
            display: flex;
            flex-direction: column;
        }
}

/* ===================================================================
   8. CUSTOMER DETAILS STYLES (STEP 2)
   =================================================================== */
.customer-details-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.section-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* ===================================================================
   9. OTP VERIFICATION STYLES (STEP 3)
   =================================================================== */
.otp-verification-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.otp-section {
    margin-top: 1rem;
}

.success {
    color: #28a745;
    font-weight: 500;
}

.error {
    color: #dc3545;
    font-weight: 500;
}

/* ===================================================================
   10. STEP 4 STYLES - EVENT DETAILS (IMPROVED LAYOUT)
   =================================================================== */
/* Step 4 specific layout - two-row design */
#step-4 .row {
    margin-bottom: 0;
}

    #step-4 .row.mb-4 {
        margin-bottom: 1.5rem !important;
    }

#step-4 .col-md-8,
#step-4 .col-md-4 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin-bottom: 1rem;
}

/* Improved card styling for Step 4 */
#step-4 .card {
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    #step-4 .card:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        transform: translateY(-2px);
    }

#step-4 .card-header {
    background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
    border-bottom: 1px solid #e3f2fd;
    font-weight: 600;
}

    #step-4 .card-header h5 {
        color: #333;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    #step-4 .card-header i {
        color: #667eea;
    }

    #step-4 .card-header small {
        color: #6b7280;
        font-weight: normal;
        margin-top: 0.25rem;
        display: block;
    }

/* Step 4 title styling */
#step-4 h3 {
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

    #step-4 h3 i {
        color: #667eea;
        margin-right: 0.5rem;
    }

/* Occasion details styling - now in wider layout */
.occasion-details {
    margin-top: 0;
    background: none;
    border: none;
    padding: 0;
}

    .occasion-details .form-group {
        margin-bottom: 1rem;
    }

        .occasion-details .form-group:last-child {
            margin-bottom: 0;
        }

    .occasion-details label {
        font-weight: 500;
        color: #374151;
        margin-bottom: 0.5rem;
    }

    .occasion-details .input-group-text {
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        border-color: #667eea;
    }

    .occasion-details .form-control {
        border-color: #667eea;
    }

        .occasion-details .form-control:focus {
            border-color: #5649c0;
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
        }

/* Enhanced occasion type dropdown */
#occasionType {
    border-radius: 6px;
    border: 2px solid #667eea;
    background-color: white;
    transition: all 0.3s ease;
}

    #occasionType:focus {
        border-color: #5649c0;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        outline: none;
    }

/* Party hall note styling - improved for smaller column */
#card-party-note .alert {
    font-size: 0.85rem;
    padding: 0.75rem;
    line-height: 1.3;
}

    #card-party-note .alert strong {
        /*display: block;*/
        margin-bottom: 0.25rem;
    }

.form-check-label {
    cursor: pointer;
    user-select: none;
}

.form-check-input {
    cursor: pointer;
    position: relative;
    z-index: 2;
}

    /* Switch styling for party hall */
    .form-check-input[type="checkbox"] {
        width: 3rem;
        height: 1.5rem;
        border-radius: 1rem;
        background-color: #e5e7eb;
        border: none;
        transition: all 0.3s ease;
    }

        .form-check-input[type="checkbox"]:checked {
            background-color: #667eea;
            border-color: #667eea;
        }

        .form-check-input[type="checkbox"]:focus {
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
        }

/* ===================================================================
   11. CALENDAR STYLES
   =================================================================== */
/* Calendar Container */
.calendar-container {
    background: #fff;
    border-radius: 8px;
    /*overflow: hidden;*/
    border: 1px solid #e9ecef;
}

/* Calendar Header */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

    .calendar-header h5 {
        font-weight: 600;
        color: #333;
        margin: 0;
        flex: 1;
        text-align: center;
    }

    .calendar-header .btn {
        min-width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* Calendar Grid */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background-color: #dee2e6;
    min-height: 300px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background-color: #f8f9fa;
    border-radius: 6px 6px 0 0;
    overflow: hidden;
}

.weekday-header {
    padding: 12px 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: #666;
    background-color: #f8f9fa;
    border-right: 1px solid #dee2e6;
}

    .weekday-header:last-child {
        border-right: none;
    }

/* Calendar Days */
.calendar-day {
    background-color: #fff;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    border: 2px solid transparent;
}

    .calendar-day:hover:not(.disabled):not(.other-month):not(.past) {
        background-color: #667eea;
        color: white;
        transform: scale(1.05);
        z-index: 10;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

    /* Calendar day states */
    .calendar-day.other-month {
        color: #ccc;
        cursor: not-allowed;
        background-color: #f8f9fa;
    }

    .calendar-day.past {
        color: #ccc;
        cursor: not-allowed;
        background-color: #f8f9fa;
    }

    .calendar-day.today {
        font-weight: bold;
        background-color: #ffe6e6;
        color: #d32f2f;
        cursor: not-allowed;
    }

    .calendar-day.tomorrow {
        font-weight: bold;
        background-color: #fff3cd;
        color: #856404;
        border: 2px solid #ffc107;
        cursor: not-allowed;
    }

    .calendar-day.selected {
        background-color: #667eea !important;
        color: white !important;
        border: 2px solid #5649c0 !important;
        transform: scale(1.1);
        z-index: 15;
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }

    .calendar-day.disabled {
        cursor: not-allowed;
        opacity: 0.5;
    }

    /* Availability states */
    .calendar-day.available {
        background-color: #d4edda;
        color: #155724;
    }

        .calendar-day.available:hover:not(.selected) {
            background-color: #28a745;
            color: white;
        }

    .calendar-day.partial {
        background-color: #fff3cd;
        color: #856404;
    }

        .calendar-day.partial:hover:not(.selected) {
            background-color: #ffc107;
            color: #212529;
        }

    .calendar-day.unavailable {
        background-color: #f8d7da;
        color: #721c24;
        cursor: not-allowed;
    }

        .calendar-day.unavailable:hover {
            transform: none;
            box-shadow: none;
        }

    /* Availability indicator dots */
    .calendar-day::after {
        content: '';
        position: absolute;
        bottom: 6px;
        left: 50%;
        transform: translateX(-50%);
        width: 6px;
        height: 6px;
        border-radius: 50%;
        opacity: 0.8;
    }

    .calendar-day.available::after {
        background-color: #28a745;
    }

    .calendar-day.partial::after {
        background-color: #ffc107;
    }

    .calendar-day.unavailable::after {
        background-color: #dc3545;
    }

    .calendar-day.selected::after {
        background-color: rgba(255, 255, 255, 0.8);
    }

    .calendar-day.today::after {
        background-color: #2196f3;
    }

/* Calendar Availability Legend */
.availability-legend {
    display: flex;
    gap: 20px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
}

.legend-color {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    display: inline-block;
}

    .legend-color.available {
        background-color: #28a745;
    }

    .legend-color.partial {
        background-color: #ffc107;
    }

    .legend-color.unavailable {
        background-color: #dc3545;
    }

/* Loading states */
.calendar-loading {
    color: #666;
}

/* Tooltip for calendar days */
.calendar-day[data-tooltip]:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 1000;
    margin-bottom: 8px;
    pointer-events: none;
}

.calendar-day[data-tooltip]:hover::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
    z-index: 1000;
    margin-bottom: -2px;
    pointer-events: none;
}

/* ===================================================================
   12. TIME SLOT AND GUEST CAPACITY STYLES
   =================================================================== */
/* Time slot section styling */
#selected-date-info {
    border-left: 4px solid #667eea;
    background-color: #f8f9ff;
    border-color: #e3f2fd;
}

#timeSlot:disabled {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

/* Enhanced time slot dropdown */
#timeSlot {
    border-radius: 6px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

    #timeSlot:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        outline: none;
    }

    #timeSlot:disabled {
        background-color: #f9fafb;
        cursor: not-allowed;
        opacity: 0.6;
    }

/* Guest capacity warning styling */
#guest-capacity-warning {
    border-left: 4px solid #ffc107;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

    #guest-capacity-warning .alert-warning {
        margin-bottom: 0;
    }

/* Enhanced styling for number of guests field in step 4 */
.step-4-guest-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
    border: 1px solid #e3f2fd;
    border-radius: 10px;
    padding: 1rem;
}

    .step-4-guest-section .form-group {
        margin-bottom: 0;
    }

    .step-4-guest-section .input-group-text {
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        border-color: #667eea;
    }

    .step-4-guest-section .form-control {
        border-color: #667eea;
    }

        .step-4-guest-section .form-control:focus {
            border-color: #5649c0;
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
        }

    .step-4-guest-section small {
        color: #6c757d;
        font-style: italic;
    }

/* ===================================================================
   13. OPTION SELECTION STYLES (STEP 5)
   =================================================================== */
.option-card {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 30px 20px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    height: 100%;
}

    .option-card:hover {
        border-color: #007bff;
        box-shadow: 0 4px 12px rgba(0,123,255,0.15);
        transform: translateY(-2px);
    }

    .option-card.selected {
        border-color: #007bff;
        background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
        box-shadow: 0 4px 12px rgba(0,123,255,0.2);
    }

    .option-card::after {
        content: '';
        position: absolute;
        top: 15px;
        right: 15px;
        width: 20px;
        height: 20px;
        border: 2px solid #dee2e6;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .option-card.selected::after {
        background: #007bff;
        border-color: #007bff;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
        background-size: 12px;
        background-position: center;
        background-repeat: no-repeat;
    }

    .option-card h5 {
        color: #333;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .option-card .text-muted {
        color: #6c757d !important;
        margin-bottom: 20px;
    }

    .option-card .list-unstyled li {
        padding: 5px 0;
        font-size: 14px;
        color: #555;
    }

/* ===================================================================
   14. ENQUIRY SUCCESS STYLES
   =================================================================== */
.enquiry-success {
    text-align: center;
    padding: 2rem;
}

    .enquiry-success .fa-check-circle {
        color: #28a745;
        animation: bounceIn 0.6s ease-in-out;
    }

/* ===================================================================
   15. SERVICE SELECTION STYLES (STEP 6)
   =================================================================== */
.service-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .service-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

.service-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff6b6b;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 1;
}

.service-price {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: bold;
    z-index: 1;
}

.service-img {
    height: 180px;
    object-fit: cover;
}

/* Service Navigation Pills */
.nav-pills .nav-link {
    border-radius: 25px;
    margin: 0 5px;
}

    .nav-pills .nav-link.active {
        background-color: #667eea;
    }

/* ===================================================================
   16. BOOKING SUMMARY STYLES
   =================================================================== */
.booking-summary {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category-header {
    background-color: #f8f9fa;
    font-weight: bold;
}

/* ===================================================================
   17. FORM CONTROLS AND VALIDATION
   =================================================================== */
.input-group-text {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    border-width: 2px;
    font-weight: 500;
}

.form-control {
    border-width: 2px;
    border-left-width: 0;
    transition: all 0.3s ease;
}

    .form-control:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    }

    .form-control:disabled,
    .form-select:disabled {
        background-color: #f9fafb;
        border-color: #d1d5db;
        color: #6b7280;
        cursor: not-allowed;
    }

/* Input group focus styling */
.input-group:focus-within .input-group-text {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.input-group:focus-within .form-control {
    border-color: #667eea;
}

/* Validation states */
.is-invalid {
    border-color: #dc3545;
    animation: shake 0.5s ease-in-out;
}

.is-valid {
    border-color: #28a745;
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

/* Enhanced focus states for accessibility */
.form-control:focus,
.form-select:focus {
    /*outline: 2px solid #667eea;*/
    outline-offset: 2px;
}

/* ===================================================================
   18. BUTTON STYLES
   =================================================================== */
.btn-w150 {
    min-width: 150px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

    .btn-primary:hover, .btn-primary:focus {
        background-color: var(--primary-dark);
        border-color: var(--primary-dark);
        transform: translateY(-1px);
    }

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    transition: all 0.3s ease;
}

    .btn-secondary:hover {
        transform: translateY(-1px);
    }

.btn-success {
    background-color: var(--success);
    border-color: var(--success);
    transition: all 0.3s ease;
}

/* Button specific states */
#datetime-next:disabled {
    background-color: #6c757d;
    border-color: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

#datetime-next:not(:disabled) {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    transition: all 0.3s ease;
}

    #datetime-next:not(:disabled):hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

/* Navigation button layout adjustments */
.d-flex.justify-content-end .btn {
    margin-left: auto;
}

/* Hide back button transition */
.back-step {
    transition: opacity 0.3s ease;
}

    .back-step.d-none {
        opacity: 0;
    }

/* ===================================================================
   19. ALERT AND NOTIFICATION STYLES
   =================================================================== */
.alert {
    border: none;
    border-radius: 8px;
    font-weight: 500;
}

.alert-info {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    border-left: 4px solid #3b82f6;
}

.alert-warning {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    border-left: 4px solid #f59e0b;
}

/* ===================================================================
   20. LOADING STATES
   =================================================================== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

#slot-loading .spinner-border-sm {
    color: #667eea;
}

/* ===================================================================
   21. ANIMATIONS AND EFFECTS
   =================================================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Step transition animation */
.booking-step.active {
    animation: slideInFromRight 0.6s ease-out;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Enhanced animations */
.fadeIn {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slideInRight {
    animation: slideInRight 0.5s ease-in-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slideInLeft {
    animation: slideInLeft 0.5s ease-in-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===================================================================
   22. DECORATIVE ELEMENTS
   =================================================================== */
.site-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 0 0 20% 20%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.bubble {
    position: fixed;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.4), rgba(253, 121, 168, 0.4));
    z-index: -1;
    animation: bubble-float 15s linear infinite;
}

@keyframes bubble-float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* ===================================================================
   23. FOOTER STYLES
   =================================================================== */
.footer {
    background: var(--dark-bg);
    padding: 1rem 0;
    color: white;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
}

    .footer p {
        margin-bottom: 0;
    }

/* ===================================================================
   24. RESPONSIVE STYLES
   =================================================================== */
@media (min-width: 768px) {
    .step-content {
        flex-direction: row;
    }

    .customer-details-section {
        flex: 1;
    }

    .location-selection-section {
        flex: 1;
    }
}

/* Mobile responsive changes for navigation buttons */
@media (max-width: 767px) {
    .booking-container {
        margin: 1rem;
        padding: 1rem;
    }

    .booking-title {
        font-size: 2rem;
    }

    .booking-form {
        padding: 1rem;
    }

    /* Hide text in navigation buttons on mobile */
    .back-step .btn-text,
    .next-step .btn-text,
    #submit-booking .btn-text,
    #sendOtp .btn-text {
        display: none;
    }

    .btn-w150 {
        min-width: 50px;
        padding: 0.5rem;
    }

    /* Center icons in buttons */
    .back-step i,
    .next-step i,
    #submit-booking i,
    #sendOtp i {
        margin: 0;
    }

    /* Stack form elements on mobile */
    .row > .col-md-6 {
        margin-bottom: 1rem;
    }

    /* Smaller option cards on mobile */
    .option-card {
        padding: 20px 15px;
    }

    .location-img {
        height: 150px;
    }

    .service-img {
        height: 120px;
    }

    /* Step 4 mobile layout adjustments - two-row layout */
    #step-4 .row.mb-4 {
        margin-bottom: 1rem !important;
    }

    #step-4 .col-md-8,
    #step-4 .col-md-4 {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 1rem;
    }

    /* Occasion details responsive layout */
    .occasion-details .row {
        margin: 0;
    }

    .occasion-details .col-md-6 {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 0.5rem;
    }

    /* Calendar responsive adjustments */
    #step-4 .calendar-grid {
        min-height: 250px;
    }

    #step-4 .calendar-day {
        min-height: 35px;
        font-size: 0.75rem;
    }

    /* Party hall note responsive */
    #card-party-note .alert {
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    /* Calendar mobile adjustments */
    .calendar-day {
        min-height: 40px;
        font-size: 0.8rem;
    }

    .weekday-header {
        padding: 8px 4px;
        font-size: 0.75rem;
    }

    .availability-legend {
        flex-direction: column;
        gap: 8px;
    }

    .calendar-header h5 {
        font-size: 1rem;
    }

    .quick-date-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .quick-date-btn {
        flex: 1;
        min-width: 80px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .calendar-grid {
        min-height: 250px;
    }

    .calendar-day {
        min-height: 35px;
        font-size: 0.75rem;
    }

    .weekday-header {
        padding: 6px 2px;
        font-size: 0.7rem;
    }
}

/* ===================================================================
   25. TYPOGRAPHY AND SPACING IMPROVEMENTS
   =================================================================== */
h5 {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.025em;
}

small {
    font-size: 0.85rem;
    line-height: 1.4;
}

label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #374151;
}

/* Better visual hierarchy */
.card-header h5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-header small {
    color: #6b7280;
    font-weight: normal;
    margin-top: 0.25rem;
    display: block;
}

/* ===================================================================
   26. GUEST COUNT STYLING - Adults and Kids Fields
   =================================================================== */

/* Guest count section container */
.guest-count-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
    border: 1px solid #e3f2fd;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}

    .guest-count-section .form-label {
        font-weight: 600;
        color: #374151;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
    }

        .guest-count-section .form-label i {
            color: #667eea;
            margin-right: 0.5rem;
        }

/* Small labels for adults and kids */
.small-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 0.25rem;
    display: block;
}

/* input styling for guest fields */
.guest-count-section .input-group-text {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: #667eea;
    font-size: 0.9rem;
    /*min-width: 45px;*/
    display: flex;
    justify-content: center;
    align-items: center;
}

.guest-count-section .form-control {
    border-color: #667eea;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}

    .guest-count-section .form-control:focus {
        border-color: #5649c0;
        box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    }

    .guest-count-section .form-control::placeholder {
        font-size: 0.85rem;
        color: #9ca3af;
    }

/* Total guests display */
.total-guests-display {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
}

    .total-guests-display small {
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.25rem;
    }

    .total-guests-display .text-success {
        color: #059669 !important;
        font-weight: 600;
    }

    .total-guests-display .text-muted {
        color: #6b7280 !important;
    }

/* guest capacity warning for adults/kids breakdown */
#guest-capacity-warning {
    border-left: 4px solid #ffc107;
    background: linear-gradient(135deg, #fff3cd 0%, #fef3c7 100%);
    border-color: #ffeeba;
}

    #guest-capacity-warning .alert-warning {
        margin-bottom: 0;
        background: transparent;
        border: none;
        padding: 0;
    }

/* Responsive adjustments for guest fields */
@media (max-width: 767px) {
    .guest-count-section {
        padding: 0.75rem;
    }

        .guest-count-section .row {
            margin: 0 -0.25rem;
        }

        .guest-count-section .col-6 {
            padding: 0 0.25rem;
        }

        .guest-count-section .form-control {
            font-size: 0.85rem;
            padding: 0.5rem;
        }

        .guest-count-section .input-group-text {
            padding: 0.5rem 0.4rem;
            font-size: 0.8rem;
            min-width: 40px;
        }

    .small-label {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }

    .total-guests-display {
        margin-top: 0.75rem;
        padding: 0.5rem;
    }

        .total-guests-display small {
            font-size: 0.8rem;
        }
}

/* validation states for guest fields */
.guest-count-section .form-control.is-invalid {
    border-color: #dc3545;
    animation: shake 0.5s ease-in-out;
}

.guest-count-section .form-control.is-valid {
    border-color: #28a745;
}

/* Guest field focus enhancement */
.guest-count-section .input-group:focus-within .input-group-text {
    background: linear-gradient(135deg, #5649c0, #6f42c1);
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.guest-count-section .input-group:focus-within .form-control {
    border-color: #5649c0;
    transform: scale(1.02);
}

/* Animation for total guests update */
.total-guests-display.updating {
    animation: pulseUpdate 0.3s ease-in-out;
}

@keyframes pulseUpdate {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Guest breakdown tooltip styles */
.guest-breakdown-tooltip {
    position: relative;
    cursor: help;
}

    .guest-breakdown-tooltip:hover::after {
        content: attr(data-tooltip);
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: #333;
        color: white;
        padding: 0.5rem;
        border-radius: 4px;
        font-size: 0.75rem;
        white-space: nowrap;
        z-index: 1000;
        margin-bottom: 8px;
    }

/* error messages for guest fields */
.guest-count-section .invalid-feedback {
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

/* Guest field icons */
.guest-count-section .input-group-text .fa-user {
    font-size: 0.9rem;
}

.guest-count-section .input-group-text .fa-child {
    font-size: 1rem;
}

/* Success state for total guests */
.total-guests-display.has-guests {
    background: linear-gradient(135deg, #d1fae5 0%, #ecfdf5 100%);
    border-color: #10b981;
}

/* Warning state for zero guests */
.total-guests-display.no-guests {
    background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
    border-color: #f59e0b;
}

/* Loading state for guest calculations */
.guest-count-section.calculating {
    opacity: 0.8;
    pointer-events: none;
}

    .guest-count-section.calculating::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        border: 2px solid #667eea;
        border-top: 2px solid transparent;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

/* hover effects */
.guest-count-section .form-control:hover {
    border-color: #8b9dc3;
    transition: border-color 0.2s ease;
}

.total-guests-display:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ===================================================================
   PARTY HALL REQUIREMENT STYLES
   =================================================================== */

/* Party hall required state */
.party-hall-required {
    border: 2px solid #dc3545 !important;
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%) !important;
}

    .party-hall-required .card-header {
        background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%) !important;
        color: #721c24 !important;
        border-bottom: 1px solid #dc3545 !important;
    }

        .party-hall-required .card-header i {
            color: #dc3545 !important;
        }

/* Party hall optional state */
.party-hall-optional {
    border: 2px solid #6c757d;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

    .party-hall-optional .card-header {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        color: #495057;
        border-bottom: 1px solid #6c757d;
    }

        .party-hall-optional .card-header i {
            color: #6c757d;
        }

/* Required indicator for party hall */
.party-hall-required::before {
    content: "REQUIRED";
    position: absolute;
    top: -8px;
    right: 15px;
    background: #dc3545;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 10;
    animation: pulseRequired 2s infinite;
}

@keyframes pulseRequired {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

/* Optional indicator for party hall */
.party-hall-optional::before {
    content: "OPTIONAL";
    position: absolute;
    top: -8px;
    right: 15px;
    background: #6c757d;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 10;
}

/* Party hall requirement message styling */
#party-hall-required-msg {
    border-left: 4px solid #dc3545;
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-color: #f5c6cb;
    animation: slideInAlert 0.5s ease-out;
}

    #party-hall-required-msg .fas {
        color: #dc3545;
    }

@keyframes slideInAlert {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Disabled party hall toggle styling */
#PartyHall:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

    #PartyHall:disabled + label {
        opacity: 0.6;
        cursor: not-allowed;
    }

/* Party hall select dropdown when required */
.party-hall-required #partyHallSelect {
    border: 2px solid #dc3545;
    background-color: #fff5f5;
}

    .party-hall-required #partyHallSelect:focus {
        border-color: #dc3545;
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    }

/* Party hall select dropdown when optional */
.party-hall-optional #partyHallSelect {
    border: 2px solid #6c757d;
}

    .party-hall-optional #partyHallSelect:focus {
        border-color: #495057;
        box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.25);
    }

/* Party hall unavailable state */
.party-hall-unavailable {
    border: 2px solid #ffc107;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
}

    .party-hall-unavailable .card-header {
        background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
        color: #856404;
        border-bottom: 1px solid #ffc107;
    }

        .party-hall-unavailable .card-header i {
            color: #ffc107;
        }

    .party-hall-unavailable::before {
        content: "UNAVAILABLE";
        background: #ffc107;
        color: #212529;
    }

/* Guest count threshold indicator */
.guest-threshold-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 0.75rem;
    margin-top: 0.5rem;
    animation: fadeInWarning 0.5s ease-out;
}

    .guest-threshold-warning .fas {
        color: #ffc107;
    }

@keyframes fadeInWarning {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Party hall loading state */
.party-hall-loading {
    position: relative;
    overflow: hidden;
}

    .party-hall-loading::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
        animation: shimmer 1.5s infinite;
    }

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

/* Responsive adjustments for party hall */
@media (max-width: 767px) {
    .party-hall-required::before,
    .party-hall-optional::before,
    .party-hall-unavailable::before {
        font-size: 0.6rem;
        padding: 3px 6px;
        top: -6px;
        right: 10px;
    }

    #party-hall-required-msg {
        font-size: 0.85rem;
        padding: 0.5rem;
    }

    .guest-threshold-warning {
        font-size: 0.85rem;
        padding: 0.5rem;
    }
}

/* Tooltip for party hall requirement */
.party-hall-tooltip {
    position: relative;
    cursor: help;
}

    .party-hall-tooltip:hover::after {
        content: attr(data-tooltip);
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: #333;
        color: white;
        padding: 0.5rem;
        border-radius: 4px;
        font-size: 0.75rem;
        white-space: nowrap;
        z-index: 1000;
        margin-bottom: 8px;
    }

    .party-hall-tooltip:hover::before {
        content: '';
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 5px solid transparent;
        border-top-color: #333;
        z-index: 1000;
        margin-bottom: -2px;
    }

/* ===================================================================
   SERVICE SELECTION LEFT SIDEBAR STYLES
   =================================================================== */

/* Service Selection Container */
.service-selection-container {
    min-height: 500px;
}

/* Left Sidebar Styles */
.service-categories-sidebar {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    position: sticky;
    top: 20px;
}

.sidebar-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem;
    text-align: center;
}

    .sidebar-header h5 {
        margin: 0;
        font-weight: 600;
        font-size: 1rem;
    }

/* Service Menu List */
.service-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-menu-item {
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

    .service-menu-item:last-child {
        border-bottom: none;
    }

.service-menu-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

    .service-menu-link:hover {
        background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
        color: #667eea;
        text-decoration: none;
    }

    .service-menu-link.active {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        font-weight: 600;
    }

        .service-menu-link.active::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-right: 8px solid #f8f9fa;
        }

    .service-menu-link i {
        margin-right: 0.75rem;
        font-size: 1.1rem;
        min-width: 20px;
        text-align: center;
    }

    .service-menu-link .category-name {
        flex: 1;
        font-size: 0.9rem;
    }

    .service-menu-link .service-count {
        background: rgba(0,0,0,0.1);
        color: rgba(0,0,0,0.6);
        padding: 0.2rem 0.5rem;
        border-radius: 12px;
        font-size: 0.75rem;
        font-weight: bold;
        margin-left: 0.5rem;
    }

    .service-menu-link.active .service-count {
        background: rgba(255,255,255,0.2);
        color: white;
    }

/* Right Content Area */
.service-content-area {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    min-height: 500px;
    overflow: hidden;
}

.content-header {
    background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

    .content-header h4 {
        margin: 0 0 0.5rem 0;
        color: #333;
        font-weight: 600;
        display: flex;
        align-items: center;
    }

        .content-header h4 i {
            color: #667eea;
        }

    .content-header p {
        margin: 0;
        font-size: 0.9rem;
    }

/* Content Area Tab Content */
.service-content-area .tab-content {
    padding: 1.5rem;
}

/* Service List in Content Area */
.service-content-area .service-list {
    margin: 0 -0.5rem;
}

    .service-content-area .service-list > [class*="col-"] {
        padding: 0 0.5rem;
        margin-bottom: 1rem;
    }

/* Enhanced Service Cards for Sidebar Layout */
.service-content-area .service-card {
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

    .service-content-area .service-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        border-color: #667eea;
    }

/* Default Content Styling */
#default-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

    #default-content i {
        opacity: 0.5;
    }

/* Loading State for Sidebar */
.sidebar-loading {
    padding: 2rem;
    text-align: center;
    color: #6c757d;
}

    .sidebar-loading .spinner-border {
        width: 2rem;
        height: 2rem;
        color: #667eea;
    }

/* Category Loading State */
.category-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #6c757d;
}

    .category-loading .spinner-border {
        width: 2.5rem;
        height: 2.5rem;
        color: #667eea;
        margin-bottom: 1rem;
    }

/* Empty Category State */
.empty-category {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}

    .empty-category i {
        font-size: 3rem;
        opacity: 0.5;
        margin-bottom: 1rem;
        display: block;
    }

/* Mobile Responsive Design */
@media (max-width: 767px) {
    .service-selection-container .row {
        margin: 0;
    }

    .service-selection-container .col-md-3,
    .service-selection-container .col-md-9 {
        padding: 0;
        margin-bottom: 1rem;
    }

    .service-categories-sidebar {
        position: static;
        margin-bottom: 1rem;
    }

    .service-menu-list {
        display: flex;
        overflow-x: auto;
        padding: 0 1rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .service-menu-item {
        border-bottom: none;
        border-right: 1px solid #e9ecef;
        flex-shrink: 0;
    }

        .service-menu-item:last-child {
            border-right: none;
        }

    .service-menu-link {
        padding: 1rem;
        white-space: nowrap;
        flex-direction: column;
        text-align: center;
        min-width: 100px;
    }

        .service-menu-link i {
            margin-right: 0;
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .service-menu-link .category-name {
            font-size: 0.8rem;
            line-height: 1.2;
        }

        .service-menu-link .service-count {
            margin-left: 0;
            margin-top: 0.25rem;
            font-size: 0.7rem;
        }

        .service-menu-link.active::after {
            display: none;
        }

    .sidebar-header {
        display: none;
    }

    .content-header {
        padding: 1rem;
    }

        .content-header h4 {
            font-size: 1.1rem;
        }

    .service-content-area .tab-content {
        padding: 1rem;
    }

    .service-content-area .service-list > [class*="col-"] {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .service-menu-link {
        min-width: 80px;
        padding: 0.75rem 0.5rem;
    }

        .service-menu-link .category-name {
            font-size: 0.75rem;
        }

        .service-menu-link i {
            font-size: 1rem;
        }
}

/* Smooth Transitions */
.tab-content > .tab-pane {
    transition: opacity 0.3s ease-in-out;
}

.service-content-area .tab-pane.fade:not(.show) {
    opacity: 0;
}

.service-content-area .tab-pane.fade.show {
    opacity: 1;
}

/* Service Count Animation */
.service-count {
    transition: all 0.3s ease;
}

.service-menu-link:hover .service-count {
    transform: scale(1.1);
}

/* Active Category Highlight */
.service-menu-item.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

/* Scroll Indicator for Mobile */
@media (max-width: 767px) {
    .service-menu-list::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 20px;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.8));
        pointer-events: none;
    }
}



/* Additional styles specific to retry payment */
.payment-status-header-warning {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    border-radius: 12px;
    border-left: 4px solid #ffc107;
}

.payment-status-header-success {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #cdffd8 0%, #beffba 100%);
    border-radius: 12px;
    border-left: 4px solid #07ff1a;
}

.payment-status-header-danger {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffcdd4 0%, #ffbac0 100%);
    border-radius: 12px;
    border-left: 4px solid #ff0712;
}

.payment-status-header i {
    font-size: 3rem;
    color: #ffc107;
    margin-bottom: 1rem;
}

.payment-status-header h3 {
    color: #856404;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.payment-status-header p {
    color: #856404;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.customer-detail-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

    .customer-detail-item:hover {
        background: #e3f2fd;
        transform: translateX(5px);
    }

    .customer-detail-item i {
        color: #667eea;
        font-size: 1.2rem;
        margin-right: 1rem;
        min-width: 25px;
        text-align: center;
    }

.customer-detail-content {
    flex: 1;
    padding-left: 15px;
}

.customer-detail-label {
    font-weight: 500;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.customer-detail-value {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.amount-section {
    background: linear-gradient(135deg, #d1fae5 0%, #ecfdf5 100%);
    border: 1px solid #10b981;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

    .amount-section i {
        font-size: 2.5rem;
        color: #10b981;
        margin-bottom: 1rem;
    }

    .amount-section .amount-label {
        font-size: 1.1rem;
        color: #065f46;
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

    .amount-section .amount-value {
        font-size: 2.5rem;
        font-weight: 700;
        color: #047857;
        margin-bottom: 0.5rem;
    }

    .amount-section .amount-description {
        font-size: 0.9rem;
        color: #065f46;
        opacity: 0.8;
    }

.btn-pay {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 3rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

    .btn-pay:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        color: white;
    }

    .btn-pay:active {
        transform: translateY(0);
    }

    .btn-pay i {
        margin-left: 0.5rem;
    }

.security-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
    text-align: center;
}

    .security-info i {
        color: #28a745;
        margin-right: 0.5rem;
    }

    .security-info small {
        color: #6c757d;
        font-size: 0.85rem;
    }

.btn-pay.loading {
    pointer-events: none;
    opacity: 0.8;
}

    .btn-pay.loading::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        border: 2px solid rgba(255,255,255,0.3);
        border-top: 2px solid white;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    .btn-pay.loading .btn-content {
        opacity: 0;
    }

@media (max-width: 767px) {
    .customer-detail-item {
        transform: none;
    }

        .customer-detail-item:hover {
            transform: none;
        }

    .amount-section .amount-value {
        font-size: 2rem;
    }

    .btn-pay {
        padding: 0.75rem 2rem;
        font-size: 1.1rem;
    }
}

/* Restaurant card specific styling */
.restaurant-card {
    border: 2px solid #fd7e14;
    position: relative;
    transition: all 0.3s ease;
}

    .restaurant-card::before {
        content: "PACKAGE";
        position: absolute;
        top: 8px;
        left: 15px;
        background: #fd7e14;
        color: white;
        padding: 4px 8px;
        border-radius: 12px;
        font-size: 0.7rem;
        font-weight: bold;
        z-index: 10;
    }

    .restaurant-card.selected-restaurant {
        border-color: #dc3545;
        box-shadow: 0 0 15px rgba(220, 53, 69, 0.3);
        transition: all 0.3s ease;
    }

        .restaurant-card.selected-restaurant::before {
            background: #dc3545;
            content: "SELECTED PACKAGE";
        }

/* Restaurant radio button styling */
.restaurant-radio {
    transform: scale(1.2);
    accent-color: #fd7e14;
    cursor: pointer;
}

    .restaurant-radio:checked {
        accent-color: #dc3545;
    }

/* Restaurant validation message */
#restaurant-validation-message {
    border-left: 4px solid #ffc107;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    animation: slideInAlert 0.5s ease-out;
}

/* Restaurant mandatory indicator */
.restaurant-mandatory-notice {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 1px solid #dc3545;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    animation: fadeInWarning 0.5s ease-out;
}

    .restaurant-mandatory-notice .fas {
        color: #dc3545;
    }
/* Restaurant pax selector styling */
.restaurant-pax-selector {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 1px solid #ff9800;
    border-radius: 8px;
    padding: 0.75rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    opacity: 1;
}

    .restaurant-pax-selector.d-none {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        margin: 0;
    }

    .restaurant-pax-selector:not(.d-none) {
        animation: slideDown 0.3s ease-out;
    }

    .restaurant-pax-selector label {
        font-weight: 600;
        color: #e65100;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .restaurant-pax-selector .input-group {
        max-width: 150px;
        margin: 0 auto;
    }

    .restaurant-pax-selector .form-control {
        text-align: center;
        font-weight: 600;
        border-color: #ff9800;
        background-color: white;
    }

        .restaurant-pax-selector .form-control:focus {
            border-color: #e65100;
            box-shadow: 0 0 0 0.2rem rgba(255, 152, 0, 0.25);
        }

    .restaurant-pax-selector .btn-outline-secondary {
        border-color: #ff9800;
        color: #ff9800;
    }

        .restaurant-pax-selector .btn-outline-secondary:hover {
            background-color: #ff9800;
            border-color: #ff9800;
            color: white;
        }

    .restaurant-pax-selector small {
        color: #bf360c;
        font-size: 0.8rem;
        text-align: center;
    }

/* Updated pax animation */
.restaurant-pax-input.updated-pax {
    animation: highlightUpdate 1s ease-in-out;
    border-color: #4caf50 !important;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding: 0;
    }

    to {
        opacity: 1;
        max-height: 200px;
        padding: 0.75rem;
    }
}

@keyframes highlightUpdate {
    0% {
        background-color: #e8f5e8;
        transform: scale(1);
    }

    50% {
        background-color: #c8e6c9;
        transform: scale(1.05);
    }

    100% {
        background-color: white;
        transform: scale(1);
    }
}

/* Restaurant card selected state enhancement */
.restaurant-card.selected-restaurant .restaurant-pax-selector {
    border-color: #dc3545;
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
}

    .restaurant-card.selected-restaurant .restaurant-pax-selector label {
        color: #b71c1c;
    }

    .restaurant-card.selected-restaurant .restaurant-pax-selector .form-control {
        border-color: #dc3545;
    }

        .restaurant-card.selected-restaurant .restaurant-pax-selector .form-control:focus {
            border-color: #b71c1c;
            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
        }

    .restaurant-card.selected-restaurant .restaurant-pax-selector .btn-outline-secondary {
        border-color: #dc3545;
        color: #dc3545;
    }

        .restaurant-card.selected-restaurant .restaurant-pax-selector .btn-outline-secondary:hover {
            background-color: #dc3545;
            border-color: #dc3545;
            color: white;
        }

/* Responsive adjustments */
@media (max-width: 767px) {
    .restaurant-pax-selector {
        padding: 0.5rem;
    }

        .restaurant-pax-selector .input-group {
            max-width: 130px;
        }

        .restaurant-pax-selector .form-control {
            font-size: 0.9rem;
        }

        .restaurant-pax-selector small {
            font-size: 0.75rem;
        }
}
.restaurant-card {
    cursor: pointer;
}

    .restaurant-card .card-body {
        position: relative;
    }

    /* Prevent text selection on card */
    .restaurant-card .card-title,
    .restaurant-card .card-text {
        user-select: none;
    }
/* ===================================================================
   END OF BOOKING FORM STYLES
   =================================================================== */
