/* About Cards */
.about-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-card-icon {
    font-size: 3rem;
    color: #4a6bff;
    margin-bottom: 20px;
}

.about-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.about-card-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Stats Section */
.stats-row {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.stat-item {
    text-align: center;
    padding: 15px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #4a6bff;
    margin-bottom: 5px;
}

.stat-icon {
    vertical-align: middle;
    font-size: 2rem;
    margin-right: 8px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Material Icons */
.material-icons-outlined {
    font-family: 'Material Icons Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

/* book-now */
/* Custom styles for the multi-select dropdown */
.booking-form select[multiple] {
    height: auto;
    min-height: 200px;
    padding: 10px;
}

.booking-form select[multiple] option {
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    transition: all 0.2s;
}

.booking-form select[multiple] option:hover {
    background-color: #f0f4ff;
}

.booking-form select[multiple] option:checked {
    background-color: #4a6bff;
    color: white;
}

.booking-form select[multiple] option.disabled-slot {
    color: #ccc;
    background-color: #f8f9fa;
    text-decoration: line-through;
}

.booking-form select[multiple] option.blackout-slot {
    color: #dc3545;
    background-color: #f8d7da;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .booking-form select[multiple] {
        min-height: 150px;
    }
}

/* Payment Modal Styles */
.payment-amount-display {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #d6a354;
}

.payment-amount-display h4 {
    margin: 0;
    font-size: 1.2rem;
}

.payment-amount-display #payment-amount {
    color: #1a2b6d;
    font-weight: bold;
}

.qr-code {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 10px;
    background: white;
}

/* Animation for payment success */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

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

.payment-success {
    animation: pulse 0.5s ease-in-out;
    color: #28a745;
}

/* Button Spinner Styles */
.btn-spinner {
    display: none;
    align-items: center;
    justify-content: center;
}

.btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-disabled .btn-text {
    display: none;
}

.btn-disabled .btn-spinner {
    display: flex;
}

.btn-text {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .step-card {
        padding: 15px 10px;
    }

    .step-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .step-card h4 {
        font-size: 1rem;
    }

    .step-card p {
        font-size: 0.8rem;
    }

    .booking-form {
        padding: 20px;
    }
}

/* Booking Page Custom Styles */
.booking-steps {
    margin-top: 30px;
}

.step-card {
    background: white;
    border-radius: 10px;
    padding: 20px 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.step-number {
    width: 30px;
    height: 30px;
    background: #d6a354;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
}

.step-icon {
    font-size: 2.5rem;
    color: #d6a354;
    margin-bottom: 15px;
}

.step-icon .material-icons-outlined {
    font-size: 2.5rem;
}

.step-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.step-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.booking-form {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-label {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.custom-btn-lg {
    padding: 12px 30px;
    font-size: 1.1rem;
}

/* Popup Styles - Banner index.html */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow-y: auto;
}

.popup-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: 20px;
}

.popup-image {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.popup-close-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
}

@media (max-width: 768px) {
    .popup-container {
        max-width: 95%;
        max-height: 95%;
    }

    .popup-close-btn {
        width: 30px;
        height: 30px;
        font-size: 18px;
        top: 10px;
        right: 10px;
    }
}
