/* Booking Modal */
.booking-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.booking-modal-overlay.active {
    display: flex;
}
.booking-modal {
    background: #fff;
    border-radius: 12px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.booking-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    color: #999;
    background: none;
    border: none;
    padding: 0;
}
.booking-modal-close:hover {
    color: #333;
}
.booking-modal h3 {
    font-size: 24px;
    margin: 0 0 6px;
    color: #113D48;
}
.booking-modal .subtitle {
    color: #666;
    margin-bottom: 25px;
    font-size: 14px;
}
.booking-modal .form-group {
    margin-bottom: 16px;
}
.booking-modal label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
}
.booking-modal label .required {
    color: #e74c3c;
}
.booking-modal input,
.booking-modal select,
.booking-modal textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.booking-modal input:focus,
.booking-modal select:focus,
.booking-modal textarea:focus {
    outline: none;
    border-color: #113D48;
}
.booking-modal textarea {
    resize: vertical;
    min-height: 80px;
}
.booking-modal .btn-submit {
    background: #113D48;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
}
.booking-modal .btn-submit:hover {
    background: #1a5a6a;
}
.booking-modal .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.booking-modal .form-message {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
    display: none;
}
.booking-modal .form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.booking-modal .form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.booking-modal .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
@media (max-width: 480px) {
    .booking-modal { padding: 25px 20px; }
    .booking-modal .form-row-2 { grid-template-columns: 1fr; }
}

/* Form Tabs */
.bm-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 25px;
    border-bottom: 2px solid #e0e0e0;
}
.bm-tab {
    flex: 1;
    padding: 10px 15px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #888;
    border: none;
    background: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}
.bm-tab:hover { color: #113D48; }
.bm-tab.active {
    color: #113D48;
    border-bottom-color: #113D48;
}
.bm-form-panel { display: none; }
.bm-form-panel.active { display: block; }
