/* =========================================================
   TRAVEL SWIFT — BOOK NOW
========================================================= */

.book-now-page main {
    overflow: hidden;
}

/* Hero */
.booking-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: 34px 86px;
    color: var(--colour-charcoal);
    background:
        #FFFFFF
        url("/assets/images/background.svg")
        center / cover no-repeat;
}

.booking-hero::before,
.booking-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

.booking-hero::before {
    top: -230px;
    right: -150px;
    width: 540px;
    height: 540px;
    border: 72px solid rgba(38, 51, 118, 0.045);
}

.booking-hero::after {
    bottom: -240px;
    left: 37%;
    width: 420px;
    height: 420px;
    border: 62px solid rgba(216, 114, 0, 0.055);
}

.booking-breadcrumb {
    margin-bottom: 52px;
}

.booking-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #697083;
    font-size: 0.84rem;
    font-weight: 700;
}

.booking-breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.booking-breadcrumb li + li::before {
    content: "/";
    color: var(--colour-orange);
}

.booking-breadcrumb a:hover {
    color: var(--colour-orange);
}

.booking-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.72fr);
    gap: clamp(54px, 7vw, 110px);
    align-items: center;
}

.booking-hero__content {
    max-width: 900px;
}

.booking-hero .eyebrow {
    color: var(--colour-orange);
}

.booking-hero h1 {
    max-width: 800px;
    margin-bottom: 24px;
    color: var(--colour-charcoal);
    font-size: 46px;
    line-height: 0.98;
}

.booking-hero__lead {
    max-width: 780px;
    margin-bottom: 18px;
    color: #3E4558;
    font-size: clamp(1.08rem, 1.35vw, 1.28rem);
    font-weight: 700;
    line-height: 1.58;
}

.booking-hero__content > p:not(.eyebrow):not(.booking-hero__lead) {
    max-width: 760px;
    color: #656C7D;
}

.booking-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.booking-button--outline {
    color: var(--colour-navy);
    border-color: rgba(38, 51, 118, 0.18);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 28px rgba(33, 35, 49, 0.08);
}

.booking-button--outline:hover {
    color: var(--colour-white);
    border-color: var(--colour-navy);
    background: var(--colour-navy);
}

.booking-hero__assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
    color: #454C5E;
    font-size: 0.86rem;
    font-weight: 750;
}

.booking-hero__assurances li {
    position: relative;
    padding-left: 22px;
}

.booking-hero__assurances li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--colour-orange);
    font-weight: 900;
}

.booking-checklist {
    position: relative;
    padding: clamp(30px, 3.5vw, 46px);
    border: 1px solid rgba(38, 51, 118, 0.10);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 28px 70px rgba(33, 35, 49, 0.14);
    backdrop-filter: blur(16px);
}

.booking-checklist::before {
    content: "";
    position: absolute;
    top: 0;
    left: 34px;
    width: 74px;
    height: 5px;
    border-radius: 0 0 999px 999px;
    background: var(--colour-orange);
}

.booking-checklist__label {
    margin-bottom: 17px;
    color: var(--colour-orange);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.booking-checklist h2 {
    margin-bottom: 24px;
    color: var(--colour-charcoal);
    font-size: 34px;
}

.booking-checklist ul {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.booking-checklist li {
    position: relative;
    padding-left: 22px;
    color: #4E5568;
    font-size: 0.91rem;
}

.booking-checklist li::before {
    content: "";
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--colour-orange);
}

/* Proof strip */
.booking-proof-strip {
    position: relative;
    z-index: 2;
    background: var(--colour-white);
    box-shadow: 0 18px 46px rgba(33, 35, 49, 0.08);
}

.booking-proof-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.booking-proof-strip article {
    position: relative;
    min-width: 0;
    padding: 27px 30px;
    text-align: center;
}

.booking-proof-strip article + article::before {
    content: "";
    position: absolute;
    top: 22px;
    bottom: 22px;
    left: 0;
    width: 1px;
    background: var(--colour-border);
}

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

.booking-proof-strip strong {
    margin-bottom: 3px;
    color: var(--colour-navy);
    font-size: 1.02rem;
    font-weight: 900;
}

.booking-proof-strip span {
    color: var(--colour-muted);
    font-size: 0.83rem;
}

/* Form */
.booking-form-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    scroll-margin-top: 110px;
    padding-block: clamp(72px, 8vw, 112px);
    background:
        radial-gradient(circle at 7% 18%, rgba(216, 114, 0, 0.10), transparent 24%),
        radial-gradient(circle at 94% 86%, rgba(38, 51, 118, 0.10), transparent 25%),
        linear-gradient(135deg, #FAFAFC 0%, #F4F6FB 52%, #F8F9FD 100%);
}

/* Subtle dual-colour dot texture. */
.booking-form-section::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(
            circle,
            rgba(38, 51, 118, 0.16) 0 1.25px,
            transparent 1.5px
        ),
        radial-gradient(
            circle,
            rgba(216, 114, 0, 0.18) 0 1.5px,
            transparent 1.8px
        );
    background-position:
        0 0,
        14px 14px;
    background-size:
        28px 28px,
        84px 84px;
    opacity: 0.78;
}

