:root {
    --brand-red: #dc2626;
    --brand-red-dark: #b91c1c;
    --brand-red-soft: #fff1f2;
    --navy-950: #020817;
    --navy-900: #06152f;
    --navy-800: #0a2348;
    --slate-900: #0f172a;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body.booking-page {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    overflow-wrap: anywhere;
    background: #f8fafc;
    color: var(--slate-900);
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.skip-link {
    position: fixed;
    left: 1rem;
    top: 1rem;
    z-index: 1100;
    padding: .75rem 1rem;
    border-radius: .75rem;
    background: #fff;
    color: var(--navy-950);
    font-weight: 700;
    transform: translateY(-180%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

body.booking-page > .container {
    width: 100%;
    max-width: 1180px;
    flex: 1;
    margin: 0 auto;
    padding: 3rem 1.25rem 4rem;
    display: grid;
    grid-template-columns: minmax(250px, .72fr) minmax(0, 1.55fr);
    align-items: start;
    gap: 1.5rem;
}

body.booking-page .section-title {
    grid-column: 1 / -1;
    margin: 0 0 .5rem;
    color: var(--navy-900);
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(2.75rem, 6vw, 4.75rem);
    font-weight: 800;
    line-height: .95;
    letter-spacing: -.025em;
    text-align: left;
    text-transform: uppercase;
}

body.booking-page .section-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 5px;
    margin-top: 1rem;
    border-radius: 99px;
    background: var(--brand-red);
}

body.booking-page .alert-info {
    position: sticky;
    top: 1.5rem;
    grid-column: 1;
    margin: 0;
    padding: 1.5rem;
    border: 1px solid #991b1b;
    border-radius: 1.5rem;
    background: var(--brand-red-dark);
    color: #fff;
    line-height: 1.65;
    text-align: left !important;
    box-shadow: 0 22px 48px -28px rgba(185, 28, 28, .85);
}

body.booking-page .alert-info::before {
    content: "";
    display: block;
    width: 44px;
    height: 4px;
    margin-bottom: 1.25rem;
    border-radius: 99px;
    background: #fff;
}

body.booking-page .alert-info strong:first-child {
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.65rem;
    line-height: 1.1;
    text-transform: uppercase;
}

body.booking-page .alert-info p,
body.booking-page .alert-info small {
    color: rgba(255, 255, 255, .9);
    line-height: 1.65;
}

body.booking-page .alert-info p:last-child,
body.booking-page .alert-info p:last-of-type {
    margin-bottom: 0;
}

body.booking-page .alert-info hr {
    border-color: rgba(255, 255, 255, .16);
}

body.booking-page #bookingForm {
    grid-column: 2;
    min-width: 0;
    margin: 0;
    padding: 2rem;
    border: 1px solid #fecaca;
    border-radius: 1.75rem;
    background: #fff;
    box-shadow: 0 26px 65px -38px rgba(15, 23, 42, .35);
}

.form-heading {
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--slate-200);
}

.form-heading span {
    display: block;
    margin-bottom: .4rem;
    color: var(--brand-red);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.form-heading h2 {
    margin: 0;
    color: var(--navy-950);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.form-heading p {
    margin: .5rem 0 0;
    color: var(--slate-600);
    line-height: 1.6;
}

body.booking-page #bookingForm .row {
    margin-right: -.625rem;
    margin-left: -.625rem;
}

body.booking-page #bookingForm [class*="col-"] {
    padding-right: .625rem;
    padding-left: .625rem;
    margin-bottom: 1rem;
}

body.booking-page label {
    margin-bottom: .5rem;
    color: var(--slate-900);
    font-size: .875rem;
    font-weight: 700;
}

body.booking-page .form-control,
body.booking-page .select2-container--default .select2-selection--single,
body.booking-page .select2-container--default .select2-selection--multiple {
    min-height: 52px;
    border: 1px solid var(--slate-300);
    border-radius: .8rem;
    background: #fff;
    color: var(--slate-900);
    font-size: 1rem;
    box-shadow: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

body.booking-page .form-control {
    height: 52px;
    padding: .75rem .9rem;
}

body.booking-page textarea.form-control {
    min-height: 108px;
    height: auto;
    resize: vertical;
}

body.booking-page .form-control:focus,
body.booking-page .select2-container--focus .select2-selection,
body.booking-page .select2-container--open .select2-selection {
    border-color: var(--brand-red) !important;
    outline: 0;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, .12) !important;
}

body.booking-page .form-control::placeholder {
    color: #94a3b8;
}

