/* =====================================================================
   Booking wizard / customer flow
   ===================================================================== */

/* ---- Page shell (aligned with /fleet cream section) ---- */
body.booking-layout {
    background: var(--surface-fleet, #f4ede0) !important;
    color: var(--text-on-light, #0b1c33);
}

body.booking-layout main,
body.booking-layout main.booking-main {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.booking-page-hero {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.booking-page-hero .page-hero {
    padding-top: 8rem;
    padding-bottom: 2.75rem;
}

.booking-page {
    margin: 0 -0.25rem;
    padding: 0 0 clamp(1rem, 2vw, 1.5rem);
}

.booking-card {
    background: var(--surface-card-on-light, #fffcfa);
    border: 1px solid var(--border-on-light, rgba(11, 28, 51, 0.1));
    border-radius: var(--radius-large, 18px);
    box-shadow: var(--shadow-card, 0 8px 24px rgba(7, 21, 37, 0.08));
    overflow: hidden;
}

.booking-card__header {
    padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 3vw, 2.5rem) 0;
}

.booking-card__header .eyebrow {
    display: inline-block;
    color: var(--accent-primary, #c5a059);
    letter-spacing: 0.22em;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.55rem;
}

.booking-card__title {
    font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
    font-size: clamp(1.65rem, 3vw, 2.15rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-heading-on-light, #071525);
    margin-bottom: 0.35rem;
}

.booking-card__lead {
    color: var(--text-secondary-on-light, #3a4556);
    margin-bottom: 0;
    max-width: 52ch;
    line-height: 1.65;
}

.booking-card__alert {
    margin: clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2.5rem) 0;
}

.booking-form {
    padding: clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2rem);
}

/* ---- Sections ---- */
.booking-section {
    padding-bottom: 1.75rem;
    margin-bottom: 1.75rem;
    border-bottom: 1px solid var(--border-on-light, rgba(11, 28, 51, 0.08));
}

.booking-section:last-of-type,
.booking-section--last {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.booking-section__head {
    margin-bottom: 1rem;
}

.booking-section__title {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-heading-on-light, #071525);
    margin-bottom: .35rem;
}

.booking-section__title i {
    color: var(--accent-primary, #c5a059);
    font-size: 1.05rem;
}

.booking-section__hint {
    color: var(--text-secondary-on-light, #3a4556);
    font-size: .92rem;
    margin: 0;
    line-height: 1.55;
}

.booking-form .form-label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-heading-on-light, #071525);
    letter-spacing: .2px;
}

.booking-form .form-control,
.booking-form .form-select,
.booking-form textarea.form-control {
    background-color: #fff;
    border: 1px solid var(--border-on-light, rgba(11, 28, 51, 0.15));
    border-radius: var(--radius-small, 12px);
    color: var(--text-on-light, #0b1c33);
    min-height: 46px;
    transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.booking-form .form-control::placeholder {
    color: rgba(58, 69, 86, .55);
}

.booking-form .form-control:focus,
.booking-form .form-select:focus,
.booking-form textarea.form-control:focus {
    background-color: #fff;
    border-color: var(--accent-primary, #c5a059);
    box-shadow: 0 0 0 0.2rem rgba(197, 160, 89, 0.2);
    color: var(--text-on-light, #0b1c33);
}

.booking-form input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: none;
    opacity: 0.65;
    cursor: pointer;
}

/* ---- Fleet selection tiles ---- */
.fleet-tile {
    position: relative;
    display: block;
    cursor: pointer;
    border: 2px solid rgba(14, 124, 102, .18);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(14, 124, 102, .03);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background-color .2s ease;
}

.fleet-tile:hover {
    border-color: rgba(14, 124, 102, .35);
    box-shadow: 0 12px 28px rgba(14, 124, 102, .08);
    transform: translateY(-2px);
}

.fleet-tile.is-selected,
.fleet-tile:has(input:checked) {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(14, 124, 102, .14), 0 16px 32px rgba(14, 124, 102, .1);
}

.fleet-tile.is-too-small {
    opacity: .55;
}

.fleet-tile.is-too-small::after {
    content: "Too small for passenger count";
    position: absolute;
    inset: auto 10px 10px 10px;
    z-index: 2;
    background: rgba(220, 53, 69, .92);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    text-align: center;
    padding: .35rem .5rem;
    border-radius: 8px;
}

.fleet-tile__check {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-primary);
    color: #fff;
    font-size: 1rem;
    opacity: 0;
    transform: scale(.8);
    transition: opacity .2s ease, transform .2s ease;
}

.fleet-tile.is-selected .fleet-tile__check,
.fleet-tile:has(input:checked) .fleet-tile__check {
    opacity: 1;
    transform: scale(1);
}

.fleet-tile__img {
    height: 220px;
    padding: 14px 18px;
    box-sizing: border-box;
    background-color: #f0f4f2;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-origin: content-box;
}

.fleet-tile-body {
    padding: 1rem 1rem 1.1rem;
}

.fleet-tile__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: .45rem;
}

.fleet-tile__name {
    color: var(--brand-text, var(--text-on-light, #0b1c33));
    font-size: 1rem;
    line-height: 1.25;
}

.fleet-tile__price {
    flex-shrink: 0;
    color: var(--brand-primary, #1b3a6b);
    font-weight: 700;
    font-size: .95rem;
    white-space: nowrap;
}

.fleet-tile__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem 1rem;
    color: var(--brand-text-muted, var(--text-muted-on-light, #5a6575));
    font-size: .8rem;
    margin-bottom: .5rem;
}

.fleet-tile__meta i {
    color: var(--brand-primary, #1b3a6b);
    margin-right: .2rem;
}

.fleet-tile__desc {
    color: var(--brand-text-muted, var(--text-muted-on-light, #5a6575));
    font-size: .82rem;
    line-height: 1.45;
    margin: 0;
}

/* ---- Footer / summary ---- */
.booking-card__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-on-light, rgba(11, 28, 51, 0.08));
}

.booking-summary {
    flex: 1 1 240px;
    min-width: 0;
}

.booking-summary__placeholder {
    color: var(--text-secondary-on-light, #3a4556);
    font-size: .9rem;
}

.booking-summary__total {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: .35rem .75rem;
}

.booking-summary__label {
    color: var(--text-secondary-on-light, #3a4556);
    font-size: .88rem;
}

.booking-summary__vehicle {
    color: var(--text-heading-on-light, #071525);
    font-weight: 600;
}

.booking-summary__amount {
    color: var(--accent-primary, #c5a059);
    font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.1;
}

.booking-summary__note {
    display: block;
    color: var(--text-secondary-on-light, #3a4556);
    font-size: .78rem;
    margin-top: .15rem;
}

.booking-card__submit {
    min-width: 180px;
    min-height: 48px;
    border-radius: var(--radius-small, 10px);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.78rem;
    background: var(--accent-primary, #c5a059);
    border-color: var(--accent-primary, #c5a059);
    color: var(--accent-contrast, #111) !important;
    box-shadow: 0 8px 22px rgba(197, 160, 89, 0.28);
}

.booking-card__submit:hover:not(:disabled),
.booking-card__submit:focus:not(:disabled) {
    background: var(--accent-hover, #e0b44b);
    border-color: var(--accent-hover, #e0b44b);
    color: var(--accent-contrast, #111) !important;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(197, 160, 89, 0.36);
}

.booking-card__submit:disabled {
    opacity: 0.55;
}

@media (max-width: 575.98px) {
    .booking-card__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-card__submit {
        width: 100%;
    }

    .fleet-tile__img {
        height: 180px;
        padding: 10px 12px;
    }
}

/* ---- Legacy dark wizard panel (kept for other views) ---- */
.booking-wizard {
    background: linear-gradient(135deg, var(--brand-primary-darker), var(--brand-primary-dark));
    color: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

.booking-wizard .wizard-header { color: #f8fafc; }
.booking-wizard label { color: #e2e8f0; font-weight: 500; }
.booking-wizard .form-control,
.booking-wizard .form-select {
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
    color: #fff;
}
.booking-wizard .form-control::placeholder { color: rgba(255,255,255,.6); }

.booking-wizard .btn-gold {
    background: var(--brand-accent); color: #111; font-weight: 700;
}
.booking-wizard .btn-gold:hover { background: #e6c14d; }

.vehicle-option {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    padding: 18px;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease;
}
.vehicle-option.is-selected,
.vehicle-option:hover {
    border-color: var(--brand-accent);
    background: rgba(212, 175, 55, .14);
}
.vehicle-option .badge-gold {
    background: var(--brand-accent); color: #111;
}

.summary-row { display:flex; justify-content: space-between; padding: .35rem 0; border-bottom: 1px dashed rgba(255,255,255,.18); }
.summary-row.total { font-weight: 700; font-size: 1.1rem; border-bottom: none; padding-top: .5rem; }

/* ---- Vehicle catalogue cards (match /fleet fleet-card) ---- */
.zaka-catalogue-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .35rem .65rem;
    margin-bottom: 1.25rem;
    font-size: .92rem;
    color: var(--text-secondary-on-light, #3a4556);
}

.zaka-catalogue-meta i {
    color: var(--accent-primary, #c5a059);
}

.zaka-catalogue-meta strong {
    color: var(--text-heading-on-light, #071525);
    font-weight: 700;
}

.zaka-vgrid > [class*="col-"] {
    min-width: 0;
}

#zakaCatalogueWrap {
    min-width: 0;
}

.zaka-vcard {
    background: var(--surface-card-on-light, #fffcfa);
    border: 1px solid var(--border-on-light, rgba(11, 28, 51, 0.1));
    border-radius: var(--radius-large, 18px);
    overflow: hidden;
    box-shadow: var(--shadow-card, 0 8px 24px rgba(7, 21, 37, 0.08));
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.zaka-vcard:hover {
    background: var(--surface-card-on-light-hover, #fff);
    border-color: rgba(197, 160, 89, 0.35);
    box-shadow: var(--shadow-card-hover, 0 18px 40px rgba(7, 21, 37, 0.12));
    transform: translateY(-6px);
}

.zaka-vcard.is-selected {
    border-color: var(--accent-primary, #c5a059);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.22), var(--shadow-card-hover, 0 18px 40px rgba(7, 21, 37, 0.12));
}

.zaka-vcard.is-too-small {
    opacity: .78;
}

.zaka-vcard--browse {
    cursor: default;
}

.zaka-vcard--browse:hover {
    transform: none;
}

.zaka-vcard__img-wrap {
    position: relative;
    height: 220px;
    max-height: 220px;
    background: #fff;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .75rem 1rem;
}

.zaka-vcard__img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.zaka-vcard__badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-primary, #c5a059);
    color: var(--accent-contrast, #111);
    font-size: .68rem;
    font-weight: 700;
    padding: .45rem .85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom-left-radius: 10px;
}

.zaka-vcard__sharing {
    position: absolute;
    left: .75rem;
    bottom: .75rem;
    background: var(--text-heading-on-light, #071525);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    padding: .25rem .6rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.zaka-vcard__body {
    padding: 1.15rem 1.25rem .5rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.zaka-vcard__intro {
    margin-bottom: .65rem;
}

.zaka-vcard__name {
    font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0;
    line-height: 1.25;
    color: var(--text-heading-on-light, #071525);
}

.zaka-vcard__country {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-secondary-on-light, #3a4556);
    margin: .25rem 0 0;
}

.zaka-vcard__routes {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    max-height: 108px;
    overflow-y: auto;
    padding-right: .35rem;
    margin-bottom: .75rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(197, 160, 89, 0.35) rgba(11, 28, 51, 0.06);
}

.zaka-vcard__routes::-webkit-scrollbar {
    width: 4px;
}

.zaka-vcard__routes::-webkit-scrollbar-track {
    background: rgba(11, 28, 51, 0.06);
    border-radius: 4px;
}

.zaka-vcard__routes::-webkit-scrollbar-thumb {
    background: rgba(197, 160, 89, 0.35);
    border-radius: 4px;
}

.zaka-vcard__route-row {
    padding: .35rem .45rem;
    border-radius: 8px;
    transition: background .15s ease;
}

.zaka-vcard__route-row.is-active {
    background: rgba(197, 160, 89, 0.1);
}

.zaka-vcard__route-name {
    margin: 0 0 .12rem;
    font-size: .8rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-on-light, #0b1c33);
}

.zaka-vcard__route-row.is-active .zaka-vcard__route-name {
    color: var(--text-heading-on-light, #071525);
}

.zaka-vcard__route-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

.zaka-vcard__route-dates {
    color: var(--text-secondary-on-light, #3a4556);
    font-size: .68rem;
    font-weight: 500;
    white-space: nowrap;
}

.zaka-vcard__route-price {
    font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
    font-size: .85rem;
    font-weight: 700;
    color: var(--accent-primary, #c5a059);
    white-space: nowrap;
}

.zaka-vcard__specs {
    display: flex;
    gap: 1.25rem;
    margin-top: auto;
    padding-top: .75rem;
    border-top: 1px solid var(--border-on-light, rgba(11, 28, 51, 0.08));
    font-size: .82rem;
    font-weight: 500;
    color: var(--text-secondary-on-light, #3a4556);
}

.zaka-vcard__specs i {
    color: var(--accent-primary, #c5a059);
    margin-right: .25rem;
}

.zaka-vcard__warn {
    margin: .55rem 0 0;
    padding: .4rem .55rem;
    border-radius: 8px;
    background: rgba(220, 53, 69, .08);
    color: #b42318;
    font-size: .75rem;
    font-weight: 600;
}

.zaka-vcard__footer {
    padding: .75rem 1.25rem 1.25rem;
}

.zaka-vcard__selected-price {
    font-size: .78rem;
    color: var(--text-secondary-on-light, #3a4556);
    margin: 0 0 .55rem;
    text-align: center;
}

.zaka-vcard__selected-price strong {
    color: var(--accent-primary, #c5a059);
}

.zaka-vcard__select {
    display: block;
    width: 100%;
    border: 0;
    border-radius: var(--radius-small, 10px);
    background: var(--accent-primary, #c5a059);
    color: var(--accent-contrast, #111);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    min-height: 44px;
    padding: .65rem 1rem;
    box-shadow: 0 8px 22px rgba(197, 160, 89, 0.28);
    transition: background .15s ease, transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.zaka-vcard__select:hover:not(:disabled) {
    background: var(--accent-hover, #e0b44b);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(197, 160, 89, 0.36);
}

.zaka-vcard__select:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.zaka-vcard.is-selected .zaka-vcard__select {
    background: var(--text-heading-on-light, #071525);
    color: #fff;
    box-shadow: 0 8px 22px rgba(7, 21, 37, 0.18);
}

@media (max-width: 991.98px) {
    .zaka-vcard__routes {
        max-height: 120px;
    }
}

/* ---- Trust sections (from /fleet, below booking form) ---- */
.booking-page-extras {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: clamp(2rem, 4vw, 3rem);
}

.booking-page-extras .section-title {
    font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
    font-weight: 600;
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    line-height: 1.2;
}

.booking-page-extras .page-section--alt .section-title,
.booking-page-extras .page-section--alt h2 {
    color: var(--text-heading-on-light, #071525);
}

.booking-page-extras .page-section--alt .section-sub,
.booking-page-extras .page-section--alt p {
    color: var(--text-secondary-on-light, #3a4556);
}

.booking-page-extras .page-section--dark .section-title,
.booking-page-extras .page-section--dark h2 {
    color: var(--text-on-dark, #f7f1e6);
}

.booking-page-extras .page-section--dark .section-sub,
.booking-page-extras .page-section--dark p {
    color: var(--text-secondary, #d2c6b0);
}

.booking-page-extras .eyebrow {
    display: inline-block;
    color: var(--accent-primary, #c5a059);
    letter-spacing: 0.22em;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.55rem;
}

.booking-page-extras .btn-outline-gold {
    border: 1px solid var(--accent-primary, #c5a059);
    color: var(--accent-primary, #c5a059);
    background: transparent;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.78rem;
    border-radius: var(--radius-small, 10px);
    padding: 0.55rem 1.1rem;
}

.booking-page-extras .btn-outline-gold:hover {
    background: rgba(197, 160, 89, 0.1);
    color: var(--accent-primary, #c5a059);
}

.booking-page-extras .page-section--dark .process-card {
    background: var(--surface-card, #171b21);
    border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.06));
    border-radius: var(--radius-medium, 16px);
    padding: 2rem 1.5rem;
    height: 100%;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.booking-page-extras .page-section--dark .process-card:hover {
    transform: translateY(-4px);
    border-color: rgba(197, 160, 89, 0.32);
    box-shadow: var(--shadow-small, 0 8px 24px rgba(0, 0, 0, 0.25));
}

.booking-page-extras .page-section--dark .process-card h3 {
    font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
    color: var(--text-on-dark, #f7f1e6);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.booking-page-extras .page-section--dark .process-card p {
    color: var(--text-secondary, #d2c6b0);
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.6;
}

.booking-page-extras .page-section--dark .process-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(197, 160, 89, 0.12);
    color: var(--accent-primary, #c5a059);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.booking-page-extras .home-cta-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    background: linear-gradient(145deg, #0a1a2e 0%, var(--surface-primary, #071525) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-large, 18px);
    box-shadow: var(--shadow-large, 0 22px 60px rgba(0, 0, 0, 0.42));
    padding: clamp(1.75rem, 4vw, 3rem);
}

.booking-page-extras .home-cta-card h2 {
    font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
    color: var(--text-on-dark, #f7f1e6);
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    margin: 0;
}

.booking-page-extras .home-cta-card p {
    color: var(--text-secondary, #d2c6b0);
    margin: 0.5rem 0 0;
    max-width: 540px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.booking-page-extras .btn-outline-light-gold {
    border: 1px solid rgba(247, 241, 230, 0.45);
    color: var(--text-on-dark, #f7f1e6);
    background: transparent;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.78rem;
    border-radius: var(--radius-small, 10px);
    padding: 0.55rem 1.1rem;
}

.booking-page-extras .btn-outline-light-gold:hover {
    background: rgba(247, 241, 230, 0.08);
    color: var(--text-on-dark, #f7f1e6);
}

@media (max-width: 767.98px) {
    .booking-page-extras .home-cta-card {
        text-align: center;
        justify-content: center;
    }

    .booking-page-extras .home-cta-card > div:last-child {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
}
