/* Dedicated Booking Page */

.booking-page {
    background:
        radial-gradient(ellipse 70% 50% at 50% -10%, rgba(238,114,17,0.07) 0%, transparent 60%),
        linear-gradient(180deg, var(--light) 0%, #f9ecdd 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero band */
.booking-hero {
    padding: 150px 0 96px;
    background:
        radial-gradient(ellipse 60% 70% at 80% 0%, rgba(255,148,55,0.24) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 10% 100%, rgba(238,114,17,0.20) 0%, transparent 55%),
        linear-gradient(150deg, var(--dark-warm-1) 0%, var(--dark-warm-2) 48%, var(--dark-warm-3) 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.booking-hero .container { position: relative; z-index: 1; }

.booking-hero-label {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid rgba(238,114,17,0.4);
    border-radius: 100px;
    background: rgba(238,114,17,0.1);
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.booking-hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 14px;
}

.booking-hero-title .text-gold {
    background: linear-gradient(120deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.booking-hero-sub {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 28px;
}

.booking-hero-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.booking-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}

.booking-chip svg { width: 16px; height: 16px; color: var(--gold-light); }

.booking-chip-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-color: transparent;
    color: #fff;
}

/* Layout */
.booking-main {
    flex: 1;
    padding: 0 0 80px;
    margin-top: -44px;
    position: relative;
    z-index: 2;
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(300px, 1fr);
    gap: 28px;
    align-items: start;
}

/* Wizard card */
.booking-wizard-card {
    background: var(--light-soft);
    border-radius: var(--radius);
    box-shadow: 0 24px 70px rgba(34,20,8,0.18);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

/* Premium stepper */
.booking-stepper {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 26px 36px;
    background: linear-gradient(180deg, #fffdfb 0%, #faf0e4 100%);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.booking-stepper .wizard-step-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.booking-stepper .wizard-step-indicator::after { display: none; }

.booking-stepper .wizard-step-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
    background: #fff;
    border: 2px solid rgba(0,0,0,0.1);
    color: var(--text-light);
    transition: var(--transition);
    position: static;
}

.booking-stepper .wizard-step-indicator.active .wizard-step-num {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 0 5px rgba(238,114,17,0.15), 0 6px 16px rgba(238,114,17,0.35);
}

.booking-stepper .wizard-step-indicator.completed .wizard-step-num {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--gold-light);
    font-size: 0;
}

.booking-stepper .wizard-step-indicator.completed .wizard-step-num::before {
    content: '✓';
    font-size: 1rem;
    font-weight: 900;
}

.wizard-step-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.wizard-step-mini {
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-light);
}

.booking-stepper .wizard-step-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light);
    transition: var(--transition);
    white-space: nowrap;
}

.booking-stepper .wizard-step-indicator.active .wizard-step-mini { color: var(--gold-dark); }
.booking-stepper .wizard-step-indicator.active .wizard-step-label { color: var(--text); }
.booking-stepper .wizard-step-indicator.completed .wizard-step-label { color: var(--text-muted); }

.booking-stepper-line {
    flex: 1;
    height: 2px;
    border-radius: 2px;
    background: rgba(0,0,0,0.08);
    min-width: 24px;
    transition: var(--transition);
}

.booking-stepper .wizard-step-indicator.completed + .booking-stepper-line {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.booking-wizard-card .wizard-body { padding: 40px; }

/* Panel headings */
.panel-heading {
    margin-bottom: 30px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.panel-step-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 100px;
    background: rgba(238,114,17,0.1);
    border: 1px solid rgba(238,114,17,0.25);
    color: var(--gold-dark);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.panel-heading h2 {
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

.panel-heading p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.panel-assurance {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    background: rgba(34,197,94,0.06);
    border: 1px solid rgba(34,197,94,0.18);
    font-size: 0.83rem;
    color: #3e7d54;
    font-weight: 500;
    margin-top: 4px;
}

.panel-assurance svg {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}

/* Sidebar */
.booking-sidebar {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.booking-side-card {
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(238,114,17,0.12) 0%, transparent 60%),
        var(--dark-soft);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: 0 24px 70px rgba(34,20,8,0.25);
}

.booking-side-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.booking-side-fee {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    background: rgba(238,114,17,0.12);
    border: 1px solid rgba(238,114,17,0.3);
    margin-bottom: 18px;
}

.booking-side-fee span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.88);
    font-weight: 600;
}

.booking-side-fee strong {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--gold-light);
}

.booking-side-rows { display: flex; flex-direction: column; }

.booking-side-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 0.87rem;
}

.booking-side-row:last-child { border-bottom: none; }
.booking-side-row .label { color: rgba(255,255,255,0.8); }
.booking-side-row .value { font-weight: 700; text-align: right; }

.booking-side-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 16px 0;
}

