/* =========================================================
   BOOK NOW PAGE — Shyam Sarthi Travels
   File: book-now.css
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600;700;800&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap');


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --bk-navy-deep: #04101f;
    --bk-navy: #0a2147;
    --bk-navy-light: #12315f;

    --bk-gold: #e3a63e;
    --bk-gold-hover: #f0b750;
    --bk-gold-pale: #f6dca3;

    --bk-white: #ffffff;
    --bk-mist: #eef2f8;
    --bk-text: #17243b;
    --bk-text-soft: #55617a;
    --bk-text-dark-bg: #c3ccdb;

    --bk-border: rgba(10, 33, 71, 0.14);
    --bk-dark-border: rgba(255, 255, 255, 0.10);

    --bk-radius: 16px;
    --bk-radius-small: 10px;

    --bk-shadow:
        0 18px 55px rgba(4, 16, 31, 0.10);

    --bk-font-display:
        'Big Shoulders Display',
        'Arial Narrow',
        sans-serif;

    --bk-font-body:
        'Inter',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        sans-serif;

    --bk-font-mono:
        'IBM Plex Mono',
        'Courier New',
        monospace;
}


/* =========================================================
   PAGE BASE
========================================================= */

.booking-page {
    margin: 0;
    padding: 0;
    background: var(--bk-mist);
    color: var(--bk-text);
    font-family: var(--bk-font-body);
}

.booking-page *,
.booking-page *::before,
.booking-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   HERO
========================================================= */

.booking-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(227, 166, 62, 0.12),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #04101f 0%,
            #071a35 58%,
            #0a2147 100%
        );

    padding: 145px 0 85px;
    color: #fff;
}


/* subtle route pattern */

.booking-hero::before {
    content: "";
    position: absolute;

    width: 380px;
    height: 380px;

    right: -100px;
    top: 30px;

    border: 1px dashed rgba(227, 166, 62, 0.22);
    border-radius: 50%;

    pointer-events: none;
}


.booking-hero::after {
    content: "";
    position: absolute;

    width: 10px;
    height: 10px;

    right: 175px;
    top: 155px;

    background: var(--bk-gold);
    border-radius: 50%;

    box-shadow:
        0 0 0 8px rgba(227, 166, 62, 0.10),
        0 0 35px rgba(227, 166, 62, 0.35);

    pointer-events: none;
}


.booking-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
}


.booking-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;

    margin: 0 0 28px;

    font-family: var(--bk-font-mono);
    font-size: 0.78rem;
    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: 0.06em;

    color: #8e9bb3;
}


.booking-breadcrumb a {
    color: var(--bk-gold-pale);
    text-decoration: none;
}


.booking-breadcrumb a:hover {
    color: #fff;
}


.booking-eyebrow {
    display: inline-block;

    font-family: var(--bk-font-mono);
    font-size: 0.76rem;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.13em;

    color: var(--bk-gold);

    margin-bottom: 13px;
}


.booking-hero h1 {
    margin: 0 0 20px;

    font-family: var(--bk-font-display);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;

    line-height: 0.95;
    letter-spacing: -0.01em;

    text-transform: uppercase;

    color: #fff;
}


.booking-hero p {
    max-width: 650px;

    margin: 0;

    font-size: 1.03rem;
    line-height: 1.8;

    color: #c3ccdb;
}


/* =========================================================
   FORM SECTION
========================================================= */

.booking-form-section {
    position: relative;
    padding: 72px 0 90px;
    background: var(--bk-mist);
}


.booking-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        330px;

    gap: 30px;

    align-items: start;
}


/* =========================================================
   MAIN FORM CARD
========================================================= */

.booking-form-card {
    background: #fff;

    border: 1px solid var(--bk-border);
    border-radius: var(--bk-radius);

    box-shadow: var(--bk-shadow);

    overflow: hidden;
}


.booking-heading {
    padding: 38px 42px 32px;

    border-bottom: 1px solid var(--bk-border);

    background:
        linear-gradient(
            135deg,
            #fff 0%,
            #f8fafd 100%
        );
}


.booking-heading h2 {
    margin: 0 0 10px;

    font-family: var(--bk-font-display);
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 800;

    line-height: 1.05;

    text-transform: uppercase;

    color: var(--bk-navy);
}


