/* =========================================
   BOOKING PAGE
========================================= */

.velo-booking-page {
    width: 100%;
    overflow: hidden;

    color: #07101f;
    background: #ffffff;
}

/* =========================================
   BOOKING HERO
========================================= */

.velo-booking-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    min-height: clamp(860px, 100vh, 1120px);

    display: flex;
    align-items: center;

    padding:
        clamp(130px, 10vw, 180px)
        24px
        clamp(90px, 8vw, 140px);

    background: #f6fbff;
}

/* =========================================
   BACKGROUND IMAGE
========================================= */

.velo-booking-hero__background {
    position: absolute;
    inset: 0;
    z-index: -4;

    overflow: hidden;

    pointer-events: none;
}

.velo-booking-hero__background img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    filter:
        saturate(0.94)
        contrast(0.98)
        brightness(1.02);

    transform: scale(1.01);

    pointer-events: none;
    user-select: none;
}

/* =========================================
   BACKGROUND OVERLAY
========================================= */

.velo-booking-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -3;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(246, 251, 255, 0.97) 0%,
            rgba(246, 251, 255, 0.92) 32%,
            rgba(246, 251, 255, 0.58) 56%,
            rgba(246, 251, 255, 0.26) 100%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.34) 0%,
            rgba(255, 255, 255, 0.08) 42%,
            rgba(237, 248, 255, 0.72) 100%
        );
}

.velo-booking-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 12% 22%,
            rgba(69, 217, 255, 0.14),
            transparent 30%
        ),
        linear-gradient(
            35deg,
            rgba(69, 217, 255, 0.028) 1px,
            transparent 1px
        );

    background-size:
        auto,
        180px 180px;
}

.velo-booking-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;

    height: 180px;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            transparent 0%,
            rgba(246, 251, 255, 0.72) 48%,
            #f6fbff 100%
        );
}

/* =========================================
   HERO SHELL
========================================= */

.velo-booking-hero__shell {
    position: relative;
    z-index: 2;

    width: min(100%, 1440px);
    max-width: 1440px;

    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(540px, 0.72fr);

    align-items: center;

    gap: clamp(50px, 7vw, 120px);
}

/* =========================================
   HERO CONTENT
========================================= */

.velo-booking-hero__content {
    width: 100%;
    max-width: 760px;
}

.velo-booking-hero__kicker {
    position: relative;

    width: fit-content;

    margin: 0 0 30px;
    padding-bottom: 17px;

    font-family: "Jura", Arial, sans-serif;
    font-size: clamp(0.74rem, 0.8vw, 0.9rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.24em;
    text-transform: uppercase;

    color: #087cf0;
}

.velo-booking-hero__kicker::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 118px;
    height: 3px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #007cff 0%,
            #00b8ff 70%,
            transparent 100%
        );

    box-shadow:
        0 0 8px rgba(0, 140, 255, 0.34),
        0 0 20px rgba(69, 217, 255, 0.2);
}

.velo-booking-hero h1 {
    width: 100%;
    max-width: 760px;

    margin: 0;

    font-family: "Jura", Arial, sans-serif;
    font-size: clamp(3.5rem, 5.2vw, 6.8rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: 0.015em;
    text-wrap: balance;

    color: #07101f;

    text-shadow:
        0 1px 0 rgba(255, 255, 255, 1),
        0 18px 46px rgba(7, 16, 31, 0.1);
}

.velo-booking-hero__description {
    width: 100%;
    max-width: 680px;

    margin: 30px 0 0;

    font-family: "Bai Jamjuree", Arial, sans-serif;
    font-size: clamp(1rem, 1.1vw, 1.18rem);
    font-weight: 500;
    line-height: 1.75;

    color: rgba(28, 49, 72, 0.76);
}

/* =========================================
   HERO HIGHLIGHTS
========================================= */

.velo-booking-hero__highlights {
    width: 100%;
    max-width: 620px;

    margin-top: 38px;

    display: grid;
    gap: 14px;
}

.velo-booking-highlight {
    width: fit-content;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 11px 18px 11px 12px;

    border: 1px solid rgba(204, 228, 244, 0.84);
    border-radius: 999px;

    font-family: "Bai Jamjuree", Arial, sans-serif;
    font-size: 0.92rem;
    font-weight: 600;

    color: rgba(15, 39, 66, 0.8);

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.88),
            rgba(245, 251, 255, 0.66)
        );

    backdrop-filter: blur(9px);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 12px 28px rgba(7, 16, 31, 0.05);
}

