.booking-page-modern {
    --booking-ink: #0b1f33;
    --booking-muted: #607187;
    --booking-primary: #0f8f83;
    --booking-primary-dark: #08665f;
    --booking-line: rgba(15, 67, 78, .12);
    --booking-surface: rgba(255, 255, 255, .95);
    --booking-shadow: 0 22px 65px rgba(8, 48, 59, .09);
    position: relative;
    min-width: 0;
    overflow: clip;
    color: var(--booking-ink);
    background:
        radial-gradient(circle at 3% 4%, rgba(45, 212, 191, .14), transparent 30rem),
        radial-gradient(circle at 96% 17%, rgba(255, 185, 56, .11), transparent 24rem),
        linear-gradient(180deg, #f2fbfa 0, #f8fafb 43rem, #fff 100%);
}

.booking-hero {
    position: relative;
    isolation: isolate;
    padding: clamp(30px, 5vw, 66px) 0 clamp(68px, 8vw, 104px);
}

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

.booking-hero::before {
    top: -17rem;
    right: -12rem;
    width: 36rem;
    height: 36rem;
    background: radial-gradient(circle, rgba(255, 187, 54, .17), transparent 68%);
}

.booking-hero::after {
    bottom: -13rem;
    left: -10rem;
    width: 32rem;
    height: 32rem;
    background: radial-gradient(circle, rgba(20, 184, 166, .16), transparent 68%);
}

.booking-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
    gap: clamp(36px, 6vw, 84px);
    align-items: end;
}

.booking-hero__copy {
    min-width: 0;
}

.booking-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    color: #718096;
    font-size: .78rem;
    font-weight: 700;
}

.booking-breadcrumb a,
.booking-breadcrumb span {
    max-width: 28ch;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.booking-breadcrumb a:hover {
    color: var(--booking-primary-dark);
}

.booking-breadcrumb i {
    color: #a8b4c2;
    font-size: .58rem;
}

.booking-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 8px 13px;
    border: 1px solid rgba(15, 143, 131, .15);
    border-radius: 999px;
    background: rgba(20, 184, 166, .10);
    color: #08746c;
    font-size: .75rem;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.booking-hero h1 {
    max-width: 13ch;
    margin: 16px 0 0;
    color: var(--booking-ink);
    font-size: clamp(2.6rem, 5.3vw, 5rem);
    line-height: .96;
    letter-spacing: -.06em;
    text-wrap: balance;
}

.booking-hero__offer {
    max-width: 42ch;
    margin: 20px 0 0;
    color: var(--booking-primary-dark);
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    font-weight: 850;
    line-height: 1.3;
}

.booking-hero__description {
    max-width: 65ch;
    margin: 10px 0 0;
    color: var(--booking-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.booking-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}

.booking-hero__trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 8px 12px;
    border: 1px solid var(--booking-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .68);
    color: #536a7c;
    font-size: .75rem;
    font-weight: 750;
    backdrop-filter: blur(10px);
}

.booking-hero__trust i {
    color: var(--booking-primary);
}

.booking-progress {
    position: relative;
    display: grid;
    gap: 5px;
    margin: 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 28px;
    background:
        radial-gradient(circle at 100% 0, rgba(45, 212, 191, .24), transparent 40%),
        linear-gradient(155deg, #0a2033, #0b4b50);
    color: #fff;
    list-style: none;
    box-shadow: 0 28px 70px rgba(7, 38, 51, .20);
}

.booking-progress li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 64px;
    padding: 10px 11px;
    border-radius: 18px;
    color: rgba(255, 255, 255, .56);
}

.booking-progress li + li::before {
    position: absolute;
    top: -8px;
    left: 29px;
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, .16);
    content: "";
}

.booking-progress li.is-active {
    background: rgba(255, 255, 255, .10);
    color: #fff;
}

.booking-progress li > span {
    display: inline-grid;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 13px;
    background: rgba(255, 255, 255, .07);
    font-size: .82rem;
    font-weight: 900;
}

.booking-progress li.is-active > span {
    border-color: transparent;
    background: #56e1b0;
    color: #073233;
}

.booking-progress li > div {
    display: grid;
    gap: 2px;
}

.booking-progress strong {
    color: inherit;
    font-size: .84rem;
}

.booking-progress small {
    color: inherit;
    font-size: .71rem;
}