.booking-heading p {
    max-width: 640px;

    margin: 0;

    font-size: 0.95rem;
    line-height: 1.7;

    color: var(--bk-text-soft);
}


/* =========================================================
   FORM
========================================================= */

.booking-form {
    padding: 0 42px 42px;
}


/* =========================================================
   TRIP TYPE
========================================================= */

.booking-trip-type {
    border: 0;
    padding: 34px 0;
    margin: 0;

    border-bottom: 1px solid var(--bk-border);
}


.booking-trip-type legend {
    display: block;

    width: 100%;

    margin: 0 0 14px;
    padding: 0;

    font-family: var(--bk-font-mono);
    font-size: 0.76rem;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.08em;

    color: var(--bk-navy);
}


.booking-trip-options {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 10px;
}


.booking-trip-options label {
    position: relative;
    display: block;
    cursor: pointer;
}


.booking-trip-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}


.booking-trip-options label > span {
    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 11px 10px;

    border: 1px solid var(--bk-border);
    border-radius: 10px;

    background: #f8fafc;

    font-family: var(--bk-font-mono);
    font-size: 0.78rem;
    font-weight: 600;

    text-align: center;
    text-transform: uppercase;

    color: var(--bk-text-soft);

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.booking-trip-options label:hover > span {
    border-color: rgba(227, 166, 62, 0.65);
    color: var(--bk-navy);
}


.booking-trip-options input:checked + span {
    background: var(--bk-navy);
    border-color: var(--bk-navy);
    color: #fff;

    box-shadow:
        inset 0 -3px 0 var(--bk-gold);
}


.booking-trip-options input:focus-visible + span {
    outline: 2px solid var(--bk-gold);
    outline-offset: 2px;
}


/* =========================================================
   FORM GROUPS
========================================================= */

.booking-form-group {
    padding: 38px 0;

    border-bottom: 1px solid var(--bk-border);
}


.booking-group-heading {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 27px;
}


.booking-group-heading > span {
    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: var(--bk-navy);

    font-family: var(--bk-font-mono);
    font-size: 0.78rem;
    font-weight: 600;

    color: var(--bk-gold);
}


.booking-group-heading small {
    display: block;

    margin-bottom: 3px;

    font-family: var(--bk-font-mono);
    font-size: 0.68rem;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.12em;

    color: var(--bk-gold);
}


.booking-group-heading h3 {
    margin: 0;

    font-family: var(--bk-font-display);
    font-size: 1.45rem;
    font-weight: 700;

    line-height: 1.1;

    text-transform: uppercase;

    color: var(--bk-navy);
}


/* =========================================================
   FIELDS
========================================================= */

.booking-field {
    margin-bottom: 22px;
}


.booking-field:last-child {
    margin-bottom: 0;
}


.booking-field label {
    display: block;

    margin: 0 0 8px;

    font-size: 0.83rem;
    font-weight: 600;

    line-height: 1.4;

    color: var(--bk-navy);
}


.booking-field input,
.booking-field select,
.booking-field textarea {
    display: block;

    width: 100%;

    margin: 0;

    border: 1px solid #ccd4e0;
    border-radius: 10px;

    background: #fff;

    font-family: var(--bk-font-body);
    font-size: 0.94rem;
    font-weight: 400;

    color: var(--bk-text);

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.booking-field input,
.booking-field select {
    height: 52px;
    padding: 0 15px;
}


.booking-field textarea {
    min-height: 118px;

    padding: 14px 15px;

    line-height: 1.6;

    resize: vertical;
}


.booking-field input::placeholder,
.booking-field textarea::placeholder {
    color: #8c97aa;
    opacity: 1;
}


.booking-field input:hover,
.booking-field select:hover,
.booking-field textarea:hover {
    border-color: #aeb9ca;
}


.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
    border-color: var(--bk-gold);

    box-shadow:
        0 0 0 3px rgba(227, 166, 62, 0.13);
}


.booking-field select {
    cursor: pointer;
}


.booking-field input[type="date"],
.booking-field input[type="time"] {
    cursor: pointer;
}


/* browser autofill */

.booking-field input:-webkit-autofill,
.booking-field input:-webkit-autofill:hover,
.booking-field input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--bk-text);

    box-shadow:
        0 0 0 1000px #fff inset;

    transition:
        background-color 9999s ease-in-out 0s;
}