.velo-booking-highlight__icon {
    flex: 0 0 auto;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #087cf0;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            rgba(222, 244, 255, 0.84)
        );

    box-shadow:
        0 0 20px rgba(69, 217, 255, 0.16);
}

.velo-booking-highlight__icon svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================
   BOOKING CARD
========================================= */

.velo-booking-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    width: 100%;

    padding:
        clamp(36px, 4vw, 54px)
        clamp(28px, 4vw, 48px);

    border: 1px solid rgba(190, 222, 243, 0.9);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.95),
            rgba(245, 251, 255, 0.82)
        );

    backdrop-filter: blur(18px);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 34px 90px rgba(7, 16, 31, 0.15),
        0 0 48px rgba(69, 217, 255, 0.14);
}

.velo-booking-card::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -180px;
    z-index: -1;

    width: 460px;
    height: 460px;

    border-radius: 50%;

    pointer-events: none;

    background:
        radial-gradient(
            circle,
            rgba(69, 217, 255, 0.2) 0%,
            rgba(69, 217, 255, 0.06) 44%,
            transparent 72%
        );
}

.velo-booking-card__header {
    margin-bottom: 30px;
}

.velo-booking-card__eyebrow {
    margin: 0 0 14px;

    font-family: "Jura", Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;

    color: #087cf0;
}

.velo-booking-card h2 {
    margin: 0;

    font-family: "Jura", Arial, sans-serif;
    font-size: clamp(2rem, 2.6vw, 3.1rem);
    font-weight: 700;
    line-height: 1.08;

    color: #07101f;
}

.velo-booking-card__header > p:last-child {
    margin: 17px 0 0;

    font-family: "Bai Jamjuree", Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.65;

    color: rgba(28, 49, 72, 0.68);
}

/* =========================================
   CONTACT FORM 7 WRAPPER
========================================= */

.velo-booking-card__form,
.velo-booking-card__form .wpcf7,
.velo-booking-card__form form {
    width: 100%;
}

.velo-booking-card__form .wpcf7-form {
    display: grid;
    gap: 16px;
}

.velo-booking-card__form p {
    margin: 0;
}

/* =========================================
   FORM CONTROLS
========================================= */

.velo-booking-card__form input,
.velo-booking-card__form select,
.velo-booking-card__form textarea {
    width: 100%;
    box-sizing: border-box;

    font-family: "Bai Jamjuree", Arial, sans-serif;
    font-size: 0.98rem;
    font-weight: 500;

    color: #07101f;

    border: 1px solid rgba(184, 211, 229, 0.9);
    border-radius: 9px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.96),
            rgba(247, 252, 255, 0.88)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 8px 20px rgba(7, 16, 31, 0.035);

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.velo-booking-card__form input,
.velo-booking-card__form select {
    min-height: 60px;
    padding: 0 18px;
}

.velo-booking-card__form textarea {
    min-height: 140px;
    padding: 18px;

    line-height: 1.6;
    resize: vertical;
}

.velo-booking-card__form input::placeholder,
.velo-booking-card__form textarea::placeholder {
    color: rgba(28, 49, 72, 0.5);
    opacity: 1;
}

.velo-booking-card__form input:focus,
.velo-booking-card__form select:focus,
.velo-booking-card__form textarea:focus {
    transform: translateY(-1px);

    border-color: rgba(0, 140, 255, 0.76);

    box-shadow:
        0 0 0 4px rgba(69, 217, 255, 0.1),
        0 12px 26px rgba(7, 16, 31, 0.06);
}

/* Contact Form 7 validation */
.velo-booking-card__form .wpcf7-not-valid {
    border-color: rgba(208, 52, 72, 0.68);
}

.velo-booking-card__form .wpcf7-not-valid-tip {
    display: block;
    margin-top: 6px;

    font-family: "Bai Jamjuree", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;

    color: #c52b42;
}

.velo-booking-card__form .wpcf7-response-output {
    margin: 14px 0 0;
    padding: 14px 16px;

    border: 1px solid rgba(0, 140, 255, 0.32);
    border-radius: 8px;

    font-family: "Bai Jamjuree", Arial, sans-serif;
    font-size: 0.88rem;
    line-height: 1.5;

    color: #07101f;

    background: rgba(237, 248, 255, 0.88);
}

