/* Explain: Styles for interactive components like forms and overlays. - */
.booking-form {
    border-radius: 1.5rem;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    background: var(--surface-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.form-label {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--text-color);
    font-size: 0.8rem;
    font-weight: 700;
}

.form-status.success {
    color: #059669;
}

.form-status.error {
    color: #DC2626;
}

.mobile-book-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 45;
    border-top: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.95);
    padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
    backdrop-filter: blur(10px);
}

.booking-overlay {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
    overflow-y: auto;
    background: rgba(17, 24, 39, 0.6);
    padding: 1rem;
    backdrop-filter: blur(4px);
}

.booking-overlay.is-open {
    display: block;
}

.booking-overlay-panel {
    min-height: calc(100vh - 2rem);
    background: var(--background-color);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
    border-radius: 1.5rem;
    padding: clamp(1.5rem, 4vw, 2.5rem);
}