/* Soft centre fade keeps the form and heading visually dominant. */
.booking-form-section::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            ellipse 54% 72% at 50% 55%,
            rgba(247, 248, 252, 0.96) 0%,
            rgba(247, 248, 252, 0.88) 48%,
            rgba(247, 248, 252, 0.42) 72%,
            transparent 100%
        );
}

.booking-form-section > .container {
    position: relative;
    z-index: 1;
}

.booking-form-heading {
    width: min(100%, 820px);
    margin: 0 auto 34px;
    text-align: center;
}

.booking-form-heading h2 {
    margin-bottom: 14px;
}

.booking-form-heading > p:not(.eyebrow) {
    color: var(--colour-muted);
}

.booking-form-shell {
    width: min(100%, 1180px);
    margin-inline: auto;
}

/* Next steps */
.booking-next__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.booking-next__grid article {
    position: relative;
    min-height: 100%;
    padding: 31px;
    overflow: hidden;
    border: 1px solid rgba(38, 51, 118, 0.09);
    border-radius: var(--radius-md);
    background: var(--colour-white);
    box-shadow: var(--shadow-sm);
}

.booking-next__grid article::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -50px;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: rgba(216, 114, 0, 0.055);
}

.booking-next__grid article > span {
    display: grid;
    width: 43px;
    height: 43px;
    margin-bottom: 22px;
    place-items: center;
    color: var(--colour-white);
    border-radius: 12px;
    background: var(--colour-navy);
    font-size: 0.74rem;
    font-weight: 900;
}

.booking-next__grid h3,
.booking-next__grid p {
    position: relative;
    z-index: 1;
}

.booking-next__grid p {
    color: var(--colour-muted);
    font-size: 0.91rem;
    line-height: 1.62;
}

/* Contact help */
.booking-help__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: clamp(58px, 8vw, 126px);
    align-items: center;
}

.booking-help__content {
    max-width: 700px;
}

.booking-help__lead {
    color: var(--colour-charcoal);
    font-size: 1.08rem;
    font-weight: 700;
}

.booking-help__content > p:not(.eyebrow):not(.booking-help__lead) {
    color: var(--colour-muted);
}

.booking-help__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
    margin-top: 30px;
}

.booking-help__cards {
    display: grid;
    gap: 15px;
}

.booking-help__cards a {
    display: grid;
    padding: 23px 26px;
    border: 1px solid rgba(38, 51, 118, 0.10);
    border-radius: var(--radius-md);
    background: var(--colour-white);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.booking-help__cards a:hover {
    transform: translateX(5px);
    border-color: rgba(216, 114, 0, 0.42);
    box-shadow: var(--shadow-md);
}

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

.booking-help__cards span {
    margin-bottom: 4px;
    color: var(--colour-orange);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.booking-help__cards strong {
    margin-bottom: 4px;
    color: var(--colour-charcoal);
    font-size: 1.04rem;
    overflow-wrap: anywhere;
}

.booking-help__cards small {
    color: var(--colour-muted);
    font-size: 0.82rem;
}

/* Privacy */
.booking-privacy__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
    gap: clamp(58px, 8vw, 126px);
    align-items: center;
}

.booking-privacy h2 {
    color: var(--colour-white);
}

.booking-privacy__lead {
    color: var(--colour-white);
    font-size: 1.08rem;
    font-weight: 700;
}

.booking-privacy__layout > div:first-child > p:not(.eyebrow):not(.booking-privacy__lead) {
    color: rgba(255, 255, 255, 0.72);
}

.booking-privacy__links {
    display: grid;
    gap: 14px;
}

.booking-privacy__links a {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 22px 24px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.065);
    transition:
        transform var(--transition-fast),
        border-color var(--transition-fast),
        background-color var(--transition-fast);
}

.booking-privacy__links a:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 180, 95, 0.45);
    background: rgba(255, 255, 255, 0.09);
}

.booking-privacy__bullet {
    width: 10px;
    height: 10px;
    margin-top: 7px;
    border-radius: 50%;
    background: #FFB45F;
    box-shadow: 0 0 0 7px rgba(216, 114, 0, 0.12);
}

.booking-privacy__links strong,
.booking-privacy__links small {
    display: block;
}

.booking-privacy__links strong {
    margin-bottom: 4px;
    color: var(--colour-white);
}

.booking-privacy__links small {
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.83rem;
}

/* FAQ */
.booking-faq__list {
    display: grid;
    width: min(100%, 980px);
    gap: 14px;
    margin-inline: auto;
}