/* =========================================
   FORM SUBMIT BUTTON
========================================= */

.velo-booking-card__form input[type="submit"],
.velo-booking-card__form button[type="submit"] {
    width: 100%;
    min-height: 62px;
    padding: 0 26px;

    border: 1px solid rgba(0, 140, 255, 0.5);
    border-radius: 8px 8px 24px 8px;

    font-family: "Jura", Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: #ffffff;

    background: #1764ff;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 18px 38px rgba(7, 16, 31, 0.2),
        0 0 28px rgba(69, 217, 255, 0.14);

    cursor: pointer;

    transition:
        transform 0.25s ease,
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.velo-booking-card__form input[type="submit"]:hover,
.velo-booking-card__form button[type="submit"]:hover {
    transform: translateY(-3px);

    color: #07101f;
    border-color: #45d9ff;

    background:
        linear-gradient(
            135deg,
            #45d9ff,
            #00b8ff
        );

    box-shadow:
        0 22px 46px rgba(0, 124, 255, 0.22),
        0 0 34px rgba(69, 217, 255, 0.32);
}

/* =========================================
   BOOKING NOTICE
========================================= */

.velo-booking-card__notice {
    margin-top: 24px;

    display: flex;
    align-items: flex-start;
    gap: 12px;

    padding-top: 22px;

    border-top: 1px solid rgba(185, 215, 234, 0.72);
}

.velo-booking-card__notice-icon {
    flex: 0 0 auto;

    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 140, 255, 0.34);
    border-radius: 50%;

    font-family: "Jura", Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 800;

    color: #087cf0;

    background: rgba(237, 248, 255, 0.86);
}

.velo-booking-card__notice p {
    margin: 1px 0 0;

    font-family: "Bai Jamjuree", Arial, sans-serif;
    font-size: 0.82rem;
    line-height: 1.55;

    color: rgba(28, 49, 72, 0.62);
}

/* =========================================
   BOOKING PROCESS SECTION
========================================= */

.velo-booking-process {
    position: relative;

    padding:
        clamp(90px, 9vw, 150px)
        24px;

    background:
        radial-gradient(
            circle at 85% 12%,
            rgba(69, 217, 255, 0.08),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #f6fbff 0%,
            #ffffff 100%
        );
}

.velo-booking-process__shell {
    width: min(100%, 1440px);
    max-width: 1440px;

    margin: 0 auto;
}

.velo-booking-process__heading {
    width: 100%;
    max-width: 760px;

    margin-bottom: clamp(48px, 6vw, 80px);
}

.velo-booking-process__kicker {
    margin: 0 0 18px;

    font-family: "Jura", Arial, sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;

    color: #087cf0;
}

.velo-booking-process h2 {
    margin: 0;

    font-family: "Jura", Arial, sans-serif;
    font-size: clamp(2.6rem, 4.2vw, 5rem);
    font-weight: 700;
    line-height: 1.04;
    text-wrap: balance;

    color: #07101f;
}

.velo-booking-process__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: clamp(18px, 2vw, 28px);
}

.velo-booking-step {
    position: relative;
    overflow: hidden;

    min-height: 290px;

    padding: 34px 30px;

    border: 1px solid rgba(202, 227, 243, 0.9);
    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(244, 251, 255, 0.86)
        );

    box-shadow:
        inset 0 1px 0 #ffffff,
        0 18px 46px rgba(7, 16, 31, 0.07),
        0 0 26px rgba(69, 217, 255, 0.06);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.velo-booking-step::after {
    content: "";

    position: absolute;
    left: 30px;
    bottom: 30px;

    width: 48px;
    height: 3px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #007cff,
            #00b8ff
        );

    box-shadow:
        0 0 14px rgba(69, 217, 255, 0.22);
}

.velo-booking-step__number {
    display: block;

    margin-bottom: 56px;

    font-family: "Jura", Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;

    color: #087cf0;
}

.velo-booking-step h3 {
    margin: 0;

    font-family: "Jura", Arial, sans-serif;
    font-size: clamp(1.35rem, 1.8vw, 1.8rem);
    font-weight: 700;
    line-height: 1.2;

    color: #07101f;
}