.booking-workspace {
    position: relative;
    z-index: 2;
    margin-top: -44px;
    padding: 0 0 clamp(58px, 8vw, 100px);
    background: transparent;
}

.booking-page-modern .booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.booking-page-modern .booking-main,
.booking-page-modern .booking-sidebar {
    min-width: 0;
}

.booking-page-modern .booking-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.booking-page-modern .booking-field--full {
    grid-column: 1 / -1;
}

.booking-page-modern .booking-section {
    display: grid;
    gap: 22px;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid var(--booking-line);
    border-radius: 30px;
    background: var(--booking-surface);
    box-shadow: var(--booking-shadow);
    scroll-margin-top: 110px;
}

.booking-page-modern .booking-section__header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(15, 67, 78, .09);
}

.booking-page-modern .booking-section__header--compact {
    margin: 0;
}

.booking-page-modern .booking-step {
    display: inline-grid;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(15, 143, 131, .12);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(15, 143, 131, .15), rgba(45, 212, 191, .08));
    color: var(--booking-primary-dark);
    font-weight: 900;
}

.booking-page-modern .booking-section__header h2 {
    margin: 0;
    color: var(--booking-ink);
    font-size: clamp(1.18rem, 2vw, 1.5rem);
    line-height: 1.2;
    letter-spacing: -.035em;
}

.booking-page-modern .booking-section__header p {
    margin: 5px 0 0;
    color: var(--booking-muted);
    font-size: .9rem;
    line-height: 1.5;
}

.booking-error-summary {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 17px 19px;
    border: 1px solid rgba(225, 29, 72, .18);
    border-radius: 20px;
    background: #fff2f5;
    color: #9f1239;
}

.booking-error-summary > span {
    display: inline-grid;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 12px;
    background: rgba(225, 29, 72, .10);
}

.booking-error-summary strong,
.booking-error-summary p {
    display: block;
}

.booking-error-summary p {
    margin: 4px 0 0;
    color: #b33a5b;
    font-size: .84rem;
}

.booking-page-modern .booking-mode-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.booking-page-modern .booking-mode-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 112px;
    padding: 17px;
    border: 1px solid rgba(15, 67, 78, .13);
    border-radius: 20px;
    background: #f9fbfc;
    cursor: pointer;
    box-shadow: none;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.booking-page-modern .booking-mode-card:hover,
.booking-page-modern .booking-mode-card:focus-within {
    border-color: rgba(15, 143, 131, .38);
    background: #fff;
    box-shadow: 0 14px 32px rgba(15, 83, 89, .09);
    transform: translateY(-1px);
}

.booking-page-modern .booking-mode-card.is-selected {
    border-color: rgba(15, 143, 131, .52);
    background: linear-gradient(145deg, rgba(232, 250, 246, .95), rgba(255, 255, 255, .96));
    box-shadow: 0 0 0 4px rgba(15, 143, 131, .07), 0 14px 32px rgba(15, 83, 89, .08);
}

.booking-page-modern .booking-mode-card input {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    accent-color: var(--booking-primary);
}

.booking-page-modern .booking-mode-card strong {
    color: var(--booking-ink);
    font-size: .95rem;
    line-height: 1.35;
}

.booking-page-modern .booking-mode-card small {
    margin-top: 6px;
    color: var(--booking-muted);
    font-size: .8rem;
    line-height: 1.5;
}

.booking-page-modern .booking-calendar-layout {
    display: grid;
    grid-template-columns: minmax(220px, .72fr) minmax(330px, 1fr);
    gap: 18px;
    align-items: start;
}

.booking-page-modern .booking-field {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 8px;
}

.booking-page-modern .booking-label,
.booking-page-modern .booking-field > label {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    color: var(--booking-ink);
    font-size: .84rem;
    font-weight: 800;
}

.booking-page-modern .booking-required-star {
    color: #e11d48;
}

.booking-page-modern .booking-optional-badge {
    display: inline-flex;
    min-height: 22px;
    align-items: center;
    margin-inline-start: 4px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #eef2f5;
    color: #718096;
    font-size: .65rem;
    font-weight: 800;
}

