:root {
    --ed-navy: #081f3d;
    --ed-navy-2: #0e315c;

    --ed-wine: #800020;
    --ed-wine-dark: #610018;

    /* New sea blue */
    --ed-teal: #19C2DE;
    --ed-teal-dark: #12A9C8;
    --ed-teal-light: #F1FCFE;

    --ed-success: #198754;
    --ed-warning: #f59e0b;

    --ed-bg: #f4f7fb;
    --ed-surface: #ffffff;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.booking-body {
    min-height: 100vh;
    margin: 0;
    color: var(--ed-text);
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.15),
            transparent 45%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(255, 255, 255, 0.08),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #0b2f5b,
            #2a6ebb
        );
}

a {
    color: var(--ed-navy-2);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: var(--ed-wine);
}

/* Accessibility */

.skip-link {
    position: fixed;
    top: -60px;
    left: 16px;
    z-index: 2000;
    padding: 10px 16px;
    color: #fff;
    background: var(--ed-navy);
    border-radius: 8px;
}

.skip-link:focus {
    top: 16px;
}

/* Header */

.booking-header {
    position: relative;
    z-index: 10;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--ed-border);
}

.booking-header .navbar {
    min-height: 76px;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

.booking-brand {
    min-width: 0;
    text-decoration: none;
}

.booking-logo {
    display: block;
    width: auto;
    height: 48px;
    max-width: 180px;
    object-fit: contain;
    flex-shrink: 0;
}

.booking-brand-copy {
    min-width: 0;
}

.booking-brand-name {
    color: var(--ed-navy);
    font-size: 1.05rem;
    line-height: 1.15;
}

.booking-brand-tagline {
    display: block;
    margin-top: 2px;
    color: var(--ed-muted);
    font-size: 0.78rem;
    line-height: 1.2;
}

.booking-nav-link {
    color: var(--ed-text);
    text-decoration: none;
    font-size: 0.92rem;
    white-space: nowrap;
}

.booking-nav-link:hover {
    color: var(--ed-wine);
}

/* Main shell */

.booking-shell {
    min-height: calc(100vh - 160px);
}

.booking-progress {
    padding: 18px 22px;
    border-radius: var(--ed-radius-md);
    background: rgba(255, 255, 255, 0.96);
}

.booking-progress-list {
    display: flex;
    align-items: center;
}

.booking-progress-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #98a2b3;
}

.booking-progress-number {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border: 2px solid var(--ed-border);
    border-radius: 50%;
    font-weight: 700;
    background: #fff;
}

.booking-progress-copy {
    display: flex;
    flex-direction: column;
    min-width: 105px;
}

.booking-progress-copy small {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

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

.booking-progress-item.is-active {
    color: var(--ed-navy);
}

.booking-progress-item.is-active .booking-progress-number {
    color: #fff;
    border-color: var(--ed-navy);
    background: var(--ed-navy);
}

.booking-progress-item.is-complete {
    color: var(--ed-success);
}

.booking-progress-item.is-complete .booking-progress-number {
    color: #fff;
    border-color: var(--ed-success);
    background: var(--ed-success);
}

.booking-progress-divider {
    height: 2px;
    flex: 1 1 auto;
    min-width: 30px;
    margin: 0 18px;
    background: var(--ed-border);
}

/* Two-column booking layout */




.booking-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 28px;
}








.booking-sidebar {
    position: sticky;
    top: 24px;
}

.booking-summary {
    overflow: hidden;
    border-radius: var(--ed-radius-lg);
    background: var(--ed-surface);
}

.booking-summary-top {
    display: flex;
    gap: 14px;
    padding: 26px 26px 20px;
    color: #fff;
    background: linear-gradient(135deg, #081f3d, #244c7a);
}

.summary-icon {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.14);
}

.summary-eyebrow {
    display: block;
    margin-bottom: 4px;
    font-size: 0.78rem;
    opacity: 0.82;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.summary-title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
}

