/* --- Booking Form Styles --- */
#bookingModal .modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
#bookingModal .modal-header {
    border-bottom: 1px solid #f0f0f0;
    padding: 1.5rem;
}
#bookingModal .modal-title {
    font-weight: 700;
    color: #333;
    font-size: 1.25rem;
}
#bookingModal .btn-close {
    font-size: 0.8rem;
}
#bookingModal .modal-body {
    padding: 1.5rem;
}
#bookingModal .form-label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}
#bookingModal .form-control, 
#bookingModal .form-select {
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
    background-color: #fbfbfc;
    transition: var(--transition);
    height: auto;
}
#bookingModal .form-control:focus, 
#bookingModal .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
    background-color: #fff;
}
#bookingModal .form-control::placeholder {
    color: #a0aec0;
}
#bookingModal .input-group-text {
    background-color: #fbfbfc;
    border: 1px solid #e2e8f0;
    border-right: none;
    font-size: 14px;
    color: #444;
}
#bookingModal .contact-group .form-control {
    border-left: none;
}
#bookingModal .btn-reserve-now,
#bookingModal .btn-reserve-email {
    background-color: #e2efff;
    color: #0d47a1;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    border: none;
    transition: var(--transition);
    flex: 1;
    font-size: 14px;
}
#bookingModal .btn-reserve-now:hover, 
#bookingModal .btn-reserve-email:hover {
    background-color: #0d47a1;
    color: #fff;
}
#bookingModal .asterisk {
    color: #e53e3e;
    margin-left: 2px;
}
#bookingModal textarea {
    min-height: 80px;
}

@media (max-width: 576px) {
    #bookingModal .modal-body {
        padding: 1rem;
    }
    #bookingModal .footer-btns {
        flex-direction: column;
        gap: 10px !important;
    }
}

/* --- Inline Booking Form (Redesigned) --- */
.custom-input {
    border: 1px solid #cce5ff !important;
    background-color: #f7fbff !important;
    border-radius: 4px !important;
    padding: 10px 15px !important;
    font-size: 14px !important;
    transition: all 0.2s ease-in-out !important;
}
.custom-input:focus {
    border-color: #0088cc !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 136, 204, 0.1) !important;
    background-color: #fff !important;
}
.btn-submit-custom {
    background: linear-gradient(to right, #ff8a65, #ff7043);
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 35px !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    box-shadow: 0 4px 15px rgba(255, 112, 67, 0.3) !important;
    transition: all 0.3s ease !important;
}
.btn-submit-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 112, 67, 0.4) !important;
    filter: brightness(1.1);
}
.rental-options .form-check-input:checked {
    background-color: #0088cc;
    border-color: #0088cc;
}
.rental-options .form-check-label {
    font-size: 15px;
    color: #333;
    margin-right: 15px;
}