/* =========================================================
   TWO COLUMNS
========================================================= */

.booking-two-columns {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}


.booking-two-columns .booking-field {
    margin-bottom: 0;
}


/* =========================================================
   DESTINATION
========================================================= */

.booking-destination-fields {
    position: relative;

    margin-top: 30px;
    padding-top: 30px;

    border-top: 1px dashed var(--bk-border);
}


.booking-destination-fields::before {
    content: "TO";

    position: absolute;

    top: -11px;
    left: 0;

    padding: 2px 10px;

    background: #fff;

    font-family: var(--bk-font-mono);
    font-size: 0.68rem;
    font-weight: 600;

    letter-spacing: 0.1em;

    color: var(--bk-gold);
}


/* =========================================================
   RETURN FIELDS
========================================================= */

.booking-return-fields {
    margin-top: 25px;

    padding: 24px;

    border: 1px dashed rgba(227, 166, 62, 0.55);
    border-radius: 12px;

    background: rgba(227, 166, 62, 0.055);
}


/* =========================================================
   VEHICLE SELECTION
========================================================= */

.booking-vehicle-options {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;
}


.booking-vehicle-options label {
    position: relative;

    display: block;

    cursor: pointer;
}


.booking-vehicle-options input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


.booking-vehicle-options label > span {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 118px;

    padding: 19px 17px;

    border: 1px solid var(--bk-border);
    border-radius: 12px;

    background: #f8fafc;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.booking-vehicle-options label:hover > span {
    border-color: rgba(227, 166, 62, 0.65);

    transform: translateY(-2px);
}


.booking-vehicle-options strong {
    display: block;

    margin-bottom: 7px;

    font-family: var(--bk-font-display);
    font-size: 1.2rem;
    font-weight: 700;

    line-height: 1.1;

    text-transform: uppercase;

    color: var(--bk-navy);
}


.booking-vehicle-options small {
    font-size: 0.78rem;
    line-height: 1.45;

    color: var(--bk-text-soft);
}


.booking-vehicle-options input:checked + span {
    border-color: var(--bk-navy);

    background:
        linear-gradient(
            145deg,
            #071a35,
            var(--bk-navy)
        );

    box-shadow:
        0 9px 24px rgba(4, 16, 31, 0.13);
}


.booking-vehicle-options input:checked + span::after {
    content: "SELECTED";

    position: absolute;

    right: 11px;
    top: 11px;

    font-family: var(--bk-font-mono);
    font-size: 0.54rem;
    font-weight: 600;

    letter-spacing: 0.05em;

    color: var(--bk-gold);
}


.booking-vehicle-options input:checked + span strong {
    color: #fff;
}


.booking-vehicle-options input:checked + span small {
    color: #c3ccdb;
}


.booking-vehicle-options input:focus-visible + span {
    outline: 2px solid var(--bk-gold);
    outline-offset: 2px;
}


/* =========================================================
   SUBMIT AREA
========================================================= */

.booking-submit-area {
    padding-top: 36px;
}