.summary-list {
    padding: 16px 24px 6px;
}

.summary-row {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #edf1f6;
}

.summary-row:last-child {
    border-bottom: 0;
}

.summary-row-icon {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--ed-navy);
    border-radius: 10px;
    background: #eef4fa;
}

.summary-label {
    display: block;
    margin-bottom: 2px;
    color: var(--ed-muted);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.summary-row strong {
    font-size: 0.93rem;
}

.summary-help {
    display: flex;
    gap: 10px;
    margin: 16px 20px 22px;
    padding: 14px;
    color: #4b5565;
    border-radius: 12px;
    background: #f6f8fb;
    font-size: 0.88rem;
}

/* Main booking card */

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

.booking-main-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.booking-content-wrap {
    padding: clamp(28px, 4vw, 56px);
}

.booking-page-heading {
    margin-bottom: 28px;
}

.booking-step-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--ed-wine);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.booking-page-heading h1,
.confirmation-wrap h1 {
    margin-bottom: 12px;
    color: var(--ed-navy);
    font-size: clamp(2rem, 3.3vw, 2.85rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.booking-page-heading p {
    max-width: 800px;
    margin: 0;
    color: var(--ed-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* Service cards */

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #dfe6ef;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(8, 31, 61, 0.06);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(8, 31, 61, 0.30);
    box-shadow: 0 18px 42px rgba(8, 31, 61, 0.13);
}

.service-card:focus-within {
    outline: 3px solid rgba(128, 0, 32, 0.18);
    outline-offset: 3px;
}

.service-card.is-selected {
    border: 2px solid var(--ed-wine);
    background: #ffffff;
    box-shadow:
        0 0 0 4px rgba(128, 0, 32, 0.08),
        0 20px 45px rgba(8, 31, 61, 0.14);
}

.service-card-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Service image */

.service-card-image {
    position: relative;
    display: block;
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: linear-gradient(135deg, #eaf0f7, #f7f9fc);
}

.service-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.45s ease,
        filter 0.3s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.045);
}

.service-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(8, 31, 61, 0.14)
    );
}

.service-image-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: var(--ed-navy);
    background: linear-gradient(135deg, #edf3f9, #f8fafc);
    font-size: 3rem;
}

/* Selected indicator */

.service-card-check {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    background: rgba(8, 31, 61, 0.65);
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(5px);
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.service-card.is-selected .service-card-check {
    color: #ffffff;
    border-color: #ffffff;
    background: var(--ed-wine);
    transform: scale(1.05);
}

/* Card body */

.service-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
    padding: 22px 24px 20px;
}

.service-card-category {
    display: block;
    margin-bottom: 7px;
    color: var(--ed-wine);
    font-size: 0.69rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.10em;
}

.service-card-title {
    display: block;
    margin-bottom: 10px;
    color: var(--ed-navy);
    font-size: 1.15rem;
    font-weight: 750;
    line-height: 1.3;
}

.service-card-description {
    display: block;
    margin-bottom: 20px;
    color: #667085;
    font-size: 0.90rem;
    line-height: 1.6;
}

/* Service meta */

.service-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: auto;
    padding-top: 2px;
    color: #667085;
    font-size: 0.80rem;
    font-weight: 600;
}

.service-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card-meta i {
    color: var(--ed-navy);
    font-size: 0.90rem;
}

/* Card action */

.service-card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    padding-top: 16px;
    color: var(--ed-navy);
    border-top: 1px solid #edf1f6;
    font-size: 0.82rem;
    font-weight: 700;
    transition: color 0.2s ease;
}

.service-card-action i {
    transition: transform 0.2s ease;
}

.service-card:hover .service-card-action {
    color: var(--ed-wine);
}

.service-card:hover .service-card-action i {
    transform: translateX(4px);
}

.service-card.is-selected .service-card-action {
    color: var(--ed-wine);
}

.service-card.is-selected .service-action-text::after {
    content: " selected";
}