.velo-booking-step p {
    margin: 18px 0 0;

    font-family: "Bai Jamjuree", Arial, sans-serif;
    font-size: 0.96rem;
    font-weight: 500;
    line-height: 1.7;

    color: rgba(28, 49, 72, 0.68);
}

.velo-booking-step:hover {
    transform: translateY(-7px);

    border-color: rgba(69, 217, 255, 0.62);

    box-shadow:
        inset 0 1px 0 #ffffff,
        0 28px 58px rgba(7, 16, 31, 0.11),
        0 0 36px rgba(69, 217, 255, 0.14);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {
    .velo-booking-hero {
        min-height: auto;
    }

    .velo-booking-hero__shell {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .velo-booking-hero__content {
        max-width: 820px;
    }

    .velo-booking-hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(246, 251, 255, 0.94) 0%,
                rgba(246, 251, 255, 0.76) 48%,
                rgba(246, 251, 255, 0.92) 100%
            );
    }

    .velo-booking-hero__background img {
        object-position: 58% center;
    }

    .velo-booking-card {
        max-width: 780px;
    }
}

/* =========================================
   SMALL TABLET
========================================= */

@media (max-width: 850px) {
    .velo-booking-process__grid {
        grid-template-columns: 1fr;
    }

    .velo-booking-step {
        min-height: 240px;
    }

    .velo-booking-step__number {
        margin-bottom: 38px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 620px) {
    .velo-booking-hero {
        padding:
            104px
            18px
            72px;
    }

    .velo-booking-hero__background img {
        object-position: 68% center;
    }

    .velo-booking-hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(246, 251, 255, 0.97) 0%,
                rgba(246, 251, 255, 0.86) 46%,
                rgba(246, 251, 255, 0.95) 100%
            );
    }

    .velo-booking-hero__content {
        text-align: center;
    }

    .velo-booking-hero__kicker {
        margin-left: auto;
        margin-right: auto;
    }

    .velo-booking-hero__kicker::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .velo-booking-hero h1 {
        font-size: clamp(2.85rem, 13vw, 4.25rem);
        line-height: 1;
    }

    .velo-booking-hero__description {
        font-size: 0.96rem;
        line-height: 1.65;
    }

    .velo-booking-hero__highlights {
        justify-items: center;
    }

    .velo-booking-highlight {
        width: 100%;
        max-width: 340px;
    }

    .velo-booking-card {
        padding: 34px 20px;

        border-radius: 16px;
    }

    .velo-booking-card h2 {
        font-size: 2.2rem;
    }

    .velo-booking-process {
        padding:
            76px
            18px;
    }

    .velo-booking-process__heading {
        text-align: center;
    }

    .velo-booking-process h2 {
        font-size: clamp(2.35rem, 10vw, 3.4rem);
    }

    .velo-booking-step {
        min-height: 220px;

        padding: 28px 24px;
    }

    .velo-booking-step::after {
        left: 24px;
        bottom: 25px;
    }
}

/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {
    .velo-booking-card__form input,
    .velo-booking-card__form select,
    .velo-booking-card__form textarea,
    .velo-booking-card__form input[type="submit"],
    .velo-booking-card__form button[type="submit"],
    .velo-booking-step {
        transition: none;
    }

    .velo-booking-card__form input:focus,
    .velo-booking-card__form select:focus,
    .velo-booking-card__form textarea:focus,
    .velo-booking-card__form input[type="submit"]:hover,
    .velo-booking-card__form button[type="submit"]:hover,
    .velo-booking-step:hover {
        transform: none;
    }
}


/* =========================================
   SHORTER BOOKING FORM
========================================= */

.velo-booking-card {
    padding:
        clamp(28px, 3vw, 40px)
        clamp(24px, 3.5vw, 40px);
}

.velo-booking-card__header {
    margin-bottom: 22px;
}

.velo-booking-card__form .wpcf7-form {
    gap: 12px;
}

.velo-booking-card__form input,
.velo-booking-card__form select {
    min-height: 52px;
    padding: 0 16px;
}

.velo-booking-card__form textarea {
    min-height: 105px;
    max-height: 135px;
    padding: 15px 16px;
}

.velo-booking-card__form input[type="submit"],
.velo-booking-card__form button[type="submit"] {
    min-height: 54px;
}

.velo-booking-card__notice {
    margin-top: 18px;
    padding-top: 16px;
}