.booking-side-subtitle {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    margin-bottom: 12px;
}

.booking-side-list { display: flex; flex-direction: column; gap: 9px; }

.booking-side-list li {
    position: relative;
    padding-left: 24px;
    font-size: 0.87rem;
    color: rgba(255,255,255,0.8);
}

.booking-side-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-light);
    font-weight: 800;
}

.booking-side-help p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 14px;
}

.booking-side-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
    word-break: break-all;
}

.booking-side-contact:hover { color: var(--gold-light); }
.booking-side-contact svg { width: 16px; height: 16px; color: var(--gold-light); flex-shrink: 0; }

.booking-side-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    background: rgba(34,197,94,0.07);
    border: 1px solid rgba(34,197,94,0.2);
    font-size: 0.8rem;
    color: #3e7d54;
    font-weight: 600;
}

.booking-side-trust svg { width: 20px; height: 20px; color: var(--success); flex-shrink: 0; }

/* Footer */
.booking-footer {
    background: var(--dark-grad-deep);
    color: rgba(255,255,255,0.8);
    padding: 22px 0;
    font-size: 0.82rem;
}

/* Header back button */
.booking-back-btn { white-space: nowrap; }

/* Responsive */
@media (max-width: 1024px) {
    .booking-layout { grid-template-columns: 1fr; }
    .booking-sidebar { position: static; }
}

@media (max-width: 640px) {
    .booking-page { overflow-x: hidden; }

    .booking-hero { padding: 118px 0 72px; }
    .booking-hero-title { font-size: clamp(1.75rem, 8vw, 2.2rem); }
    .booking-hero-sub { font-size: 0.94rem; padding: 0 4px; }

    .booking-hero-chips {
        justify-content: center;
        gap: 8px;
    }

    .booking-chip {
        font-size: 0.78rem;
        padding: 8px 14px;
    }

    .booking-back-btn {
        font-size: 0.76rem;
        padding: 8px 12px;
        white-space: nowrap;
    }

    .booking-stepper { padding: 16px 14px; gap: 8px; }
    .booking-stepper .wizard-step-num {
        width: 34px;
        height: 34px;
        font-size: 0.78rem;
    }
    .booking-stepper .wizard-step-text { display: none; }
    .booking-stepper .wizard-step-indicator.active .wizard-step-text { display: flex; }
    .booking-stepper .wizard-step-mini { display: none; }
    .booking-stepper-line { min-width: 10px; }
    .booking-wizard-card .wizard-body { padding: 22px 16px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .booking-main { margin-top: -32px; padding-bottom: 60px; }
    .booking-layout { gap: 20px; }
    .booking-sidebar { padding: 20px 16px; }

    .booking-side-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }

    .booking-side-row .value { text-align: left; word-break: break-word; }

    .booking-side-contact {
        align-items: flex-start;
        line-height: 1.45;
    }

    .booking-success-actions { flex-direction: column; }
    .booking-success-actions .btn { width: 100%; }

    .bank-details .summary-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .booking-success-ref {
        font-size: 1rem;
        padding: 10px 14px;
        word-break: break-all;
        max-width: 100%;
    }

    .booking-wizard-card { min-width: 0; overflow: hidden; }

    .payment-notice,
    .payment-notice a {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .payment-notice a { word-break: break-all; }

    .bank-details { min-width: 0; overflow: hidden; }

    .bank-details .value {
        text-align: left;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .payment-instructions h4 {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}