.booking-page-modern .booking-field input:not([type="radio"]):not([type="checkbox"]),
.booking-page-modern .booking-field select,
.booking-page-modern .booking-field textarea {
    width: 100%;
    min-height: 54px;
    padding: 13px 15px;
    border: 1px solid rgba(15, 67, 78, .14);
    border-radius: 16px;
    outline: none;
    background: #fff;
    color: var(--booking-ink);
    font: inherit;
    box-shadow: inset 0 1px 2px rgba(6, 35, 48, .02);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.booking-page-modern .booking-field textarea {
    min-height: 118px;
    resize: vertical;
}

.booking-page-modern .booking-field input:not([type="radio"]):not([type="checkbox"]):focus,
.booking-page-modern .booking-field select:focus,
.booking-page-modern .booking-field textarea:focus {
    border-color: rgba(15, 143, 131, .62);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(15, 143, 131, .09);
}

.booking-page-modern .booking-field input::placeholder,
.booking-page-modern .booking-field textarea::placeholder {
    color: #9aa7b5;
}

.booking-page-modern .field-help {
    color: #77889a;
    font-size: .73rem;
    line-height: 1.45;
}

.booking-page-modern .field-error,
.booking-page-modern .booking-field .errorlist {
    margin: 0;
    padding: 0;
    color: #c21f4b;
    font-size: .76rem;
    font-weight: 700;
    list-style: none;
}

.booking-page-modern .booking-form-grid--inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 19px 17px;
}

.booking-page-modern .booking-field--payment-inline .booking-radio {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.booking-page-modern .booking-radio label {
    min-height: 82px;
    padding: 13px;
    border: 1px solid rgba(15, 67, 78, .12);
    border-radius: 16px;
    background: #f8fafb;
    cursor: pointer;
}

.booking-page-modern .booking-radio label.is-selected {
    border-color: rgba(15, 143, 131, .48);
    background: rgba(232, 250, 246, .92);
    box-shadow: 0 0 0 3px rgba(15, 143, 131, .07);
}

.booking-page-modern .booking-radio input {
    accent-color: var(--booking-primary);
}

.booking-page-modern .booking-calendar {
    padding: 17px;
    border: 1px solid rgba(15, 143, 131, .16);
    border-radius: 21px;
    background: #fbfdfd;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .8);
}

.booking-page-modern .booking-calendar__header {
    margin-bottom: 15px;
}

.booking-page-modern .booking-calendar__header strong {
    color: var(--booking-ink);
    font-size: .94rem;
}

.booking-page-modern .booking-calendar__nav {
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 7px 18px rgba(15, 75, 81, .07);
}

.booking-page-modern .booking-calendar__nav:disabled {
    cursor: not-allowed;
    opacity: .38;
    box-shadow: none;
}

.booking-page-modern .booking-calendar__weekdays,
.booking-page-modern .booking-calendar__grid {
    gap: 7px;
}

.booking-page-modern .booking-calendar__day {
    min-height: 38px;
    border: 1px solid transparent;
    border-radius: 11px;
    background: #edf2f6;
    color: #a3b0bd;
    font-size: .78rem;
}

.booking-page-modern .booking-calendar__day.is-available {
    border-color: rgba(15, 143, 131, .20);
    background: #eaf8f5;
    color: #08776f;
}

.booking-page-modern .booking-calendar__day.is-available:hover {
    border-color: var(--booking-primary);
    background: #d7f3ed;
}

.booking-page-modern .booking-calendar__day.is-today:not(.is-selected) {
    box-shadow: inset 0 0 0 2px rgba(15, 143, 131, .48);
}

.booking-page-modern .booking-calendar__day.is-selected {
    border-color: var(--booking-primary-dark);
    background: linear-gradient(145deg, #0f8f83, #087369);
    color: #fff;
    box-shadow: 0 7px 15px rgba(15, 143, 131, .24);
}

.booking-page-modern .booking-calendar__hint {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 13px 0 0;
    color: var(--booking-muted);
    font-size: .76rem;
}

.booking-page-modern .booking-calendar__hint::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2cc39b;
    content: "";
}

.booking-page-modern .booking-next-dates {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px;
    border-radius: 17px;
    background: #f7fafb;
}

.booking-page-modern .booking-next-dates > span {
    margin-inline-end: 3px;
    color: var(--booking-ink);
    font-size: .75rem;
}

.booking-page-modern .booking-next-dates button {
    min-height: 38px;
    border-radius: 12px;
    background: #fff;
}

.booking-page-modern .booking-upsell-shell {
    background:
        radial-gradient(circle at 100% 0, rgba(45, 212, 191, .10), transparent 36%),
        rgba(255, 255, 255, .96);
}

.booking-page-modern .booking-upsell-intro,
.booking-page-modern .booking-upsell-toggle {
    border-radius: 20px;
}

.booking-page-modern .booking-upsell-tabs__nav {
    border-radius: 20px;
}

.booking-page-modern .booking-upsell-tab {
    border-radius: 16px;
}

.booking-page-modern .booking-upsell-card {
    border-radius: 20px;
}

.booking-page-modern .booking-form-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 15px 18px;
    align-items: center;
    padding: 22px;
    border: 1px solid var(--booking-line);
    border-radius: 24px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--booking-shadow);
    scroll-margin-top: 100px;
}

