/* =========================================================
   BOOKING SPLIT — RESPONSIVE + NOT TOO WIDE
   Left image 60% / Right form 40%
   Image full height
   Form padding-top 150px
   ========================================================= */

:root {
    --bg: #050505;
    --fg: #f2f2f2;
    --muted: rgba(242, 242, 242, .55);
    --line: rgba(242, 242, 242, .18);
    --line-strong: rgba(242, 242, 242, .35);

    /* Accent */
    --accent: #7b37d4;
    --accent-soft: rgba(123, 55, 212, .22);
}


.ls-booking-page {
    --bk-vpad: clamp(18px, 4vw, 48px);
    background: radial-gradient(900px 500px at 70% 40%, rgba(123,55,212,.10), transparent 55%),
              radial-gradient(700px 420px at 20% 65%, rgba(123,55,212,.08), transparent 55%),
              var(--bg);
    width: 100%;
    margin: 0;
    padding: calc(var(--nav-h) + var(--bk-vpad)) 0 60px;
}

/* ✅ constrain the split width so it’s not “too much” */
.ls-booking-page__split {
    width: min(1130px, 92vw);
    margin: 0 auto;
    display: flex;
    overflow: hidden;
    min-height: calc(100vh - (var(--bk-vpad) * 2));
}

/* LEFT: 60% image full height */
.ls-booking-page__media {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    background: #000;
    min-height: inherit;
    /* ✅ ensures full height matches split */
}

.ls-booking-page__media-bg {
    position: absolute;
    inset: 0;
    background-image: var(--bk-img, url("/assets/img/about.webp"));
    background-size: cover;
    background-position: center;
    filter: saturate(1.03) contrast(1.03);
    transform: scale(1.01);
}

.ls-booking-page__media-copy {
    color: #fff
}

.ls-booking-page__sub {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 6px;
    opacity: .70;
}


.ls-booking-page__media-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, .10) 60%, rgba(0, 0, 0, .02)),
        linear-gradient(0deg, rgba(0, 0, 0, .52), rgba(0, 0, 0, .08) 60%);
    display: flex;
    align-items: flex-end;
    padding: 18px;
}

/* RIGHT: 40% panel */
.ls-booking-page__panel {
    flex: 1 1 40%;
    background: #121212;
    border-left: 1px solid rgba(255, 255, 255, .06);

    /* ✅ allow form to start at top instead of vertically centered */
    display: flex;
    align-items: stretch;
    justify-content: center;

    padding: 18px;
    min-height: inherit;
    /* ✅ matches split height */
}

/* ✅ Form top padding 150px */
.ls-booking-page__panel-inner {
    width: min(440px, 100%);
    padding: 15px 0px;
    color: #fff;
}

/* ---------- Keep your existing form styles, but scoped (optional) ---------- */
.ls-booking-page .ls-form {
    display: grid;
    gap: 10px;
}

.ls-booking-page .ls-field {
    display: grid;
    gap: 5px;
}

.ls-booking-page .ls-field input,
.ls-booking-page .ls-field select,
.ls-booking-page .ls-field textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: #0f0f0f;
    color: #fff;
    padding: 10px 12px;
    outline: none;
    font-size: 14px;
    font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    letter-spacing: .10em;
}

.ls-booking-page .ls-field textarea {
    resize: vertical;
    min-height: 120px;
}

.ls-booking-page .ls-field input:focus,
.ls-booking-page .ls-field select:focus,
.ls-booking-page .ls-field textarea:focus {
    border-color: #8139dfa2;
    box-shadow: 0 0 0 3px rgba(129, 57, 223, .14);
}

.ls-booking-page__title {
    font-size: 22px;
    font-weight: 300;
    margin: 0 0 6px;
}

.ls-booking-page__text {
    margin: 0;
    color: rgba(255, 255, 255, .75);
    font-size: 12px;
    margin-bottom: 20px;
}

.sr-only {
    font-size: 14px;
    font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 300;
    letter-spacing: .10em;
}

.ls-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    padding: 12px 18px;
    background: transparent;
    border: 1px solid var(--line-strong);
    text-decoration: none;
    cursor: pointer;
     color: var(--fg);
    transition: transform .12s ease, border-color .15s ease, background .15s ease, box-shadow .15s ease;
    border-color: rgba(123, 55, 212, .75);
    background: linear-gradient(180deg, rgba(123, 55, 212, .18), rgba(123, 55, 212, .08));
}

.ls-btn__label {
    font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 300;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--fg);
}

.ls-btn:hover {
    border-color: var(--accent);
    background: rgba(123, 55, 212, .10);
    box-shadow: 0 12px 30px -18px rgba(123, 55, 212, .85);
    transform: translateY(-1px);
}

/* ✅ spinner */
.ls-btn__spinner {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, .35);
    border-top-color: rgba(255, 255, 255, .95);
    display: none;
    /* hidden until loading */
    animation: lsSpin .75s linear infinite;
}

/* show spinner when loading */
.ls-btn.is-loading .ls-btn__spinner {
    display: inline-block;
}

@keyframes lsSpin {
    to {
        transform: rotate(360deg);
    }
}

/* ✅ loading state (prevents double submit + keeps style) */
.ls-btn.is-loading {
    cursor: not-allowed;
    opacity: .88;
    transform: none;
    box-shadow: none;
}

.ls-btn:disabled {
    cursor: not-allowed;
    opacity: .88;
}

.ls-btn:active {
    transform: translateY(0);
}


.ls-error {
    font-size: 12px;
    color: #e74c3c;
}

/* =========================================================
   RESPONSIVE STACK
   ========================================================= */
@media (max-width: 980px) {
    .ls-booking-page__split {
        flex-direction: column;
        min-height: auto;
    }

    .ls-booking-page__media {
        flex: none;
        width: 100%;
        height: 40vh;
        min-height: 240px;
    }

    .ls-booking-page__panel {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .06);
        padding: 16px;
    }

    /* ✅ reduce the 150px padding on small screens */
    .ls-booking-page__panel-inner {
        width: 100%;
        padding-top: 28px;
    }
}

@media (max-width: 520px) {
    .ls-booking-page__media {
        height: 34vh;
        min-height: 210px;
    }

    .ls-booking-page__media-overlay {
        padding: 14px;
    }
}