/* Booking-specific empty state */

.booking-empty-state {
    grid-column: 1 / -1;
    padding: 60px 30px;
    text-align: center;
    border: 1px dashed #cbd5e1;
    border-radius: 18px;
    background: #f8fafc;
}

.booking-empty-state > i {
    display: inline-grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    color: var(--ed-wine);
    border-radius: 18px;
    background: rgba(128, 0, 32, 0.08);
    font-size: 1.6rem;
}

.booking-empty-state h2 {
    margin-bottom: 8px;
    color: var(--ed-navy);
    font-size: 1.25rem;
    font-weight: 750;
}

.booking-empty-state p {
    max-width: 500px;
    margin: 0 auto;
    color: var(--ed-muted);
    line-height: 1.65;
}

/* Booking actions */

.booking-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-top: 36px;
    padding-top: 26px;
    border-top: 1px solid #edf1f6;
}

.booking-btn-primary,
.booking-btn-secondary {
    min-height: 48px;
    padding: 11px 20px;
    border-radius: 11px;
    font-weight: 650;
}

.booking-btn-primary {
    color: #fff;
    border: 1px solid var(--ed-wine);
    background: linear-gradient(135deg, var(--ed-wine), var(--ed-wine-dark));
    box-shadow: 0 8px 20px rgba(128, 0, 32, 0.2);
}

.booking-btn-primary:hover,
.booking-btn-primary:focus {
    color: #fff;
    border-color: var(--ed-wine-dark);
    background: var(--ed-wine-dark);
    transform: translateY(-1px);
}

.booking-btn-primary:disabled {
    color: #fff;
    opacity: 0.48;
    box-shadow: none;
    transform: none;
}

.booking-btn-secondary {
    color: var(--ed-navy);
    border-color: var(--ed-border-strong);
    background: #fff;
}

.booking-btn-secondary:hover {
    color: var(--ed-navy);
    border-color: var(--ed-navy);
    background: #f8fafc;
}

/* Calendar and time slots */

.date-time-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 24px;
}

.calendar-card,
.time-slot-panel {
    min-width: 0;
    padding: 24px;
    border: 1px solid var(--ed-border);
    border-radius: var(--ed-radius-md);
    background: #fff;
}

.calendar-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.calendar-month {
    color: var(--ed-navy);
    font-size: 1.08rem;
    font-weight: 700;
}

.calendar-nav-btn {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--ed-navy);
    border: 1px solid var(--ed-border);
    border-radius: 10px;
    background: #fff;
}

.calendar-nav-btn:hover {
    border-color: var(--ed-navy);
    background: #f5f8fb;
}

.calendar-weekdays,
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 7px;
}

.calendar-weekdays {
    margin-bottom: 8px;
    color: var(--ed-muted);
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.calendar-day {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    min-height: 44px;
    color: var(--ed-text);
    border: 1px solid transparent;
    border-radius: 12px;
    background: #fff;
    font-weight: 600;
    transition: all var(--ed-transition);
}

.calendar-day:hover:not(:disabled) {
    border-color: var(--ed-teal);
    background: #ecfcff;
}

.calendar-day small {
    position: absolute;
    bottom: 6px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--ed-teal);
}

.calendar-day.is-today {
    border-color: var(--ed-border-strong);
}

.calendar-day.is-selected {
    color: #fff;
    border-color: var(--ed-navy);
    background: var(--ed-navy);
    box-shadow: 0 7px 16px rgba(8, 31, 61, 0.2);
}

.calendar-day.is-selected small {
    background: #fff;
}

.calendar-day.is-disabled {
    color: #c2c8d0;
    cursor: not-allowed;
    text-decoration: line-through;
}

.calendar-day.is-placeholder {
    visibility: hidden;
}

.time-slot-heading {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.time-slot-heading h3 {
    color: var(--ed-navy);
    font-size: 1rem;
    font-weight: 700;
}

.timezone-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    color: var(--ed-navy);
    border-radius: 999px;
    background: #eef4fa;
    font-size: 0.72rem;
    white-space: nowrap;
}

