.booking-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    background: rgba(10, 16, 30, 0.72);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}
.booking-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.booking-modal {
    width: min(100%, 720px);
    max-height: 92vh;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 32px;
    padding: 32px 32px 28px;
    box-shadow: 0 48px 120px rgba(9, 18, 38, 0.28);
    position: relative;
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.32s ease, opacity 0.32s ease;
    border: 1px solid rgba(255, 255, 255, 0.55);
}
.booking-modal::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    width: 88px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.95), rgba(153, 101, 21, 0.95));
}
.booking-modal-overlay.open .booking-modal {
    transform: translateY(0);
    opacity: 1;
}
.booking-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    background: rgba(21, 30, 53, 0.94);
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform 0.2s ease, background 0.2s ease;
}
.booking-modal-close:hover {
    transform: scale(1.05);
    background: rgba(21, 30, 53, 1);
}
.booking-modal-header h2 {
    margin: 0 0 10px;
    font-size: 30px;
    letter-spacing: -0.02em;
}
.booking-modal-header p {
    margin: 0;
    color: #4f5666;
    font-size: 15px;
    line-height: 1.75;
}
.booking-popup-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}
.booking-popup-form .form-row:nth-last-child(1) {
    margin-bottom: 0;
}
.booking-popup-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.booking-popup-form label {
    font-weight: 600;
    font-size: 14px;
    color: #1f2937;
}
.booking-popup-form input,
.booking-popup-form select,
.booking-popup-form textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 16px;
    font-size: 15px;
    color: #1f2937;
    background: #f8fafc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.booking-popup-form input:focus,
.booking-popup-form select:focus,
.booking-popup-form textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}
.booking-popup-form textarea {
    min-height: 136px;
    resize: vertical;
}
.booking-form-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}
.booking-help {
    color: #6b7280;
    font-size: 14px;
}
.booking-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 16px 28px;
    border: none;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    background: linear-gradient(90deg, #d4af37 0%, #c49b2f 52%, #a77d23 100%);
    color: #fff;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    box-shadow: 0 14px 26px rgba(212, 175, 55, 0.24);
}
.booking-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(212, 175, 55, 0.32);
}
.booking-submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none;
}
.booking-form-feedback {
    margin-top: 18px;
    font-size: 14px;
    min-height: 22px;
}
.booking-form-feedback.error {
    color: #b91c1c;
}
.booking-form-feedback.success {
    color: #15803d;
}
body.booking-modal-open {
    overflow: hidden;
}
@media (max-width: 900px) {
    .booking-popup-form .form-row {
        grid-template-columns: 1fr;
    }
}