body.booking-page .select2-container {
    width: 100% !important;
}

body.booking-page .select2-container--default .select2-selection--single {
    padding: .55rem .8rem;
}

body.booking-page .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0 1.5rem 0 0;
    line-height: 32px;
}

body.booking-page .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 12px;
    right: 8px;
}

body.booking-page .select2-container--default .select2-selection--multiple {
    padding: .4rem .55rem;
}

body.booking-page .select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin: .2rem .3rem .2rem 0;
    padding: .25rem .45rem;
    border: 1px solid #fecdd3;
    border-radius: .45rem;
    background: var(--brand-red-soft);
    color: var(--brand-red-dark);
}

.select2-dropdown {
    overflow: hidden;
    border: 1px solid var(--slate-300) !important;
    border-radius: .8rem !important;
    box-shadow: 0 18px 45px -24px rgba(15, 23, 42, .4);
}

.select2-results__option {
    padding: .7rem .85rem !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: var(--brand-red) !important;
}

#charCounter {
    right: 14px !important;
    bottom: 12px !important;
    padding: .15rem .35rem;
    border-radius: .35rem;
    background: rgba(255, 255, 255, .9);
    color: var(--slate-600) !important;
    font-size: .75rem;
}

.terms-row {
    margin: .25rem 0 1.25rem !important;
    padding: 1rem;
    border: 1px solid var(--slate-200);
    border-radius: 1rem;
    background: var(--slate-100);
}

.terms-row .col-md-12 {
    margin: 0 !important;
}

#termsCheckbox {
    width: 20px;
    height: 20px;
    margin: 1px .55rem 0 0;
    vertical-align: top;
    accent-color: var(--brand-red);
}

.terms-row label {
    max-width: calc(100% - 34px);
    margin: 0;
    font-weight: 500;
    line-height: 1.55;
}

.terms-row a {
    color: var(--brand-red-dark);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

#checkboxError {
    margin: .5rem 0 0 1.8rem;
}

.form-actions {
    justify-content: flex-end !important;
    gap: .75rem;
    padding-top: .25rem;
}

body.booking-page .btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .75rem 1.25rem;
    border-radius: .8rem;
    font-size: .95rem;
    font-weight: 800;
    box-shadow: none;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

body.booking-page .btn-primary {
    border-color: var(--brand-red);
    background: var(--brand-red);
    color: #fff;
    box-shadow: 0 16px 34px -18px rgba(220, 38, 38, .85);
}

body.booking-page .btn-primary:hover,
body.booking-page .btn-primary:focus {
    border-color: #ef233c;
    background: #ef233c;
    color: #fff;
}

body.booking-page .btn-secondary {
    border: 1px solid var(--slate-300);
    background: #fff;
    color: var(--navy-950);
}

body.booking-page .btn-secondary:hover,
body.booking-page .btn-secondary:focus {
    border-color: var(--brand-red);
    background: var(--brand-red-soft);
    color: var(--brand-red-dark);
}

body.booking-page .btn:focus-visible,
body.booking-page a:focus-visible,
body.booking-page input:focus-visible,
body.booking-page select:focus-visible,
body.booking-page textarea:focus-visible {
    outline: 3px solid rgba(220, 38, 38, .3);
    outline-offset: 3px;
}

body.booking-page .btn:disabled {
    border-color: var(--slate-200);
    background: var(--slate-200);
    color: #64748b;
    cursor: not-allowed;
    box-shadow: none;
}

body.booking-page .footer {
    margin: 0 !important;
    padding: 1.5rem 1rem;
    border-top: 1px solid var(--brand-red-dark);
    background: var(--brand-red-dark);
    color: rgba(255, 255, 255, .9);
    text-align: center;
}

body.booking-page .footer p {
    margin: 0;
}

.swal2-confirm {
    background: var(--brand-red) !important;
}

@media (max-width: 767.98px) {
    body.booking-page > .container {
        display: block;
        padding: 2.25rem 1rem 3rem;
    }

    body.booking-page .section-title {
        margin-bottom: 1.75rem;
        font-size: 3rem;
    }

    body.booking-page .alert-info {
        position: static;
        margin-bottom: 1rem;
        padding: 1.25rem;
    }

    body.booking-page #bookingForm {
        padding: 1.25rem;
        border-radius: 1.35rem;
    }

    .form-heading h2 {
        font-size: 1.75rem;
    }

    .form-actions {
        flex-direction: column-reverse;
    }

    body.booking-page .form-actions .btn {
        width: 100%;
        margin: 0 !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