.time-slot-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-height: 430px;
    overflow-y: auto;
    padding-right: 4px;
}

.time-slot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    padding: 12px 14px;
    cursor: pointer;
    border: 1px solid var(--ed-border);
    border-radius: 10px;
    font-size: 0.87rem;
    font-weight: 600;
    background: #fff;
}

.time-slot:hover {
    border-color: var(--ed-teal);
    background: #f0fcfe;
}

.time-slot.is-selected {
    color: var(--ed-navy);
    border-color: var(--ed-teal);
    background: #f0fcfe;
    box-shadow: 0 0 0 3px rgba(25, 194, 222, 0.15);
}

.time-slot input {
    position: absolute;
    opacity: 0;
}

.slot-check {
    display: none;
    color: var(--ed-teal);
}

.time-slot.is-selected .slot-check {
    display: inline-block;
}

/* Forms */

.form-label {
    color: var(--ed-navy);
    font-weight: 650;
    font-size: 0.88rem;
}

.form-control,
.form-select {
    min-height: 50px;
    border-color: var(--ed-border-strong);
    border-radius: 11px;
    background: #fff;
}

textarea.form-control {
    min-height: 150px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--ed-teal);
    box-shadow: 0 0 0 4px rgba(25, 194, 222, 0.16);
}

.form-text {
    color: var(--ed-muted);
}

.privacy-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 16px;
    color: #475467;
    border-radius: 12px;
    background: #f6f8fb;
    font-size: 0.88rem;
}

.privacy-note i {
    color: var(--ed-success);
    font-size: 1.15rem;
}

/* Empty state */

.empty-state {
    grid-column: 1 / -1;
    padding: 64px 24px;
    text-align: center;
    border: 1px dashed var(--ed-border-strong);
    border-radius: var(--ed-radius-md);
    background: #fbfcfe;
}

.empty-state.compact {
    padding: 35px 18px;
}

.empty-state-icon {
    display: inline-grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin-bottom: 16px;
    color: var(--ed-wine);
    border-radius: 18px;
    background: rgba(128, 0, 32, 0.08);
    font-size: 1.5rem;
}

.empty-state h3 {
    color: var(--ed-navy);
    font-size: 1.2rem;
    font-weight: 700;
}

.empty-state p {
    margin-bottom: 0;
    color: var(--ed-muted);
}

/* Confirmation */

.confirmation-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(42px, 7vw, 84px) clamp(24px, 5vw, 60px);
}

.confirmation-icon {
    display: inline-grid;
    place-items: center;
    width: 82px;
    height: 82px;
    margin-bottom: 20px;
    color: #fff;
    border-radius: 50%;
    background: linear-gradient(145deg, #24a148, #168239);
    box-shadow: 0 18px 35px rgba(25, 135, 84, 0.25);
    font-size: 2.1rem;
}

.confirmation-lead {
    color: var(--ed-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.confirmation-card {
    margin-top: 30px;
    padding: 8px 24px;
    border: 1px solid var(--ed-border);
    border-radius: var(--ed-radius-md);
    background: #fbfcfe;
}

.confirmation-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #e8edf3;
}

.confirmation-row:last-child {
    border-bottom: 0;
}

.confirmation-row span {
    color: var(--ed-muted);
}

.confirmation-row i {
    margin-right: 8px;
    color: var(--ed-navy);
}

/* Footer */

.booking-footer {
    padding: 22px 0;
    color: #667085;
    border-top: 1px solid var(--ed-border);
    background: rgba(255, 255, 255, 0.88);
}

.booking-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.85rem;
}

.booking-footer-links {
    display: flex;
    gap: 20px;
}

.booking-footer a {
    color: inherit;
    text-decoration: none;
}

.booking-footer a:hover {
    color: var(--ed-wine);
}

/* Loading */

.is-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.72;
}

