
    .booking-mode-strip {
      display: none;
    }
    .booking-mode-pill {
      border: 1px solid rgba(14, 165, 233, 0.18);
      border-radius: 14px;
      background: #e0f2fe;
      color: var(--primary-deep);
      font-weight: 700;
      padding: 0.5rem 0.75rem;
      text-align: center;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
      font-size: 0.9rem;
    }
    .booking-mode-pill.is-active {
      background: linear-gradient(180deg, #ecfeff 0%, #dbeafe 100%);
      border-color: rgba(14, 165, 233, 0.28);
    }
    .booking-mode-pill.is-placeholder {
      background: #f8fafc;
      color: #64748b;
      border-color: rgba(148, 163, 184, 0.26);
      opacity: 1;
      cursor: not-allowed;
    }
    .booking-mode-pill span {
      display: block;
      margin-top: 0.08rem;
      font-size: 0.68rem;
      font-weight: 600;
      color: #64748b;
    }
    .booking-progress-shell {
      margin-bottom: 1rem;
      padding: 0.9rem 1rem 1rem;
      border-radius: 18px;
      background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
      border: 1px solid rgba(148, 163, 184, 0.18);
    }
    .booking-progress-meta {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 0.75rem;
      margin-bottom: 0.55rem;
      font-size: 0.86rem;
      color: #64748b;
    }
    .booking-progress-meta strong {
      color: #0f172a;
      font-size: 0.98rem;
    }
    .booking-progress-bar {
      height: 8px;
      border-radius: 999px;
      background: #e2e8f0;
      overflow: hidden;
    }
    .booking-progress-bar span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, #0ea5e9 0%, #38bdf8 100%);
      transition: width 180ms ease;
    }
    .booking-progress-labels {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.5rem;
      margin-top: 0.55rem;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #94a3b8;
    }
    .booking-progress-labels .is-active {
      color: var(--primary-deep);
      font-weight: 700;
    }
    .booking-journey-sheet {
      position: relative;
      margin-top: -18px;
      padding: 0.9rem 1rem 1rem;
      border-radius: 24px 24px 0 0;
      background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,251,255,0.98) 100%);
      border: 1px solid rgba(148, 163, 184, 0.18);
      box-shadow: 0 -8px 22px rgba(15, 23, 42, 0.07);
      backdrop-filter: blur(10px);
    }
    .booking-search-stack {
      position: relative;
    }
    .booking-search-input-wrap {
      position: relative;
    }
    .booking-box-chip {
      position: absolute;
      top: 0.38rem;
      left: 0.8rem;
      z-index: 2;
      color: #64748b;
      font-size: 0.64rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      pointer-events: none;
    }
    .booking-search-input-wrap .form-input {
      min-height: 48px;
      border-radius: 16px;
      padding: 1.35rem 1rem 0.5rem 0.8rem;
      background: #ffffff;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.85), 0 8px 18px rgba(15, 23, 42, 0.05);
    }
    .booking-search-results {
      position: absolute;
      left: 0;
      right: 0;
      top: calc(100% + 0.45rem);
      z-index: 8;
      border: 1px solid rgba(148, 163, 184, 0.2);
      border-radius: 18px;
      background: #fff;
      box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
      overflow: hidden;
      max-height: 280px;
      overflow-y: auto;
    }
    .booking-map-search-panel {
      position: relative;
      margin-top: 0;
      padding: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      backdrop-filter: none;
      pointer-events: auto;
    }
    .booking-map-route-fields {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      grid-template-areas:
        "search swap"
        "airport swap";
      gap: 0.55rem;
      align-items: stretch;
    }
    .booking-map-search-field {
      grid-area: search;
    }
    .booking-map-airport-field {
      grid-area: airport;
    }
    .booking-map-swap-btn {
      grid-area: swap;
      align-self: center;
    }
    .booking-map-panel-toggle {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 4;
      width: 30px;
      height: 22px;
      border: 1px solid rgba(15, 23, 42, 0.12);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
      cursor: pointer;
      align-items: center;
      justify-content: center;
      padding: 0;
    }
    .booking-map-panel-toggle-icon {
      width: 12px;
      height: 8px;
      border: 1.5px solid #334155;
      border-radius: 2px;
      display: block;
      position: relative;
    }
    .booking-map-panel-toggle-icon::before {
      content: '';
      position: absolute;
      inset: 2px 2px auto auto;
      width: 4px;
      height: 2px;
      background: #334155;
      border-radius: 1px;
    }
    .booking-map-search-panel.is-collapsed .booking-map-route-fields,
    .booking-map-search-panel.is-collapsed #locationSearchStatus {
      display: none;
    }
    .booking-map-search-panel.is-from-airport .booking-map-route-fields {
      grid-template-areas:
        "airport swap"
        "search swap";
    }
    .booking-map-route-field {
      min-width: 0;
    }
    .booking-map-fixed-value {
      min-height: 44px;
      display: flex;
      align-items: center;
      padding: 1.15rem 0.85rem 0.45rem;
      border-radius: 14px;
      background: rgba(239, 246, 255, 0.95);
      border: 1px solid rgba(37, 99, 235, 0.12);
      color: #1d4ed8;
      font-size: 0.86rem;
      font-weight: 700;
      position: relative;
    }
    .booking-map-fixed-value::before {
      content: attr(data-box-label);
      position: absolute;
      top: 0.38rem;
      left: 0.85rem;
      color: #64748b;
      font-size: 0.64rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .booking-map-step-hint {
      margin: -0.15rem 0 1rem;
      color: #475569;
      font-size: 0.84rem;
      line-height: 1.4;
    }
    .booking-date-input-wrap {
      position: relative;
    }
    .booking-date-time-row {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.95fr) auto;
      gap: 0.65rem;
      align-items: stretch;
    }
    .booking-date-time-row > div {
      min-width: 0;
    }
    .booking-date-time-row .form-input {
      width: 100%;
      min-width: 0;
      text-align: left;
    }
    .booking-return-toggle {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      border: 1px solid rgba(14, 165, 233, 0.18);
      border-radius: 999px;
      background: #f8fbff;
      color: var(--primary-deep);
      font-size: 0.78rem;
      font-weight: 700;
      padding: 0.22rem 0.6rem;
      cursor: pointer;
    }
    .booking-return-toggle-inline {
      width: auto;
      min-height: 46px;
      justify-content: center;
      padding: 0.22rem 0.8rem;
      border-radius: 16px;
    }
    .booking-return-toggle-cell {
      display: flex;
      align-items: stretch;
      justify-content: flex-end;
    }
    .booking-return-toggle-cell .booking-return-toggle {
      width: auto;
      min-width: 92px;
    }
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    .booking-map-swap-btn {
      width: 46px;
      height: 46px;
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.1rem;
      border: 0;
      border-radius: 16px;
      background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
      cursor: pointer;
    }
    .swap-arrow {
      display: block;
      font-size: 1.15rem;
      line-height: 1;
      font-weight: 800;
    }
    .swap-arrow-up {
      color: #16a34a;
    }
    .swap-arrow-down {
      color: #dc2626;
    }
    .booking-search-result {
      display: block;
      width: 100%;
      padding: 0.85rem 1rem;
      border: 0;
      border-bottom: 1px solid rgba(226, 232, 240, 0.9);
      background: #fff;
      text-align: left;
      cursor: pointer;
    }
    .booking-search-result:last-child {
      border-bottom: 0;
    }
    .booking-search-result:hover,
    .booking-search-result:focus {
      background: #f8fbff;
      outline: none;
    }
    .booking-search-result-title {
      display: block;
      color: #0f172a;
      font-weight: 700;
      font-size: 0.95rem;
      margin-bottom: 0.16rem;
    }
    .booking-search-result-meta {
      display: block;
      color: #64748b;
      font-size: 0.78rem;
      line-height: 1.35;
    }
    .booking-legacy-zone-fields {
      display: none !important;
    }
    .booking-summary-quiet {
      background: #f8fafc;
      border-radius: 18px;
      padding: 1rem 1rem 0.95rem;
      border: 1px solid rgba(148, 163, 184, 0.2);
      margin-bottom: 1rem;
    }
    .booking-vehicle-inline {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      flex-wrap: wrap;
    }
    .booking-vehicle-inline .car-title {
      color: #0f172a;
      font-weight: 700;
    }
    .booking-vehicle-inline .car-extra {
      display: inline-flex;
      align-items: center;
      gap: 0.22rem;
      color: #475569;
      font-size: 0.84rem;
      font-weight: 700;
    }
    .booking-vehicle-inline .icon {
      width: 14px;
      height: 14px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .booking-confirmed-card {
      border-radius: 24px;
      padding: 1.25rem;
      background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
      border: 1px solid rgba(14, 165, 233, 0.14);
      box-shadow: 0 16px 36px rgba(14, 165, 233, 0.08);
    }
    .booking-confirmed-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.35rem 0.7rem;
      border-radius: 999px;
      background: #ecfeff;
      color: #0f766e;
      font-size: 0.76rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 0.8rem;
    }
    .booking-confirmed-card h2 {
      margin-bottom: 0.4rem;
    }
    .booking-confirmed-card .form-actions {
      margin-top: 1rem;
    }
    .booking-confirmed-card .booking-summary {
      margin-bottom: 0.85rem;
    }
    .booking-addon-overlay {
      position: fixed;
      inset: 0;
      z-index: 80;
      display: grid;
      place-items: center;
      padding: 1rem;
    }
    .booking-addon-overlay.hidden {
      display: none !important;
    }
    .booking-addon-overlay-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(15, 23, 42, 0.42);
      backdrop-filter: blur(6px);
    }
    .booking-addon-overlay-card {
      position: relative;
      width: min(100%, 460px);
      border-radius: 24px;
      padding: 1.1rem;
      background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
      border: 1px solid rgba(14, 165, 233, 0.12);
      box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
      display: grid;
      gap: 0.9rem;
    }
    .booking-addon-overlay-head h3 {
      margin: 0;
      font-size: 1.05rem;
      line-height: 1.25;
    }
    .booking-addon-success-list {
      margin: 0;
      padding-left: 1.1rem;
      display: grid;
      gap: 0.3rem;
      color: var(--text);
    }
    .booking-addon-success-list li {
      margin: 0;
    }
    .booking-summary-addon-only .summary-line {
      margin-bottom: 0;
    }
    .booking-summary-id-only {
      margin-bottom: 0.85rem;
    }
    .summary-line-strong .summary-value {
      font-weight: 800;
      letter-spacing: 0.02em;
    }
    .addon-grid-compact {
      grid-template-columns: 1fr;
      gap: 0.7rem;
      margin-top: 0.1rem;
    }
    .addon-card-compact {
      padding: 0.8rem 0.9rem;
      min-height: 0;
      border-radius: 18px;
    }
    .addon-header-compact {
      margin-bottom: 0.35rem;
      align-items: center;
      gap: 0.75rem;
    }
    .addon-copy {
      min-width: 0;
      flex: 1 1 auto;
    }
    .addon-copy h3 {
      margin: 0;
      font-size: 0.98rem;
      line-height: 1.2;
    }
    .addon-card-compact .addon-desc {
      margin: 0.18rem 0 0;
      font-size: 0.8rem;
      line-height: 1.3;
      min-height: 0;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .addon-card-bundle {
      background: linear-gradient(180deg, #f8fbff 0%, #eef7ff 100%);
      border-color: rgba(14, 165, 233, 0.22);
    }
    .addon-actions-row-compact {
      align-items: center;
      justify-content: flex-end;
      gap: 0.45rem;
      margin-top: 0.15rem;
    }
    .addon-inline-btn {
      min-width: 84px;
      min-height: 34px;
      padding: 0.45rem 0.78rem;
      border-radius: 999px;
      border: 1px solid rgba(14, 165, 233, 0.22);
      background: #e0f2fe;
      color: var(--primary-deep);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-weight: 700;
      font-size: 0.84rem;
      line-height: 1;
      transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
    }
    .addon-inline-btn:hover {
      transform: translateY(-1px);
    }
    .addon-inline-btn.is-selected {
      background: #0284c7;
      border-color: #0284c7;
      color: #fff;
    }
    .booking-addon-total {
      margin-top: 0.8rem;
      padding: 0.72rem 0.9rem;
      border-radius: 16px;
      background: #eef7ff;
      border: 1px solid rgba(14, 165, 233, 0.14);
      color: #0f172a;
      font-size: 0.9rem;
      font-weight: 700;
      text-align: center;
    }

    /* Return fare column in Step-2 (only visible when return trip exists) */
    .return-fare {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 2px;
      padding-left: 0.35rem;
      border-left: 1px solid var(--border-soft);
      min-width: 0;
      flex: 0 0 auto;
    }
    .return-row {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 4px;
    }
    .return-fare input[type="radio"] {
      margin: 0;
    }
    .return-price {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--primary-deep);
      line-height: 1.1;
      white-space: nowrap;
      min-width: 4.6ch;
      text-align: right;
      display: inline-block;
      font-variant-numeric: tabular-nums;
    }
    .return-label {
      font-size: 0.7rem;
      color: var(--text-muted);
      line-height: 1;
      white-space: nowrap;
    }
    /* Success confetti */
    .confetti-container {
      position: fixed;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
      z-index: 9999;
    }
    .confetti-piece {
      position: absolute;
      top: -12px;
      display: block;
      width: 8px;
      height: 12px;
      background: #0ea5e9;
      opacity: 0.9;
      animation: confetti-fall 1400ms ease-out forwards;
      border-radius: 2px;
    }
    @keyframes confetti-fall {
      0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
        opacity: 1;
      }
      100% {
        transform: translate3d(var(--confetti-x, 0px), 110vh, 0) rotate(260deg);
        opacity: 0;
      }
    }
    .pill-toggle {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .pill-toggle-option {
      display: inline-flex;
      align-items: center;
      margin: 0;
      cursor: pointer;
    }
    .pill-toggle-option input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }
    .pill-toggle-option span {
      display: inline-flex;
      align-items: center;
      padding: 0.35rem 0.85rem;
      border-radius: 999px;
      border: 1px solid var(--border-soft);
      background: #f8fafc;
      color: var(--text-muted);
      font-size: 0.9rem;
      font-weight: 600;
      line-height: 1;
      transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
    }
    .pill-toggle-option input:checked + span {
      background: #e0f2fe;
      border-color: #7dd3fc;
      color: var(--primary-deep);
    }
    .addon-price-stack {
      display: inline-flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.18rem;
    }
    .addon-price-current {
      font-size: 0.98rem;
      font-weight: 800;
      color: var(--primary-deep);
      line-height: 1.1;
      font-variant-numeric: tabular-nums;
    }
    .addon-price-compare {
      font-size: 0.78rem;
      color: var(--text-muted);
      line-height: 1.1;
      white-space: nowrap;
    }
    .addon-price-compare s {
      color: #94a3b8;
      margin-left: 0.18rem;
      font-variant-numeric: tabular-nums;
    }
    .addon-price-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.2rem 0.5rem;
      border-radius: 999px;
      background: #ecfeff;
      color: #0f766e;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.01em;
    }
    .addon-grid {
      display: grid;
      gap: 1rem;
    }
    .addon-card {
      border: 1px solid rgba(15, 23, 42, 0.09);
      border-radius: 22px;
      background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
      box-shadow: 0 18px 42px rgba(14, 165, 233, 0.08);
      padding: 1rem 1rem 0.95rem;
      transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
    }
    @media (max-width: 960px) {
      .booking-journey-sheet {
        margin-top: -18px;
        padding: 0.9rem 0.9rem 1rem;
        border-radius: 24px 24px 0 0;
      }
      .booking-fixed-chip {
        position: static;
        transform: none;
        margin-top: 0.55rem;
        pointer-events: auto;
      }
    }
    .addon-card.is-selected {
      border-color: #38bdf8;
      box-shadow: 0 20px 44px rgba(14, 165, 233, 0.14);
      transform: translateY(-1px);
    }
    .addon-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 0.55rem;
    }
    .addon-header h3 {
      margin: 0;
      font-size: 1.05rem;
    }
    .addon-desc {
      margin: 0;
      color: var(--text-muted);
      line-height: 1.45;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: 2.9em;
    }
    .addon-actions-row {
      margin-top: 0.85rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.8rem;
    }
    .addon-icon-actions {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      margin-left: auto;
    }
    .addon-icon-btn {
      width: 38px;
      height: 38px;
      border-radius: 999px;
      border: 1px solid rgba(14, 165, 233, 0.18);
      background: #e0f2fe;
      color: var(--primary-deep);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      cursor: pointer;
      font-weight: 800;
      font-size: 0.95rem;
      transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
    }
    .addon-icon-btn:hover {
      transform: translateY(-1px);
    }
    .addon-select-btn.is-selected {
      background: #0284c7;
      border-color: #0284c7;
      color: #fff;
    }
    .addon-select-btn.is-selected span {
      transform: scale(1.05);
    }
    .addon-buddy-options-compact {
      display: inline-flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      margin: 0;
    }
    .addon-buddy-options-compact .buddy-option span {
      font-size: 0.84rem;
      padding: 0.45rem 0.8rem;
    }
    #addonAssistStatus {
      margin: 0;
      color: #0f766e;
      font-size: 0.8rem;
    }

    @media (max-width: 640px) {
      .booking-map-canvas {
        height: 232px;
      }
      .booking-map-overlay {
        top: 0.65rem;
        left: 0.65rem;
        right: 0.65rem;
      }
      .booking-map-overlay-text {
        max-width: calc(100% - 0.5rem);
      }
      .booking-map-search-panel {
        padding: 0.55rem;
      }
      .booking-map-panel-toggle {
        top: 0.55rem;
        left: 0.55rem;
      }
      .booking-map-route-fields {
        grid-template-columns: minmax(0, 1fr) auto;
      }
      .booking-date-time-row {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr) auto;
      }
      .booking-mode-strip {
        grid-template-columns: 1fr 1fr;
      }
      .return-fare {
        padding-left: 0.25rem;
        border-left: 1px solid rgba(148, 163, 184, 0.4);
      }
      .addon-actions-row {
        align-items: flex-start;
      }
    }

    @media (max-width: 420px) {
      .booking-date-time-row {
        grid-template-columns: minmax(0, 1fr) minmax(72px, 0.82fr) auto;
        gap: 0.45rem;
      }
      .booking-date-time-row .form-input {
        padding-left: 0.72rem;
        padding-right: 0.72rem;
        font-size: 0.93rem;
      }
      .booking-return-toggle-inline {
        min-height: 44px;
        padding: 0.2rem 0.62rem;
        font-size: 0.74rem;
      }
    }

    .assist-quick-group {
      display: none;
      align-items: center;
      gap: 6px;
    }

    .assist-quick {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .assist-quick-icon {
      font-weight: 700;
      font-size: 14px;
    }

    .assist-section {
      padding-top: 2.5rem;
    }

    .assist-card {
      background: #ffffff;
      border-radius: 18px;
      padding: 1.5rem;
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
      margin: 0 auto;
      width: 100%;
      max-width: 760px;
    }

    .assist-result {
      margin-top: 1rem;
      border: 1px solid rgba(148, 163, 184, 0.3);
      border-radius: 16px;
      padding: 1rem 1.2rem;
      background: #f8fafc;
    }

    .assist-result-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      font-size: 0.95rem;
      margin-bottom: 0.8rem;
    }

    .assist-status {
      font-weight: 600;
      color: #0f766e;
    }

    .assist-result-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 0.75rem;
      font-size: 0.95rem;
    }

    .assist-label {
      display: block;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #64748b;
      margin-bottom: 0.2rem;
    }

    .assist-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 1rem;
    }

      .assist-flight-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 1rem;
      }

      .assist-flight-title {
        font-size: 1.1rem;
      }

      .assist-flight-sub {
        color: #64748b;
        font-size: 0.9rem;
        margin-top: 0.2rem;
      }

      .assist-status-chip {
        font-weight: 600;
        font-size: 0.75rem;
        text-transform: uppercase;
        padding: 0.25rem 0.6rem;
        border-radius: 999px;
        background: #ecfeff;
        color: #0f766e;
        border: 1px solid rgba(15, 118, 110, 0.2);
      }

      .assist-status-delayed {
        background: #fef2f2;
        color: #b91c1c;
        border-color: rgba(185, 28, 28, 0.2);
      }

      .assist-status-warning {
        background: #fff7ed;
        color: #c2410c;
        border-color: rgba(194, 65, 12, 0.2);
      }

      .assist-flight-body {
        margin-top: 1rem;
        padding: 1rem;
        background: #f8fafc;
        border-radius: 14px;
      }

      .assist-flight-route {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 1rem;
        align-items: center;
      }

      .assist-route-airport {
        text-align: center;
      }

      .assist-route-iata {
        font-size: 1.5rem;
        font-weight: 700;
      }

      .assist-route-time {
        font-size: 1.35rem;
        font-weight: 600;
        margin-top: 0.3rem;
      }

            .assist-flight-note {
        margin-top: 0.75rem;
        padding: 0.75rem 1rem;
        border-radius: 12px;
        background: #ffffff;
        border: 1px solid rgba(148, 163, 184, 0.25);
        color: #334155;
        font-size: 0.85rem;
        line-height: 1.4;
      }
      .assist-route-name {
        font-size: 0.85rem;
        color: #475569;
        margin-top: 0.2rem;
      }
      .assist-route-label {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: #94a3b8;
        margin-bottom: 0.2rem;
      }
      .assist-route-subtime {
        font-size: 0.75rem;
        color: #94a3b8;
        margin-top: 0.2rem;
      }.assist-route-meta {
        font-size: 0.75rem;
        color: #64748b;
        margin-top: 0.25rem;
      }

      .assist-route-line {
        font-size: 0.85rem;
        color: #334155;
        padding: 0 0.75rem;
        border-top: 1px solid rgba(148, 163, 184, 0.4);
        border-bottom: 1px solid rgba(148, 163, 184, 0.4);
        text-align: center;
        min-width: 100px;
      }

      .assist-flight-meta {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 0.75rem;
        margin-top: 1rem;
      }

      .assist-flight-meta span:last-child {
        font-weight: 600;
      }

    @media (max-width: 720px) {
      .assist-quick-group {
        display: inline-flex;
      }
    }

    @media (max-width: 640px) {
      .assist-actions {
        flex-direction: column;
      }
    }

    @media (min-width: 960px) {
      .assist-card {
        max-width: 560px;
      }
    }

    .booking-map-shell {
      position: relative;
      margin-bottom: 0.75rem;
      border: 1px solid rgba(148, 163, 184, 0.18);
      border-radius: 22px;
      background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
      overflow: hidden;
      box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
    }
    .booking-map-overlay {
      position: absolute;
      top: 0.55rem;
      left: 0.55rem;
      right: 0.55rem;
      z-index: 4;
      pointer-events: none;
    }
    .booking-map-overlay-text {
      display: none !important;
    }
    .booking-map-canvas {
      height: 286px;
      background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.08), transparent 38%),
        linear-gradient(180deg, #f8fafc 0%, #eef6ff 100%);
    }

    .latest-guides-section {
      border-top: 1px solid rgba(148, 163, 184, 0.18);
    }

    .latest-guides-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .latest-guide-card {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      min-height: 100%;
      padding: 1rem;
      border: 1px solid rgba(148, 163, 184, 0.24);
      border-radius: 22px;
      background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
      box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
      color: #0f172a;
      text-decoration: none;
      transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
    }

    .latest-guide-card:hover {
      transform: translateY(-2px);
      border-color: rgba(14, 165, 233, 0.42);
      box-shadow: 0 20px 44px rgba(14, 116, 144, 0.12);
    }

    .latest-guide-image {
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: 16px;
      object-fit: cover;
      background:
        radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.26), transparent 38%),
        linear-gradient(135deg, #e0f2fe 0%, #f8fafc 48%, #dcfce7 100%);
    }

    .latest-guide-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      color: #64748b;
      font-size: 0.78rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .latest-guide-card h3 {
      margin: 0;
      font-size: 1.05rem;
      line-height: 1.25;
      color: #0f172a;
    }

    .latest-guide-card p {
      margin: 0;
      color: #475569;
      line-height: 1.55;
      font-size: 0.92rem;
    }

    .latest-guide-read {
      margin-top: auto;
      color: #0284c7;
      font-weight: 800;
      font-size: 0.9rem;
    }

    .latest-guides-actions {
      display: flex;
      justify-content: center;
      margin-top: 1rem;
    }

    @media (max-width: 860px) {
      .latest-guides-grid {
        grid-template-columns: 1fr;
      }

      .latest-guide-card {
        border-radius: 18px;
      }
    }
