.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
}

.booking-modal.open {
    display: block;
}

.booking-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 6, 5, 0.86);
    backdrop-filter: blur(10px);
}

.booking-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(760px, 100%);
    height: 100%;
    overflow-y: auto;
    padding: 58px;
    background:
        radial-gradient(circle at top right, rgba(233, 216, 177, 0.12), transparent 35%),
        #211713;
    border-left: 1px solid var(--border);
    box-shadow: -24px 0 70px rgba(0, 0, 0, 0.45);
    animation: bookingSlideIn 0.42s ease;
}

.booking-close {
    position: absolute;
    top: 20px;
    right: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--ivory);
    font-size: 1.7rem;
}

.booking-header {
    padding-right: 60px;
}

.booking-header h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

.booking-header > p:last-child {
    margin-top: 14px;
}

.booking-progress {
    height: 4px;
    margin: 32px 0 42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    overflow: hidden;
}

.booking-progress-bar {
    width: 16.666%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--gold), var(--nude));
    transition: width 0.35s ease;
}

.booking-step {
    display: none;
    animation: bookingFade 0.35s ease;
}

.booking-step.active {
    display: block;
}

.booking-step-label {
    color: var(--nude);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.booking-step h3 {
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    margin-bottom: 28px;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.choice-card {
    position: relative;
    min-height: 92px;
    cursor: pointer;
}

.choice-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-card span {
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--ivory);
    font-weight: 700;
    transition: 0.25s ease;
}

.choice-card input:checked + span {
    border-color: var(--nude);
    background: rgba(221, 147, 107, 0.12);
    box-shadow: 0 0 0 1px rgba(221, 147, 107, 0.2);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-grid label,
.full-field {
    display: grid;
    gap: 8px;
}

.form-grid label span,
.full-field span {
    color: var(--gold);
    font-size: 0.84rem;
    font-weight: 700;
}

.form-grid input,
.form-grid select,
.full-field input,
.full-field textarea {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    outline: none;
    background: rgba(255, 255, 255, 0.035);
    color: var(--ivory);
}

.full-field {
    margin-top: 22px;
}

.full-field textarea {
    resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.full-field input:focus,
.full-field textarea:focus {
    border-color: var(--nude);
}

.form-grid select option {
    color: #111;
}

.booking-actions {
    margin-top: 34px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.booking-summary {
    display: grid;
    gap: 12px;
}

.booking-summary div {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
}

.booking-summary span,
.booking-summary strong {
    display: block;
}

.booking-summary span {
    color: var(--muted);
    font-size: 0.78rem;
}

.booking-summary strong {
    color: var(--gold);
    margin-top: 4px;
}

.booking-consent {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 0.88rem;
}

.booking-consent input {
    margin-top: 5px;
}

.booking-success {
    text-align: center;
    padding: 60px 0;
}

.booking-success h3 {
    font-size: 2.5rem;
    margin: 14px 0;
}

.booking-success p {
    margin-bottom: 20px;
}

.success-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--gold);
    color: var(--bg);
    font-size: 2rem;
    font-weight: 800;
}

@keyframes bookingSlideIn {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bookingFade {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