.is-loading::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 30px;
    height: 30px;
    margin: auto;
    border: 3px solid rgba(8, 31, 61, 0.18);
    border-top-color: var(--ed-navy);
    border-radius: 50%;
    animation: booking-spin 0.7s linear infinite;
}

@keyframes booking-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */

@media (max-width: 899.98px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

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

    .booking-sidebar {
        position: static;
        order: 2;
    }

    .booking-main {
        order: 1;
    }

    .booking-summary {
        display: grid;
        grid-template-columns: 260px 1fr;
    }

    .booking-summary-top {
        align-items: center;
    }

    .summary-help {
        grid-column: 1 / -1;
    }

    .date-time-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {

    .service-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card-image {
        height: 175px;
    }

    .service-card-body {
        padding: 20px;
    }

    .service-card-title {
        font-size: 1.08rem;
    }

    .service-card-description {
        font-size: 0.88rem;
    }

    .booking-header .navbar {
        min-height: 68px;
    }

    .booking-logo {
        height: 40px;
        max-width: 145px;
    }

    .booking-brand-name {
        font-size: 0.95rem;
    }

    .booking-brand-tagline {
        font-size: 0.7rem;
    }

    .booking-progress {
        padding: 14px;
    }

    .booking-progress-copy strong {
        display: none;
    }

    .booking-progress-copy {
        min-width: 45px;
    }

    .booking-progress-divider {
        margin: 0 8px;
    }

    .booking-summary {
        display: block;
    }

    .booking-content-wrap {
        padding: 26px 20px;
    }
.time-slot-list {
        grid-template-columns: 1fr;
    }

    .booking-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .booking-actions .btn {
        width: 100%;
    }

    .booking-footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .booking-footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .confirmation-row {
        flex-direction: column;
        gap: 4px;
    }
}

@media (max-width: 479.98px) {
    .booking-progress-copy {
        display: none;
    }

    .booking-progress-number {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .calendar-card,
    .time-slot-panel {
        padding: 16px;
    }

    .calendar-day {
        min-height: 38px;
        border-radius: 9px;
        font-size: 0.84rem;
    }
}

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









/* =========================================================
   Shared-site navbar integration — booking pages
   The main navbar now comes from the website shared partial.
   ========================================================= */

.booking-context-bar {
    position: relative;
    z-index: 8;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(90deg, #081f3d 0%, #0e315c 60%, #174b73 100%);
    box-shadow: 0 8px 24px rgba(8, 31, 61, 0.12);
}

.booking-context-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 48px;
    padding: 0.55rem clamp(1rem, 4vw, 3.5rem);
}

.booking-context-title,
.booking-context-links,
.booking-context-links a {
    display: flex;
    align-items: center;
}

.booking-context-title {
    gap: 9px;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.booking-context-title i {
    color: var(--ed-teal);
}

.booking-context-links {
    gap: 24px;
}

.booking-context-links a {
    gap: 7px;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 0.80rem;
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
}

.booking-context-links a:hover,
.booking-context-links a:focus-visible {
    color: #ffffff;
    transform: translateY(-1px);
}

.booking-context-links i {
    color: var(--ed-teal);
}

.booking-context-links strong {
    color: #ffffff;
    font-weight: 700;
}

/* The old standalone booking header is no longer rendered. */
.booking-header {
    display: none;
}

@media (max-width: 767.98px) {
    .booking-context-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
        padding-top: 0.7rem;
        padding-bottom: 0.7rem;
    }

    .booking-context-links {
        width: 100%;
        flex-wrap: wrap;
        gap: 8px 18px;
    }

    .booking-context-links a {
        font-size: 0.75rem;
    }
}

@media (max-width: 479.98px) {
    .booking-context-links a:last-child strong {
        display: none;
    }

    .booking-context-links a:last-child::after {
        content: "Support";
        font-weight: 700;
    }
}