.booking-faq__list details {
    overflow: hidden;
    border: 1px solid rgba(38, 51, 118, 0.10);
    border-radius: 16px;
    background: var(--colour-white);
    box-shadow: 0 8px 24px rgba(33, 35, 49, 0.055);
}

.booking-faq__list summary {
    position: relative;
    padding: 24px 68px 24px 26px;
    color: var(--colour-charcoal);
    cursor: pointer;
    list-style: none;
    font-size: 1rem;
    font-weight: 850;
    line-height: 1.4;
}

.booking-faq__list summary::-webkit-details-marker {
    display: none;
}

.booking-faq__list summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 24px;
    display: grid;
    width: 34px;
    height: 34px;
    transform: translateY(-50%);
    place-items: center;
    color: var(--colour-navy);
    border-radius: 50%;
    background: var(--colour-soft-blue);
    font-size: 1.25rem;
    font-weight: 500;
}

.booking-faq__list details[open] summary::after {
    content: "−";
    color: var(--colour-white);
    background: var(--colour-orange);
}

.booking-faq__list details[open] summary {
    color: var(--colour-navy);
}

.booking-faq__list details > div {
    padding: 0 68px 24px 26px;
}

.booking-faq__list details p {
    margin: 0;
    color: var(--colour-muted);
}

.booking-faq__list details a {
    color: var(--colour-navy);
    font-weight: 800;
}

.booking-faq__list details a:hover {
    color: var(--colour-orange);
}

/* Final CTA */
.booking-final-cta {
    padding-block: 78px;
    color: var(--colour-white);
    background: linear-gradient(115deg, var(--colour-charcoal), var(--colour-navy));
}

.booking-final-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 48px;
    align-items: center;
}

.booking-final-cta h2 {
    max-width: 760px;
    margin-bottom: 14px;
    color: var(--colour-white);
}

.booking-final-cta p:not(.eyebrow) {
    max-width: 790px;
    color: rgba(255, 255, 255, 0.72);
}

.booking-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 13px;
}

/* Responsive */
@media (max-width: 1180px) {
    .booking-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
        gap: 46px;
    }

    .booking-next__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .booking-hero__grid,
    .booking-help__layout,
    .booking-privacy__layout,
    .booking-final-cta__inner {
        grid-template-columns: 1fr;
    }

    .booking-checklist {
        width: min(100%, 720px);
    }

    .booking-proof-strip__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .booking-proof-strip article:nth-child(3)::before {
        display: none;
    }

    .booking-proof-strip article:nth-child(n + 3) {
        border-top: 1px solid var(--colour-border);
    }

    .booking-help__content {
        max-width: none;
    }

    .booking-final-cta__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .booking-hero {
        padding-block: 24px 62px;
    }

    .booking-breadcrumb {
        margin-bottom: 42px;
    }

    .booking-hero h1 {
        font-size: 32px;
    }

    .booking-hero__actions,
    .booking-help__actions,
    .booking-final-cta__actions {
        display: grid;
        width: 100%;
    }

    .booking-hero__actions .button,
    .booking-help__actions .button,
    .booking-final-cta__actions .button {
        width: 100%;
    }

    .booking-hero__assurances {
        display: grid;
        gap: 9px;
    }

    .booking-checklist {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .booking-proof-strip__grid {
        grid-template-columns: 1fr;
    }

    .booking-proof-strip article + article::before,
    .booking-proof-strip article:nth-child(3)::before {
        top: 0;
        right: 30px;
        bottom: auto;
        left: 30px;
        display: block;
        width: auto;
        height: 1px;
    }

    .booking-proof-strip article:nth-child(n + 3) {
        border-top: 0;
    }

    .booking-form-section {
        padding-block: 58px 70px;
    }

    .booking-form-section::before {
        background-position:
            0 0,
            12px 12px;
        background-size:
            24px 24px,
            72px 72px;
        opacity: 0.54;
    }

    .booking-form-section::after {
        background:
            radial-gradient(
                ellipse 92% 76% at 50% 52%,
                rgba(247, 248, 252, 0.97) 0%,
                rgba(247, 248, 252, 0.90) 60%,
                rgba(247, 248, 252, 0.48) 82%,
                transparent 100%
            );
    }

    .booking-next__grid {
        grid-template-columns: 1fr;
    }

    .booking-next__grid article {
        padding: 26px;
    }

    .booking-faq__list summary {
        padding: 21px 58px 21px 20px;
    }

    .booking-faq__list summary::after {
        right: 18px;
        width: 30px;
        height: 30px;
    }

    .booking-faq__list details > div {
        padding: 0 20px 21px;
    }

    .booking-final-cta {
        padding-block: 62px;
    }
}

@media (max-width: 420px) {
    .booking-hero h1 {
        font-size: 32px;
    }

    .booking-proof-strip article {
        padding: 23px 20px;
    }

    .booking-help__cards strong {
        font-size: 0.92rem;
    }
}