.booking-submit-reassurance {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.booking-submit-reassurance > i {
    display: inline-grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px;
    background: rgba(15, 143, 131, .10);
    color: var(--booking-primary-dark);
}

.booking-submit-reassurance span {
    display: grid;
    gap: 3px;
}

.booking-submit-reassurance strong {
    color: var(--booking-ink);
    font-size: .84rem;
}

.booking-submit-reassurance small {
    color: var(--booking-muted);
    font-size: .72rem;
    line-height: 1.4;
}

.booking-page-modern .booking-submit-button {
    min-width: 240px;
    min-height: 56px;
    gap: 10px;
    border-radius: 17px;
    background: linear-gradient(135deg, #0d8278, #18bd8b);
    box-shadow: 0 16px 32px rgba(13, 130, 120, .23);
}

.booking-page-modern .booking-submit-button:disabled {
    box-shadow: none;
    cursor: not-allowed;
    opacity: .55;
}

.booking-back-link {
    display: inline-flex;
    grid-column: 1 / -1;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: #67798b;
    font-size: .78rem;
    font-weight: 800;
    text-decoration: none;
}

.booking-back-link:hover {
    color: var(--booking-primary-dark);
}

.booking-page-modern .booking-sidebar--form {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 17px;
    padding: 0;
}

.booking-page-modern .booking-sidebar--form .sidebar-card {
    overflow: hidden;
    margin: 0;
    padding: 22px;
    border: 1px solid var(--booking-line);
    border-radius: 26px;
    background: var(--booking-surface);
    box-shadow: var(--booking-shadow);
    transform: none;
}

.booking-page-modern .booking-sidebar--form .sidebar-card::before,
.booking-page-modern .booking-sidebar--form .sidebar-card::after {
    display: none;
}

.booking-order-card {
    padding: 0 !important;
}

.booking-order-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #dcebea;
}

.booking-order-card__media::after {
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(180deg, transparent, rgba(7, 28, 39, .52));
    content: "";
}

.booking-order-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.booking-order-card__media > span {
    position: absolute;
    z-index: 1;
    right: 13px;
    bottom: 13px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    background: rgba(7, 35, 43, .68);
    color: #fff;
    font-size: .67rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.booking-order-card__media > span i {
    color: #61e4b3;
}

.booking-order-card__body {
    padding: 20px 21px 21px;
}

.booking-order-card__eyebrow {
    display: block;
    margin-bottom: 7px;
    color: var(--booking-primary-dark);
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.booking-page-modern .booking-order-card h2 {
    margin: 0;
    color: var(--booking-ink);
    font-size: 1.08rem;
    line-height: 1.35;
    letter-spacing: -.025em;
}

.booking-order-card__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

.booking-order-card__facts span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 6px 9px;
    border-radius: 10px;
    background: #f1f7f7;
    color: #597083;
    font-size: .67rem;
    font-weight: 750;
}

.booking-order-card__facts i {
    color: var(--booking-primary);
}

.booking-order-card__base-price {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-top: 17px;
    padding-top: 15px;
    border-top: 1px solid var(--booking-line);
}

.booking-order-card__base-price span {
    color: var(--booking-muted);
    font-size: .75rem;
}

.booking-order-card__base-price strong {
    color: var(--booking-ink);
    font-size: 1.13rem;
}

.booking-page-modern .booking-sidebar--form .booking-estimate-card {
    border-color: rgba(255, 255, 255, .12);
    background:
        radial-gradient(circle at 100% 0, rgba(45, 212, 191, .25), transparent 42%),
        linear-gradient(155deg, #0a2033, #0b4d52 68%, #0f8f83);
    color: #fff;
}

.booking-estimate-card__eyebrow {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    color: #70e6bd;
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.booking-page-modern .booking-estimate-card h3,
.booking-page-modern .booking-estimate-card p,
.booking-page-modern .booking-estimate-card strong {
    color: #fff;
}

.booking-page-modern .booking-estimate-card h3 {
    margin: 0 0 12px;
    font-size: 1.22rem;
}

.booking-page-modern .booking-estimate-card p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: .8rem;
    line-height: 1.5;
}

.booking-page-modern .booking-estimate-amount {
    margin: 13px 0 9px;
    color: #fff !important;
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    line-height: 1;
    letter-spacing: -.055em;
}

.booking-page-modern .booking-estimate-card .field-help {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, .72);
}

.booking-help-card {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.booking-help-card__icon {
    display: inline-grid;
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 15px;
    background: rgba(15, 143, 131, .10);
    color: var(--booking-primary-dark);
}

.booking-help-card__eyebrow {
    display: block;
    margin-bottom: 5px;
    color: var(--booking-primary-dark);
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.booking-page-modern .booking-help-card h3 {
    margin: 0;
    color: var(--booking-ink);
    font-size: .98rem;
    line-height: 1.35;
}

.booking-help-card p {
    margin: 8px 0 12px;
    color: var(--booking-muted);
    font-size: .76rem;
    line-height: 1.5;
}

.booking-help-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #07845e;
    font-size: .76rem;
    font-weight: 850;
    text-decoration: none;
}

.booking-help-card a i {
    font-size: 1rem;
}

.booking-mobile-summary {
    display: none;
}

html[dir="rtl"] .booking-breadcrumb i,
html[dir="rtl"] .booking-submit-button i.fa-arrow-right,
html[dir="rtl"] .booking-back-link i {
    transform: rotate(180deg);
}

html[dir="rtl"] .booking-progress li + li::before {
    right: 29px;
    left: auto;
}

@media (max-width: 1120px) {
    .booking-hero__inner {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 42px;
    }

    .booking-page-modern .booking-layout {
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 22px;
    }

    .booking-page-modern .booking-calendar-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .booking-hero {
        padding-bottom: 76px;
    }

    .booking-hero__inner,
    .booking-page-modern .booking-layout {
        grid-template-columns: 1fr;
    }

    .booking-hero__inner {
        align-items: start;
    }

    .booking-hero h1 {
        max-width: 15ch;
    }

    .booking-progress {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .booking-progress li {
        align-items: flex-start;
        min-height: 100px;
        flex-direction: column;
    }

    .booking-progress li + li::before {
        display: none;
    }

    .booking-page-modern .booking-sidebar--form {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .booking-order-card {
        grid-row: span 2;
    }
}

@media (max-width: 700px) {
    .booking-page-modern {
        padding-bottom: calc(80px + env(safe-area-inset-bottom));
    }

    .booking-hero {
        padding: 20px 0 72px;
    }

    .booking-breadcrumb {
        gap: 7px;
        margin-bottom: 18px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .booking-hero__eyebrow {
        font-size: .68rem;
    }

    .booking-hero h1 {
        margin-top: 13px;
        font-size: clamp(2.25rem, 12vw, 3.35rem);
        line-height: 1;
    }

    .booking-hero__offer {
        margin-top: 16px;
        font-size: 1.02rem;
    }

    .booking-hero__description {
        font-size: .9rem;
    }

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

    .booking-hero__trust span:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .booking-progress {
        gap: 5px;
        padding: 10px;
        border-radius: 22px;
    }

    .booking-progress li {
        min-height: 84px;
        gap: 8px;
        padding: 9px;
        border-radius: 15px;
    }

    .booking-progress li > span {
        flex-basis: 32px;
        width: 32px;
        height: 32px;
        border-radius: 11px;
    }

    .booking-progress strong {
        font-size: .72rem;
    }

    .booking-progress small {
        display: none;
    }

    .booking-workspace {
        margin-top: -40px;
        padding-bottom: 42px;
    }

    .booking-page-modern .booking-form-grid,
    .booking-page-modern .booking-form-grid--inner,
    .booking-page-modern .booking-mode-grid,
    .booking-page-modern .booking-field--payment-inline .booking-radio,
    .booking-page-modern .booking-sidebar--form {
        grid-template-columns: 1fr;
    }

    .booking-page-modern .booking-section {
        gap: 18px;
        padding: 19px;
        border-radius: 23px;
    }

    .booking-page-modern .booking-section__header {
        gap: 12px;
        padding-bottom: 16px;
    }

    .booking-page-modern .booking-step {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .booking-page-modern .booking-mode-card {
        min-height: 0;
        padding: 15px;
        border-radius: 17px;
    }

    .booking-page-modern .booking-calendar {
        padding: 12px;
        border-radius: 18px;
    }

    .booking-page-modern .booking-calendar__weekdays,
    .booking-page-modern .booking-calendar__grid {
        gap: 4px;
    }

    .booking-page-modern .booking-calendar__day {
        min-height: 35px;
        border-radius: 9px;
        font-size: .72rem;
    }

    .booking-page-modern .booking-next-dates {
        overflow-x: auto;
        flex-wrap: nowrap;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    .booking-page-modern .booking-next-dates > * {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .booking-page-modern .booking-upsell-intro,
    .booking-page-modern .booking-upsell-tabpanel__head,
    .booking-page-modern .booking-upsell-card__topline {
        align-items: flex-start;
        flex-direction: column;
    }

    .booking-page-modern .booking-upsell-intro__meta,
    .booking-page-modern .booking-upsell-tabpanel__meta,
    .booking-page-modern .booking-upsell-card__badges {
        max-width: none;
        justify-content: flex-start;
    }

    .booking-page-modern .booking-upsell-tabs__nav,
    .booking-page-modern .booking-upsell-grid {
        grid-template-columns: 1fr;
    }

    .booking-page-modern .booking-form-actions {
        grid-template-columns: 1fr;
        padding: 18px;
        border-radius: 21px;
    }

    .booking-page-modern .booking-submit-button {
        width: 100%;
        min-width: 0;
    }

    .booking-back-link {
        grid-column: auto;
    }

    .booking-order-card {
        grid-row: auto;
    }

    .booking-mobile-summary {
        position: fixed;
        z-index: 1001;
        right: 8px;
        bottom: max(8px, env(safe-area-inset-bottom));
        left: 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        min-height: 66px;
        padding: 9px 10px 9px 16px;
        border: 1px solid rgba(255, 255, 255, .16);
        border-radius: 20px;
        background: rgba(8, 31, 48, .95);
        color: #fff;
        box-shadow: 0 18px 44px rgba(2, 19, 29, .3);
        backdrop-filter: blur(18px);
    }

    .booking-mobile-summary > div {
        display: grid;
        min-width: 0;
    }

    .booking-mobile-summary small {
        color: rgba(255, 255, 255, .66);
        font-size: .67rem;
    }

    .booking-mobile-summary strong {
        overflow: hidden;
        color: #fff;
        font-size: 1.08rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .booking-mobile-summary a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 46px;
        padding: 10px 16px;
        border-radius: 14px;
        background: linear-gradient(135deg, #22d39a, #58e3b1);
        color: #082b2e;
        font-size: .82rem;
        font-weight: 900;
        text-decoration: none;
        white-space: nowrap;
    }

    body:has(.booking-page-modern) .site-search-fab {
        bottom: calc(92px + env(safe-area-inset-bottom)) !important;
    }

    body:has(.booking-page-modern) .site-whatsapp-fab {
        bottom: calc(158px + env(safe-area-inset-bottom)) !important;
    }

    body:has(.booking-page-modern) .scroll-top {
        bottom: calc(224px + env(safe-area-inset-bottom)) !important;
    }
}

@media (max-width: 420px) {
    .booking-hero__trust {
        grid-template-columns: 1fr;
    }

    .booking-hero__trust span:last-child:nth-child(odd) {
        grid-column: auto;
    }

    .booking-progress strong {
        font-size: .66rem;
    }

    .booking-page-modern .booking-section,
    .booking-page-modern .booking-sidebar--form .sidebar-card {
        border-radius: 20px;
    }

    .booking-submit-reassurance {
        align-items: flex-start;
    }

    .booking-mobile-summary {
        right: 5px;
        bottom: max(5px, env(safe-area-inset-bottom));
        left: 5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .booking-page-modern *,
    .booking-page-modern *::before,
    .booking-page-modern *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