.booking-submit-button {
    width: 100%;

    min-height: 57px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border: 0;
    border-radius: 10px;

    padding: 14px 25px;

    background: var(--bk-gold);

    font-family: var(--bk-font-mono);
    font-size: 0.86rem;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.04em;

    color: #071426;

    cursor: pointer;

    box-shadow:
        0 9px 24px rgba(227, 166, 62, 0.20);

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.booking-submit-button span {
    font-size: 1.15rem;

    transition: transform 0.2s ease;
}


.booking-submit-button:hover {
    background: var(--bk-gold-hover);

    transform: translateY(-2px);

    box-shadow:
        0 13px 28px rgba(227, 166, 62, 0.27);
}


.booking-submit-button:hover span {
    transform: translateX(4px);
}


.booking-submit-button:focus-visible {
    outline: 3px solid rgba(227, 166, 62, 0.38);
    outline-offset: 3px;
}


.booking-submit-area p {
    max-width: 570px;

    margin: 13px auto 0;

    font-size: 0.76rem;
    line-height: 1.55;

    text-align: center;

    color: var(--bk-text-soft);
}


/* =========================================================
   SIDEBAR
========================================================= */

.booking-sidebar {
    display: flex;
    flex-direction: column;

    gap: 20px;

    position: sticky;
    top: 100px;
}


.booking-sidebar-card {
    position: relative;

    overflow: hidden;

    padding: 27px 25px;

    border-radius: var(--bk-radius);

    background:
        linear-gradient(
            145deg,
            #06162b 0%,
            var(--bk-navy) 100%
        );

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 15px 38px rgba(4, 16, 31, 0.12);

    color: #fff;
}


.booking-sidebar-card::after {
    content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    right: -45px;
    top: -45px;

    border-radius: 50%;

    border:
        1px solid rgba(227, 166, 62, 0.20);
}


.booking-sidebar-card > span {
    display: block;

    margin-bottom: 10px;

    font-family: var(--bk-font-mono);
    font-size: 0.67rem;
    font-weight: 600;

    letter-spacing: 0.12em;

    color: var(--bk-gold);

    text-transform: uppercase;
}


.booking-sidebar-card h2 {
    margin: 0 0 21px;

    font-family: var(--bk-font-display);
    font-size: 1.55rem;
    font-weight: 700;

    line-height: 1.1;

    text-transform: uppercase;

    color: #fff;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.booking-sidebar-card ol {
    list-style: none;

    padding: 0;
    margin: 0;
}


.booking-sidebar-card ol li {
    position: relative;

    padding:
        0
        0
        21px
        43px;

    margin: 0;
}


.booking-sidebar-card ol li:last-child {
    padding-bottom: 0;
}


.booking-sidebar-card ol li::before {
    content: counter(list-item, decimal-leading-zero);

    position: absolute;

    left: 0;
    top: 0;

    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background: rgba(227, 166, 62, 0.11);
    border: 1px solid rgba(227, 166, 62, 0.26);

    font-family: var(--bk-font-mono);
    font-size: 0.62rem;
    font-weight: 600;

    color: var(--bk-gold);
}


.booking-sidebar-card ol li:not(:last-child)::after {
    content: "";

    position: absolute;

    left: 13px;
    top: 33px;

    width: 1px;
    height: calc(100% - 33px);

    background:
        rgba(255, 255, 255, 0.12);
}


.booking-sidebar-card ol strong {
    display: block;

    margin-bottom: 4px;

    font-size: 0.82rem;
    font-weight: 600;

    color: #fff;
}


.booking-sidebar-card ol p {
    margin: 0;

    font-size: 0.75rem;
    line-height: 1.55;

    color: #aeb9ca;
}


/* =========================================================
   WHY BOOK WITH US
========================================================= */

.booking-sidebar-card ul {
    list-style: none;

    padding: 0;
    margin: 0;
}


.booking-sidebar-card ul li {
    position: relative;

    margin: 0;
    padding: 11px 0 11px 24px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);

    font-size: 0.79rem;
    line-height: 1.45;

    color: #c3ccdb;
}


.booking-sidebar-card ul li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}


.booking-sidebar-card ul li:first-child {
    padding-top: 0;
}


.booking-sidebar-card ul li::before {
    content: "✓";

    position: absolute;

    left: 0;

    font-family: var(--bk-font-mono);
    font-weight: 600;

    color: var(--bk-gold);
}


.booking-sidebar-card ul li:first-child::before {
    top: 0;
}


/* =========================================================
   HIDDEN DYNAMIC ELEMENTS
========================================================= */

.booking-page [hidden] {
    display: none !important;
}


/* =========================================================
   VALIDATION
========================================================= */

.booking-field input:invalid:not(:placeholder-shown):not(:focus),
.booking-field textarea:invalid:not(:placeholder-shown):not(:focus) {
    border-color: #d36a6a;
}


.booking-field select:invalid:not(:focus) {
    color: #7c8799;
}


