/* Booking Modal - Isolated Styles */
#bookingModal.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(13, 27, 62, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
#bookingModal.booking-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
#bookingModal .booking-modal {
    background: #ffffff;
    width: 90%;
    max-width: 900px;
    border-radius: 20px;
    margin: auto;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#bookingModal.booking-modal-overlay.active .booking-modal {
    transform: translateY(0) scale(1);
}
#bookingModal .booking-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f0f0f0;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: var(--charcoal);
    z-index: 10;
    transition: all 0.3s ease;
}
#bookingModal .booking-modal-close:hover {
    background: var(--sovereign-gold);
    color: #fff;
    transform: rotate(90deg);
}
#bookingModal .booking-modal-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}
#bookingModal .booking-modal-left {
    display: none;
}
@media (min-width: 768px) {
    #bookingModal .booking-modal-content {
        flex-direction: row;
    }
    #bookingModal .booking-modal-left {
        display: block;
        width: 45%;
        flex-shrink: 0;
    }
}
#bookingModal .booking-modal-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
#bookingModal .booking-modal-right {
    flex: 1;
    padding: 1.5rem 2rem !important;
}
#bookingModal .booking-modal-right h3 {
    font-size: 1.8rem !important;
    color: var(--deep-navy);
    margin-bottom: 0.2rem !important;
}
#bookingModal .booking-modal-right p {
    font-size: 0.9rem !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.4 !important;
}
#bookingModal .booking-modal-form .form-row {
    display: flex !important;
    gap: 1rem !important;
    margin-bottom: 0 !important;
}
#bookingModal .booking-modal-form .form-group {
    display: flex !important;
    flex-direction: column !important;
    flex: 1;
    margin-bottom: 1rem !important;
    width: 100%;
    gap: 0.4rem !important;
}
#bookingModal .modal-label {
    display: block;
    font-size: 0.9rem !important;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.1rem !important;
}
#bookingModal .required-star {
    color: #e53e3e;
}
#bookingModal .booking-modal-form input,
#bookingModal .booking-modal-form .dropdown-selected,
#bookingModal .booking-modal-form .searchable-selected {
    width: 100% !important;
    padding: 0 1rem !important;
    border: 1px solid rgba(13, 27, 62, 0.15);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem !important;
    background-color: #fafafa;
    transition: all 0.3s ease;
    box-sizing: border-box;
    height: 40px !important;
}

#bookingModal .booking-modal-form textarea {
    width: 100% !important;
    padding: 0.8rem 1rem !important;
    border: 1px solid rgba(13, 27, 62, 0.15);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem !important;
    background-color: #fafafa;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
#bookingModal .booking-modal-form input:focus,
#bookingModal .booking-modal-form textarea:focus,
#bookingModal .booking-modal-form .searchable-selected.open {
    outline: none;
    border-color: var(--sovereign-gold);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
}
#bookingModal .booking-modal-form .submit-btn-wrapper {
    display: flex !important;
    justify-content: center !important;
    margin-top: 1rem !important;
}
#bookingModal .booking-modal-form .submit-btn {
    padding: 0.8rem 2rem !important;
    height: auto !important;
    background-color: var(--midnight-navy) !important;
    color: var(--ivory) !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    cursor: pointer;
    transition: all 0.3s ease;
}
#bookingModal .booking-modal-form .submit-btn:hover {
    background-color: var(--sovereign-gold) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 20px rgba(201, 168, 76, 0.2) !important;
}
@media (max-width: 768px) {
    #bookingModal .booking-modal {
        max-height: 85vh;
        overflow-y: auto;
    }
    #bookingModal .booking-modal-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    #bookingModal .booking-modal-right {
        padding: 2rem;
    }
    #bookingModal .booking-modal-right h3 {
        font-size: 2rem;
    }
}