.booking-field select option {
    color: var(--bk-text);
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 980px) {

    .booking-layout {
        grid-template-columns: 1fr;
    }


    .booking-sidebar {
        position: static;

        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }


    .booking-trip-options {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   RESPONSIVE — SMALL TABLET
========================================================= */

@media (max-width: 760px) {

    .booking-hero {
        padding: 120px 0 65px;
    }


    .booking-form-section {
        padding: 45px 0 65px;
    }


    .booking-heading {
        padding: 30px 25px 25px;
    }


    .booking-form {
        padding:
            0
            25px
            30px;
    }


    .booking-two-columns {
        grid-template-columns: 1fr;

        gap: 21px;
    }


    .booking-vehicle-options {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .booking-sidebar {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 560px) {

    .booking-hero {
        padding:
            108px
            0
            54px;
    }


    .booking-hero::before {
        width: 250px;
        height: 250px;

        right: -120px;
        top: 40px;
    }


    .booking-hero::after {
        right: 80px;
        top: 125px;
    }


    .booking-breadcrumb {
        margin-bottom: 22px;

        font-size: 0.68rem;
    }


    .booking-hero h1 {
        font-size:
            clamp(2.65rem, 15vw, 3.6rem);
    }


    .booking-hero p {
        font-size: 0.91rem;
        line-height: 1.7;
    }


    .booking-form-section {
        padding:
            28px
            0
            52px;
    }


    .booking-form-card {
        border-radius: 13px;
    }


    .booking-heading {
        padding:
            25px
            18px
            22px;
    }


    .booking-heading h2 {
        font-size: 1.85rem;
    }


    .booking-heading p {
        font-size: 0.86rem;
    }


    .booking-form {
        padding:
            0
            18px
            25px;
    }


    .booking-trip-type {
        padding: 26px 0;
    }


    .booking-trip-options {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 8px;
    }


    .booking-trip-options label > span {
        min-height: 47px;

        font-size: 0.70rem;
    }


    .booking-form-group {
        padding: 30px 0;
    }


    .booking-group-heading {
        gap: 12px;

        margin-bottom: 23px;
    }


    .booking-group-heading > span {
        width: 39px;
        height: 39px;

        flex-basis: 39px;
    }


    .booking-group-heading h3 {
        font-size: 1.28rem;
    }


    .booking-field {
        margin-bottom: 19px;
    }


    .booking-field input,
    .booking-field select {
        height: 50px;

        font-size: 16px;
    }


    .booking-field textarea {
        font-size: 16px;
    }


    .booking-return-fields {
        padding: 18px 15px;
    }


    .booking-vehicle-options {
        grid-template-columns: 1fr;

        gap: 9px;
    }


    .booking-vehicle-options label > span {
        min-height: auto;

        padding: 16px;
    }


    .booking-submit-button {
        min-height: 54px;

        font-size: 0.78rem;
    }


    .booking-sidebar-card {
        padding: 24px 21px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .booking-trip-options {
        grid-template-columns: 1fr;
    }


    .booking-heading,
    .booking-form {
        padding-left: 15px;
        padding-right: 15px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .booking-page *,
    .booking-page *::before,
    .booking-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

}




/* =========================================================
   BOOKING SUCCESS — FINAL RESPONSIVE DESIGN
========================================================= */

.booking-success-section {
    position: relative;
    z-index: 10;

    width: 100%;
    padding: 26px 20px;

    background: #eef8f2;
}


/* Container width safety */

.booking-success-section .container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
}


/* =========================================================
   SUCCESS CARD
========================================================= */

.booking-success-message {
    position: relative;
    overflow: hidden;

    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 22px;

    width: 100%;

    margin: 0;
    padding: 26px 30px;

    background: #ffffff;

    border: 1px solid #b8dfc7;
    border-left: 5px solid #16a45b;
    border-radius: 14px;

    box-shadow:
        0 10px 30px rgba(7, 35, 23, 0.08);

    color: #10251a;
}


/* Very subtle decoration */

.booking-success-message::after {
    content: "";

    position: absolute;
    top: -80px;
    right: -80px;

    width: 190px;
    height: 190px;

    border-radius: 50%;

    background: rgba(22, 164, 91, 0.035);

    pointer-events: none;
}


/* =========================================================
   SUCCESS ICON
========================================================= */

.booking-success-icon {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin: 0;

    background: #16a45b;

    border: 0;
    border-radius: 50%;

    box-shadow:
        0 0 0 7px rgba(22, 164, 91, 0.09);

    font-family: Arial, sans-serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 1;

    color: #ffffff;
}


/* =========================================================
   CONTENT
========================================================= */

.booking-success-message > div {
    position: relative;
    z-index: 2;

    min-width: 0;
}


/* Small label */

.booking-success-message .booking-eyebrow {
    display: block;

    margin: 1px 0 7px;

    font-family: var(--bk-font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.4;

    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: #13814a;
}


/* Thank you heading */

.booking-success-message h2 {
    margin: 0 0 7px !important;

    font-family: var(--bk-font-display);
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    font-weight: 800;
    line-height: 1.15;

    text-transform: none;

    color: #071d12;
}


/* Description */

.booking-success-message p {
    max-width: 780px;

    margin: 0 !important;

    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;

    color: #52645a;
}


/* =========================================================
   BOOKING REFERENCE
========================================================= */

.booking-reference {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    width: auto;

    margin-top: 16px;
    padding: 9px 13px;

    background: #f0faf4;

    border: 1px solid #c9e7d4;
    border-radius: 7px;
}


.booking-reference span {
    display: inline-block;

    font-family: var(--bk-font-mono);
    font-size: 0.64rem;
    font-weight: 700;

    line-height: 1.4;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #64756b;
}


.booking-reference strong {
    display: inline-block;

    font-family: var(--bk-font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.4;

    letter-spacing: 0.03em;

    color: #087b40;
}


/* =========================================================
   TABLET — 601px TO 900px
========================================================= */

@media (max-width: 900px) {

    .booking-success-section {
        padding: 22px 18px;
    }


    .booking-success-message {
        grid-template-columns: 54px minmax(0, 1fr);

        gap: 18px;

        padding: 23px 24px;

        border-radius: 12px;
    }


    .booking-success-icon {
        width: 50px;
        height: 50px;

        font-size: 23px;

        box-shadow:
            0 0 0 6px rgba(22, 164, 91, 0.08);
    }


    .booking-success-message h2 {
        font-size: 1.55rem;
    }


    .booking-success-message p {
        font-size: 0.86rem;
    }

}


/* =========================================================
   MOBILE — UP TO 600px
========================================================= */

@media (max-width: 600px) {

    .booking-success-section {
        padding: 14px 12px;
    }


    .booking-success-section .container {
        padding-left: 0;
        padding-right: 0;
    }


    .booking-success-message {
        display: grid;

        grid-template-columns: 42px minmax(0, 1fr);

        gap: 13px;

        padding: 18px 15px;

        border-left-width: 4px;
        border-radius: 10px;

        box-shadow:
            0 6px 20px rgba(7, 35, 23, 0.07);
    }


    .booking-success-icon {
        width: 40px;
        height: 40px;

        font-size: 19px;

        box-shadow:
            0 0 0 5px rgba(22, 164, 91, 0.08);
    }


    .booking-success-message .booking-eyebrow {
        margin-bottom: 5px;

        font-size: 0.56rem;
        line-height: 1.35;

        letter-spacing: 0.1em;
    }


    .booking-success-message h2 {
        margin-bottom: 6px !important;

        font-size: 1.22rem;
        line-height: 1.2;
    }


    .booking-success-message p {
        font-size: 0.78rem;
        line-height: 1.5;
    }


    .booking-reference {
        display: flex;
        flex-wrap: wrap;

        width: fit-content;
        max-width: 100%;

        gap: 5px 8px;

        margin-top: 12px;
        padding: 8px 10px;
    }


    .booking-reference span {
        font-size: 0.56rem;
    }


    .booking-reference strong {
        overflow-wrap: anywhere;

        font-size: 0.69rem;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .booking-success-section {
        padding: 10px 8px;
    }


    .booking-success-message {
        grid-template-columns: 36px minmax(0, 1fr);

        gap: 11px;

        padding: 15px 12px;
    }


    .booking-success-icon {
        width: 34px;
        height: 34px;

        font-size: 16px;

        box-shadow:
            0 0 0 4px rgba(22, 164, 91, 0.08);
    }


    .booking-success-message h2 {
        font-size: 1.08rem;
    }


    .booking-success-message p {
        font-size: 0.74rem;
    }


    .booking-reference {
        width: 100%;

        flex-direction: column;
        align-items: flex-start;

        gap: 2px;
    }

}