/* =══════════════════════════════════════════════════════════════════════════
   1 · TAILWIND UTILITIES USED BY Sidebar/index.tsx
   Only the handful the component actually applies, so the markup below can
   stay a 1:1 copy of the JSX class strings.
   ═══════════════════════════════════════════════════════════════════════ */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.min-w-0 { min-width: 0; }
.h-full { height: 100%; }
.h-9 { height: 36px; }
.h-4 { height: 16px; }
.w-4 { width: 16px; }
.gap-1\.5 { gap: 6px; }
.gap-2 { gap: 8px; }
.pt-0\.5 { padding-top: 2px; }
.pt-3 { padding-top: 12px; }
.px-1 { padding-left: 4px; padding-right: 4px; }
.px-3 { padding-left: 12px; padding-right: 12px; }
.px-3\.5 { padding-left: 14px; padding-right: 14px; }
.py-2 { padding-top: 8px; padding-bottom: 8px; }
.py-3 { padding-top: 12px; padding-bottom: 12px; }
.py-10 { padding-top: 40px; padding-bottom: 40px; }
.pb-3 { padding-bottom: 12px; }
.px-2\.5 { padding-left: 10px; padding-right: 10px; }
.py-1\.5 { padding-top: 6px; padding-bottom: 6px; }
.mb-1\.5 { margin-bottom: 6px; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.relative { position: relative; }
.inset-0 { inset: 0; }
.left-0 { left: 0; }
.top-0 { top: 0; }
.block { display: block; }
.overflow-hidden { overflow: hidden; }
.rounded-lg { border-radius: 8px; }
.rounded-full { border-radius: 9999px; }
.rounded-\[10px\] { border-radius: 10px; }
.bg-gray-900 { background: #111827; }
.text-white { color: #fff; }
.whitespace-nowrap { white-space: nowrap; }
.pointer-events-none { pointer-events: none; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1); }
.object-cover { object-fit: cover; }
.tabular-nums { font-variant-numeric: tabular-nums; }
.z-150 { z-index: 150; }
.z-160 { z-index: 160; }
.z-9999 { z-index: 9999; }
.animate-pulse { animation: ttwPulse 2s cubic-bezier(0.4,0,0.6,1) infinite; }
.animate-spin { animation: ttwSpin 1s linear infinite; }
@keyframes ttwPulse { 0%,100% { opacity: 1 } 50% { opacity: .5 } }
@keyframes ttwSpin { to { transform: rotate(360deg) } }

/* containers/itinerary/typography.css — the one class the tooltip borrows */
.ttw-type-small {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.5;
}

/* styles/globals.css — responsive show/hide helpers the nav depends on.
   Breakpoints keep their .98 sub-pixels: they are the exact complements of
   Tailwind's md (768) and lg (1024), and a flat value makes both sides match
   at that one width. */
@media (max-width: 767.98px) { .ttw-desktop-only { display: none !important; } }
@media (max-width: 1023.98px) { .ttw-nav-lockup-full { display: none !important; } }
@media (min-width: 1024px) { .ttw-nav-lockup-mark { display: none !important; } }

/* =══════════════════════════════════════════════════════════════════════════
   2 · KAIRA SIDEBAR — verbatim from styles/kaira-sidebar.css
   Tokens live on `.kaira-scope`, never `:root`, so the Kaira palette cannot
   leak into the rest of the app.
   ═══════════════════════════════════════════════════════════════════════ */
.kaira-scope {
  --k-yellow: #f7e700;

  --k-ink: #0b1220;
  --k-ink-3: #445069;
  --k-ink-4: #8a93a6;
  --k-ink-5: #b8becc;
  --k-ink-6: #dfe2ea;

  --k-paper-2: #f4f3ec;
  --k-white: #ffffff;
  --k-line: #ececec;

  --k-red: #b84034;
  --k-red-soft: #fff1ee;
  --k-green: #1f8a5a;

  --k-r-md: 10px;
  --k-r-pill: 999px;
  --k-t-fast: 0.15s;
  --k-ease-out: cubic-bezier(0.2, 0.7, 0.3, 1);

  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--k-ink);
  background: var(--k-white);
}

/* Only `width` transitions — running border/paint through the same 300ms is
   extra work per frame for no visible gain. */
.kaira-sidebar {
  border-right: 1px solid var(--k-line);
  transition: width 0.3s var(--k-ease-out);
}
.kaira-sidebar.is-collapsed { cursor: pointer; }

/* Two stacked layers, each pinned to its own final width (76 / 288), cross-faded
   on toggle. Content laid out inside the *animating* width re-flowed every
   frame — labels wrapped, history rows squeezed to a character or two. At a
   fixed width the layer is only clipped by `overflow: hidden`. */
.kaira-scope .kaira-sidebar-stage { position: relative; flex: 1; min-height: 0; }

.kaira-scope .kaira-sidebar-layer {
  position: absolute; top: 0; left: 0;
  display: flex; flex-direction: column; height: 100%;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.12s var(--k-ease-out), visibility 0s linear 0.12s;
}
.kaira-scope .kaira-sidebar-layer.is-active {
  opacity: 1; visibility: visible; pointer-events: auto;
  transition: opacity 0.2s var(--k-ease-out) 0.07s, visibility 0s;
}

@media (prefers-reduced-motion: reduce) {
  .kaira-sidebar,
  .kaira-scope .kaira-sidebar-layer,
  .kaira-scope .kaira-sidebar-layer.is-active,
  .kaira-scope .kaira-collapse-btn.kaira-logo-collapse,
  .kaira-scope .kaira-collapse-btn.kaira-logo-collapse.is-visible {
    transition-duration: 0.01ms;
    transition-delay: 0s;
  }
}

/* Mono eyebrow — dates, section labels */
.kaira-scope .kaira-mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ── Logo row ─────────────────────────────────────────────────────────── */
.kaira-scope .kaira-logo-row {
  display: flex; align-items: center; flex: none; position: relative;
  padding: 20px 18px 16px;
  border-bottom: 1px solid var(--k-line);
  margin-bottom: 12px;
  min-height: 71px;
}
/* The brand lives ABOVE the cross-fading layers and never changes opacity or
   identity — it is only ever clipped. Cross-fading two copies of the same mark
   dropped their shared pixels to near-zero mid-toggle, reading as a reload. */
.kaira-scope .kaira-brand-hit {
  display: flex; align-items: center; flex: none;
  width: calc(100% + 18px); margin-right: -18px;
}
.kaira-scope .kaira-brand-clip {
  display: flex; align-items: center;
  width: calc(100% - 18px); overflow: hidden;
}
.kaira-scope .kaira-brand { flex: none; cursor: pointer; }

.kaira-scope .kaira-collapse-btn.kaira-logo-collapse {
  position: absolute; top: 20px; bottom: 16px; right: 18px; margin: auto 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.1s var(--k-ease-out);
}
.kaira-scope .kaira-collapse-btn.kaira-logo-collapse.is-visible {
  opacity: 1; pointer-events: auto;
  transition: opacity 0.15s var(--k-ease-out) 0.18s,
              background var(--k-t-fast) var(--k-ease-out);
}

/* ── Collapse / expand chevron ────────────────────────────────────────── */
.kaira-scope .kaira-collapse-btn {
  display: flex; align-items: center; justify-content: center; flex: none;
  width: 26px; height: 26px;
  border: 1px solid var(--k-line); background: var(--k-white);
  border-radius: 8px; color: var(--k-ink-3); cursor: pointer;
  transition: background var(--k-t-fast) var(--k-ease-out);
}
.kaira-scope .kaira-collapse-btn.is-standalone {
  width: 42px; height: 42px; border-radius: var(--k-r-md);
}
.kaira-scope .kaira-collapse-btn:hover { background: var(--k-paper-2); }

/* ── New chat ─────────────────────────────────────────────────────────── */
.kaira-scope .kaira-newchat-btn {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--k-ink); background: var(--k-white); color: var(--k-ink);
  border-radius: var(--k-r-pill);
  font-family: inherit; font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
  cursor: pointer;
  transition: background var(--k-t-fast) var(--k-ease-out),
              color var(--k-t-fast) var(--k-ease-out);
}
.kaira-scope .kaira-newchat-btn .kaira-nc-icon {
  color: var(--k-ink);
  transition: color var(--k-t-fast) var(--k-ease-out);
}
.kaira-scope .kaira-newchat-btn:hover { background: var(--k-ink); color: var(--k-white); }
.kaira-scope .kaira-newchat-btn:hover .kaira-nc-icon { color: var(--k-yellow); }

/* Collapsed new-chat — solid ink pill */
.kaira-scope .kaira-newchat-icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--k-ink); background: var(--k-ink); color: var(--k-yellow);
  border-radius: var(--k-r-pill); cursor: pointer;
  transition: background var(--k-t-fast) var(--k-ease-out);
}
.kaira-scope .kaira-newchat-icon-btn:hover { background: var(--k-ink-3); }
.kaira-scope .kaira-newchat-icon-btn.is-sm { width: 34px; height: 34px; }

/* Mobile chat header close */
.kaira-scope .kaira-close-btn {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; flex: 0 0 24px; padding: 0;
  border: none; background: #0b1220; color: #ffffff;
  border-radius: var(--k-r-pill); cursor: pointer;
  transition: background var(--k-t-fast) var(--k-ease-out);
}
.kaira-scope .kaira-close-btn:hover { background: var(--k-ink-3); }

/* ── Generic collapsed icon button ───────────────────────────────────── */
.kaira-scope .kaira-icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: none; background: transparent; color: var(--k-ink-3);
  border-radius: var(--k-r-md); cursor: pointer;
  transition: background var(--k-t-fast) var(--k-ease-out);
}
.kaira-scope .kaira-icon-btn:hover { background: var(--k-paper-2); }
.kaira-scope .kaira-icon-btn.is-boxed {
  background: var(--k-white); border: 1px solid var(--k-line);
}
.kaira-scope .kaira-icon-btn.is-boxed:hover { background: var(--k-paper-2); }

/* ── Chat history ────────────────────────────────────────────────────── */
.kaira-scope .kaira-hist-header {
  display: flex; align-items: center; gap: 8px; flex: none;
  padding: 6px 22px 8px; color: var(--k-ink-4);
}
.kaira-scope .kaira-hist-scroll { flex: 1; overflow-y: auto; padding: 0 10px 10px; }
.kaira-scope .kaira-hist-scroll::-webkit-scrollbar { width: 6px; }
.kaira-scope .kaira-hist-scroll::-webkit-scrollbar-thumb {
  background: var(--k-ink-6); border-radius: var(--k-r-pill);
}
.kaira-scope .kaira-hist-scroll::-webkit-scrollbar-track { background: transparent; }
.kaira-scope .kaira-hist-group-label {
  padding: 12px 12px 6px; color: var(--k-ink-5); font-size: 10px;
}
.kaira-scope .kaira-hist-item {
  display: flex; align-items: center; gap: 8px; width: 100%;
  padding: 9px 12px;
  border: none; background: transparent; color: var(--k-ink-3);
  border-radius: var(--k-r-md);
  font-family: inherit; font-size: 13.5px; font-weight: 500; letter-spacing: -0.01em;
  cursor: pointer;
  transition: background var(--k-t-fast) var(--k-ease-out);
}
.kaira-scope .kaira-hist-item.is-active {
  background: var(--k-paper-2); color: var(--k-ink); font-weight: 600;
}
.kaira-scope .kaira-hist-item:hover { background: var(--k-paper-2); }
.kaira-scope .kaira-hist-title {
  flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis;
  white-space: nowrap; text-align: left;
}
/* Information, not chrome — stays visible rather than waiting on hover. */
.kaira-scope .kaira-hist-marker {
  display: inline-flex; align-items: center; flex: none; color: var(--k-green);
}
.kaira-scope .kaira-hist-time {
  flex: none; color: var(--k-ink-5); opacity: 0;
  transition: opacity var(--k-t-fast) var(--k-ease-out);
}
.kaira-scope .kaira-hist-item.is-active .kaira-hist-time,
.kaira-scope .kaira-hist-item:hover .kaira-hist-time { opacity: 1; }
@media (hover: none) { .kaira-scope .kaira-hist-time { opacity: 1; } }

/* ── Footer ──────────────────────────────────────────────────────────── */
.kaira-scope .kaira-footer {
  flex: none; border-top: 1px solid var(--k-line);
  padding: 10px; background: var(--k-white);
}
.kaira-scope .kaira-footer.is-collapsed { padding: 10px 0; }
.kaira-scope .kaira-footer-link {
  display: flex; align-items: center; gap: 11px; width: 100%;
  padding: 9px 10px; margin-bottom: 2px;
  border: none; background: transparent; color: var(--k-ink);
  border-radius: var(--k-r-md);
  font-family: inherit; font-size: 14px; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: background var(--k-t-fast) var(--k-ease-out);
}
.kaira-scope .kaira-footer-link:hover { background: var(--k-paper-2); color: var(--k-ink); }
.kaira-scope .kaira-footer-link .kaira-footer-icon { flex: none; color: var(--k-ink-3); }

/* "My trips" — the one place the brand yellow appears in the footer. */
.kaira-scope .kaira-trips-tile {
  display: flex; align-items: center; justify-content: center; flex: none;
  width: 26px; height: 26px; border-radius: 8px;
  background: var(--k-yellow); color: var(--k-ink);
}
.kaira-scope .kaira-trips-tile.is-lg {
  width: 34px; height: 34px; border-radius: var(--k-r-md);
}
.kaira-scope .kaira-logout-tile {
  display: flex; align-items: center; justify-content: center; flex: none;
  width: 26px; height: 26px; border-radius: 8px;
  background: var(--k-red-soft); color: var(--k-red);
}
.kaira-scope .kaira-count {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  min-width: 20px; height: 20px; padding: 0 6px;
  border-radius: var(--k-r-pill); background: var(--k-paper-2); color: var(--k-ink-3);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px; font-weight: 600; font-variant-numeric: tabular-nums;
}

/* ── Profile ─────────────────────────────────────────────────────────── */
.kaira-scope .kaira-profile-row {
  display: flex; align-items: center; gap: 11px;
  padding: 9px 10px; border-radius: var(--k-r-md);
}
.kaira-scope .kaira-avatar {
  display: flex; align-items: center; justify-content: center; flex: none;
  width: 34px; height: 34px; border-radius: 50%; overflow: hidden;
  background: linear-gradient(135deg, #3d4f7a, #0b1220);
  color: var(--k-white);
  font-size: 13px; font-weight: 700; letter-spacing: 0.02em; user-select: none;
}
.kaira-scope .kaira-profile-name {
  font-size: 14px; font-weight: 700; letter-spacing: -0.01em;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.kaira-scope .kaira-profile-meta { color: var(--k-ink-4); font-size: 10px; }

/* ── Log out ─────────────────────────────────────────────────────────── */
.kaira-scope .kaira-logout-btn {
  display: flex; align-items: center; gap: 11px; width: 100%;
  padding: 10px; margin-top: 4px;
  border: 1px solid var(--k-line); background: var(--k-white); color: var(--k-red);
  border-radius: var(--k-r-md);
  font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer;
  transition: background var(--k-t-fast) var(--k-ease-out);
}
.kaira-scope .kaira-logout-btn:hover { background: var(--k-red-soft); }

.kaira-scope .kaira-login-btn {
  display: flex; align-items: center; gap: 11px; width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--k-ink); background: var(--k-white); color: var(--k-ink);
  border-radius: var(--k-r-pill);
  font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer;
  transition: background var(--k-t-fast) var(--k-ease-out),
              color var(--k-t-fast) var(--k-ease-out);
}
.kaira-scope .kaira-login-btn:hover { background: var(--k-ink); color: var(--k-white); }

/* ── Mobile chat chrome (header bar + slide-in drawer) ───────────────── */
.kaira-scope.kaira-mheader {
  display: flex; align-items: center; justify-content: space-between; flex: none;
  padding: 10px 16px; border-bottom: 1px solid var(--k-line);
}
.kaira-scope .kaira-icon-btn.is-sm { width: 38px; height: 38px; }
.kaira-scope .kaira-icon-btn.is-sm.is-filled {
  width: 34px; height: 34px;
  border-radius: var(--k-r-pill); background: var(--k-paper-2);
}
.kaira-scope .kaira-icon-btn.is-sm.is-filled:hover { background: var(--k-ink-6); }
.kaira-scope.kaira-drawer { display: flex; flex-direction: column; height: 100%; }
.kaira-scope .kaira-drawer-head {
  display: flex; align-items: center; justify-content: space-between; flex: none;
  padding: 14px 12px 12px 18px; border-bottom: 1px solid var(--k-line);
}
.kaira-scope .kaira-drawer-title {
  display: flex; align-items: center; gap: 8px; color: var(--k-ink-4);
}

/* ── Profile menu (mobile avatar dropdown) ───────────────────────────── */
.kaira-scope.kaira-menu {
  padding: 6px; border: 1px solid var(--k-line); border-radius: var(--k-r-md);
  box-shadow: 0 8px 20px -10px rgba(11, 18, 32, 0.15); overflow: hidden;
}
.kaira-scope .kaira-menu-item {
  display: flex; align-items: center; gap: 11px; width: 100%;
  padding: 10px 12px;
  border: none; background: transparent; color: var(--k-ink);
  border-radius: var(--k-r-md);
  font-family: inherit; font-size: 14px; font-weight: 600;
  text-align: left; text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: background var(--k-t-fast) var(--k-ease-out);
}
.kaira-scope .kaira-menu-item:hover,
.kaira-scope .kaira-menu-item:active { background: var(--k-paper-2); color: var(--k-ink); }
.kaira-scope .kaira-menu-item .kaira-menu-icon { flex: none; color: var(--k-ink-3); }
.kaira-scope .kaira-menu-item.is-logout { color: var(--k-red); }
.kaira-scope .kaira-menu-item.is-logout:hover,
.kaira-scope .kaira-menu-item.is-logout:active { background: var(--k-red-soft); }

/* =══════════════════════════════════════════════════════════════════════════
   3 · NAVIGATION — NavigationMenu.module.scss, compiled
       (module hashes replaced with a stable `nav-` prefix)
   ═══════════════════════════════════════════════════════════════════════ */
.nav-wrap { width: 100%; background: #fff; }

.nav-menu {
  position: sticky; top: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 28px;
  max-width: 1240px; margin: 0 auto; width: 100%;

  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid #ececec;
  transition: all 0.35s ease;
}
@media (max-width: 768px) {
  .nav-menu { padding: 10px 16px; }
  /* JSX also carries `max-ph:!p-md max-ph:shadow-soft` — Tailwind ships in the
     global stylesheet, so it applies even before the async module CSS lands. */
  .nav-menu { padding: 16px !important; box-shadow: 0 4px 34px rgba(195,195,195,0.25); }
}

.nav-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
/* Both `display` toggles MUST stay !important: BrandLockup sets
   `display: inline-flex` inline, which otherwise outranks these class rules
   and leaves both lockups on screen at once. */
.nav-logo-full { display: inline-flex !important; }
.nav-logo-mark { display: none !important; }
/* 1023.98 — the exact complement of Tailwind's lg (min-width 1024). At a flat
   1024px the two disagreed on that single pixel. */
@media (max-width: 1023.98px) {
  .nav-logo-full { display: none !important; }
  .nav-logo-mark { display: inline-flex !important; }
}

.nav-menu-list {
  all: unset;
  display: flex; align-items: center; list-style: none; gap: 8px;
}
.nav-menu-list li { list-style: none; }
.nav-menu-list a {
  padding: 8px 14px; font-size: 14px; font-weight: 500;
  color: #445069; text-decoration: none;
  border-radius: 8px; transition: all 0.15s;
}
.nav-menu-list a:hover { color: #0b1220; background: #fafaf5; }
/* 767.98, not 768: the mobile block is gated by Tailwind `md:hidden`
   (min-width 768). Written as 768 on both sides, BOTH matched at exactly 768px
   and the nav lost its profile/login control entirely at that one width. */
@media (max-width: 767.98px) { .nav-menu-list { display: none; } }

/* "My Trips" / "Plan with Kaira" pills — the global .MediumIndigoButton class
   restyled through the nav root so the SCSS module stays pure. */
.nav-menu .MediumIndigoButton {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: #0f1a2e; color: #ffffff !important;
  border: 0; border-radius: 999px;
  font-size: 14px; font-weight: 600; text-decoration: none; cursor: pointer;
  transition: transform 0.15s ease;
}
.nav-menu .MediumIndigoButton:hover { transform: translateY(-1px); }
.nav-menu .MediumIndigoButton.w-fit { width: fit-content; }

/* Mobile-only avatar cluster (Tailwind `flex gap-2 md:hidden` in the JSX) */
.nav-mobile-cluster { display: flex; gap: 8px; }
@media (min-width: 768px) { .nav-mobile-cluster { display: none; } }

/* Mobile overlay + sidebar. Rendered unconditionally by the JSX and hidden by
   CSS alone; globals.css repeats the `display:none` (without !important) for
   the window before the async module chunk lands. */
.nav-mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.5); z-index: 200;
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.nav-mobile-sidebar {
  display: none;
  position: fixed; top: 0; right: 0;
  width: 300px; max-width: 80vw; height: 100vh;
  background: #0f1a2e; z-index: 300;
  flex-direction: column;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
}
/* Demo hook: `useMobileMenu` drives these open with GSAP inline styles. */
.nav-mobile-overlay.is-open { display: block; }
.nav-mobile-sidebar.is-open { display: flex; }

.nav-sidebar-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
/* Dark surface → use the on-dark lockup rather than inverting the on-light
   one; an invert filter would flatten the yellow "way" to white. */
.nav-sidebar-logo { display: inline-flex; }
.nav-close-button {
  background: none; border: none; color: #ffffff;
  font-size: 24px; cursor: pointer;
  padding: 4px 10px; border-radius: 50%;
  transition: background-color 0.3s ease;
}
.nav-close-button:hover { background-color: rgba(255, 255, 255, 0.08); }
.nav-close-button:focus { outline: none; }

.nav-sidebar-actions { padding: 24px; border-top: 1px solid rgba(255, 255, 255, 0.12); margin-top: auto; }
.nav-mobile-cta {
  width: 100%; padding: 14px;
  background: #f7e700; color: #0b1220;
  border: 0; border-radius: 999px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all 0.3s ease;
}
.nav-mobile-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(247, 231, 0, 0.45);
}
.nav-mobile-cta:focus { outline: none; }
@media (max-width: 480px) { .nav-mobile-sidebar { width: 280px; } }

/* ── Desktop profile pill (ProfileDropDown, `pill` variant) ──────────── */
.nav-profile { position: relative; width: fit-content; }
.nav-pill-trigger {
  display: flex; flex-direction: row; align-items: center; gap: 0.25rem;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem 0.25rem 0.25rem;
  border: 1px solid #ececec; border-radius: 999px; background: #fff;
  cursor: pointer; transition: all 0.15s ease;
}
/* ImageLoader wraps react-lazyload and drops inline border-radius, so the
   circle is clipped from this outer box we fully control. */
.nav-avatar {
  width: 2rem; height: 2rem;
  min-width: 2rem; min-height: 2rem; max-width: 2rem; max-height: 2rem;
  border-radius: 50%; overflow: hidden; flex-shrink: 0; cursor: pointer;
  position: relative; display: flex; align-items: center; justify-content: center;
}
.nav-avatar > * { border-radius: 50% !important; width: 100% !important; height: 100% !important; }
.nav-avatar img { width: 100% !important; height: 100% !important; object-fit: cover !important; border-radius: 50% !important; }
.nav-avatar-letter {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.95rem;
  text-transform: uppercase; user-select: none;
}
.nav-pill-name { font-size: 14px; font-weight: 400; line-height: 1.4; }

.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0.2rem;
  background-color: white; border-radius: 0.75rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 4px 16px 0px;
  width: 210px; max-height: 80vh; overflow-y: auto; z-index: 1000;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: all 0.2s ease-in-out;
}
.nav-dropdown.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-list { padding: 0.5rem 0; }
.nav-dropdown-item {
  padding: 0.85rem 18px;
  display: grid; grid-template-columns: 20px 1fr; column-gap: 12px;
  align-items: center;
  font-family: Poppins, "Inter", sans-serif; font-size: 14px; color: #01202b;
  cursor: pointer; transition: background-color 0.2s ease;
  text-decoration: none;
}
.nav-dropdown-item:hover { background-color: #f5f5f5; }
/* Pin every leading icon into the fixed 20px column so each label starts at
   the same offset. */
.nav-dropdown-item > *:first-child {
  width: 20px !important; height: 20px !important;
  min-width: 0; max-width: 20px; margin: 0 !important;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.nav-dropdown-item > *:first-child img { width: 100% !important; height: 100% !important; object-fit: contain; }
.nav-dropdown-item .is-head { background-color: #F8F8F8; }
.nav-dropdown-item.is-head { background-color: #F8F8F8; }

/* Logged-out desktop CTA — components/revamp/common/components/button, size="small" */
.nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 16px; min-height: 36px;
  border: 2px solid #333; border-radius: 8px;
  background-color: transparent; color: #333;
  font-size: 14px; font-weight: 500; font-family: inherit;
  cursor: pointer; transition: all 0.3s ease; outline: none;
  text-decoration: none; white-space: nowrap;
}
.nav-cta:hover {
  background-color: #333; color: #fff;
  transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.nav-cta:active { transform: translateY(0); box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); }

/* ── Mobile avatar + dropdown (components/navbar/mobile/Index.js) ────── */
.nav-mobile-menu { position: relative; display: flex; align-items: center; }
.nav-mobile-avatar-hit {
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  max-width: 48px; max-height: 48px; min-width: 48px; min-height: 48px;
}
.nav-mobile-avatar {
  width: 40px; height: 40px; min-width: 40px; min-height: 40px;
  border-radius: 50%; overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; background: #fff;
}
.nav-mobile-avatar > * { width: 100% !important; height: 100% !important; }
.nav-mobile-avatar img {
  width: 100% !important; height: 100% !important;
  object-fit: cover !important; border-radius: 50% !important;
}
.nav-mobile-dropdown {
  position: absolute; top: 100%; right: 0;
  background-color: white; border-radius: 0.5rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  width: 250px; max-height: 80vh; overflow-y: auto; z-index: 1000;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: all 0.2s ease-in-out;
}
.nav-mobile-dropdown.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-mobile-item {
  padding: 1rem 15px;
  display: flex; gap: 13px; align-items: center;
  font-family: Poppins, "Inter", sans-serif; font-size: 14px; color: #01202b;
  cursor: pointer; transition: background-color 0.2s ease; text-decoration: none;
}
.nav-mobile-item:hover { background-color: #f5f5f5; }
.nav-mobile-item.is-head { background-color: #F8F8F8; }

/* =══════════════════════════════════════════════════════════════════════════
   4 · NAV SEARCH — SearchInput.module.scss, compiled
   ═══════════════════════════════════════════════════════════════════════ */
.ns-trigger {
  flex: 1; max-width: 480px; margin: 0 28px;
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px 9px 16px;
  background: #fafaf5; border: 1px solid #ececec; border-radius: 999px;
  font-family: inherit; cursor: pointer; transition: all 0.18s; color: #8a93a6;
}
@media (max-width: 1100px) { .ns-trigger { max-width: 320px; margin: 0 16px; } }
@media (max-width: 768px)  { .ns-trigger { margin: 0 8px; padding: 9px 12px; } }
.ns-trigger:hover {
  background: white; border-color: #445069; color: #0b1220;
  box-shadow: 0 4px 14px -6px rgba(11, 18, 32, 0.14);
}
.ns-trigger svg { width: 15px; height: 15px; flex-shrink: 0; }
.ns-placeholder {
  flex: 1; text-align: left; font-size: 14px; color: #8a93a6;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ns-kbd {
  padding: 2px 7px; background: white; border: 1px solid #ececec; border-radius: 5px;
  font-family: "Instrument Serif", "Times New Roman", serif; font-style: italic;
  font-size: 11px; color: #445069; box-shadow: 0 1px 0 #ececec;
}
@media (max-width: 640px) { .ns-kbd { display: none; } }

.ns-panel {
  position: fixed; inset: 0; z-index: 1000;
  pointer-events: none; opacity: 0; transition: opacity 0.2s ease;
}
.ns-panel.is-open { pointer-events: auto; opacity: 1; }
.ns-backdrop {
  position: absolute; inset: 0;
  background: rgba(11, 18, 32, 0.42);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.ns-inner {
  position: relative; max-width: 720px; margin: 76px auto 0;
  background: white; border-radius: 22px;
  box-shadow: 0 28px 60px -20px rgba(11, 18, 32, 0.4);
  overflow: hidden;
  transform: translateY(-12px);
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.3, 1);
  max-height: calc(100vh - 120px);
  display: flex; flex-direction: column;
}
@media (max-width: 768px) { .ns-inner { margin: 56px 16px 0; max-height: calc(100vh - 80px); } }
.ns-panel.is-open .ns-inner { transform: translateY(0); }
.ns-input-row {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 22px; border-bottom: 1px solid #ececec; flex-shrink: 0;
}
.ns-input-row svg { width: 18px; height: 18px; color: #445069; flex-shrink: 0; }
.ns-input-row input {
  flex: 1; background: transparent; border: 0; outline: 0;
  font-family: inherit; font-size: 17px; color: #0b1220;
  letter-spacing: -0.01em; min-width: 0;
}
.ns-input-row input::placeholder { color: #8a93a6; }
.ns-close {
  padding: 4px 10px; background: #fafaf5; border: 0; border-radius: 6px;
  font-family: "Instrument Serif", "Times New Roman", serif; font-style: italic;
  font-size: 13px; color: #445069; cursor: pointer;
}
.ns-close:hover { background: #ececec; color: #0b1220; }
.ns-body { overflow-y: auto; overflow-x: hidden; flex: 1; padding: 4px 0 8px; }
.ns-section { padding: 18px 22px 6px; }
.ns-section h4 {
  font-size: 11px; font-weight: 700; color: #8a93a6;
  text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 12px;
}
.ns-popular { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
@media (max-width: 640px) {
  .ns-popular { grid-template-columns: repeat(2, 1fr); }
  /* Results on mobile stack full-width instead of a cramped 2-up grid. */
  .ns-popular.ns-results { grid-template-columns: 1fr; }
}
.ns-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border: 1px solid #ececec; border-radius: 12px; background: white; color: #0b1220;
  text-decoration: none; text-align: left; font-family: inherit;
  cursor: pointer; transition: all 0.15s; width: 100%;
}
.ns-item:hover {
  border-color: #0f1a2e; transform: translateY(-1px);
  box-shadow: 0 6px 18px -8px rgba(11, 18, 32, 0.18); color: #0b1220;
}
.ns-item-img {
  width: 38px; height: 38px; border-radius: 8px;
  background-size: cover; background-position: center; background-color: #fafaf5;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.ns-item-info { flex: 1; min-width: 0; }
.ns-item-name {
  font-size: 13.5px; font-weight: 700; line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ns-item-meta {
  font-size: 11px; color: #8a93a6; margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ns-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
@media (max-width: 640px) { .ns-list { grid-template-columns: 1fr; } }
.ns-row {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-radius: 8px; text-decoration: none; color: #1a2436; font-size: 13.5px;
  background: transparent; border: 0; font-family: inherit; text-align: left;
  width: 100%; cursor: pointer; transition: background 0.15s;
}
.ns-row:hover { background: #fafaf5; color: #0b1220; }
.ns-row-emoji { font-size: 16px; line-height: 1; flex-shrink: 0; }
.ns-empty {
  padding: 28px 22px; text-align: center;
  font-family: "Instrument Serif", "Times New Roman", serif; font-style: italic;
  color: #445069; font-size: 15px;
}
.ns-empty .ns-accent { color: #ff9d6e; cursor: pointer; }
.ns-cta {
  margin: 16px 22px 18px; padding: 14px 16px;
  background: linear-gradient(135deg, #ffede0 0%, #ffe5ea 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
@media (max-width: 640px) { .ns-cta { flex-direction: column; align-items: flex-start; } }
.ns-cta-text { font-size: 13.5px; color: #0b1220; line-height: 1.4; }
.ns-cta-text .ns-serif {
  font-family: "Instrument Serif", "Times New Roman", serif;
  font-style: italic; font-weight: 400;
}
.ns-cta-btn {
  display: inline-flex; align-items: center; gap: 6px; padding: 9px 14px;
  background: #0f1a2e; color: white; border-radius: 999px;
  font-size: 12.5px; font-weight: 600; text-decoration: none; flex-shrink: 0;
  transition: transform 0.15s; border: 0; cursor: pointer; font-family: inherit;
}
.ns-cta-btn:hover { transform: translateY(-1px); color: white; }
.ns-cta-btn svg { width: 12px; height: 12px; }

/* Extra-small phones (< 361px): tighten gutters so the panel never triggers a
   horizontal scroll. */
@media (max-width: 360px) {
  .ns-inner { margin: 52px 10px 0; }
  .ns-input-row { padding: 14px 14px; }
  .ns-section { padding: 16px 14px 6px; }
  .ns-popular { gap: 6px; }
  .ns-cta { margin: 14px 14px 16px; padding: 12px 14px; }
}

.ns-skel-row { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; }
.ns-skel-avatar, .ns-skel-text {
  background: linear-gradient(90deg, #ececec 0%, #f6f5f0 50%, #ececec 100%);
  background-size: 200% 100%;
  animation: nsShimmer 1.4s ease-in-out infinite;
}
.ns-skel-avatar { width: 38px; height: 38px; border-radius: 8px; flex-shrink: 0; }
.ns-skel-text { flex: 1; height: 12px; border-radius: 4px; }
@keyframes nsShimmer { 0% { background-position: 200% 0 } 100% { background-position: -200% 0 } }

/* =══════════════════════════════════════════════════════════════════════════
   5 · FOOTER — components/newfooter/Index.js styled-components, compiled
   ═══════════════════════════════════════════════════════════════════════ */
.ftr {
  background: #0f1a2e; color: #fafaf5;
  padding: 56px 0 32px; position: relative; z-index: 1000;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}
.ftr-inner { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* Newsletter banner — commented out in the live component; kept here so the
   design is documented and can be switched back on. */
.ftr-newsletter {
  background: #f7e700; border-radius: 24px;
  padding: 28px 32px; margin-bottom: 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.ftr-newsletter h3 {
  font-size: 24px; font-weight: 800; color: #0b1220;
  margin: 0; line-height: 1.2; letter-spacing: -0.02em;
}
.ftr-newsletter h3 span {
  font-family: "Instrument Serif", serif; font-style: normal; font-weight: 400;
}
@media screen and (max-width: 768px) {
  .ftr-newsletter { flex-direction: column; text-align: center; padding: 24px 20px; }
}
.ftr-newsletter-form {
  display: flex; align-items: center; background: #ffffff;
  border-radius: 999px; padding: 4px; min-width: 320px;
}
.ftr-newsletter-form input {
  flex: 1; border: none; outline: none; padding: 12px 16px;
  font-size: 14px; background: transparent; color: #0b1220; font-family: inherit;
}
.ftr-newsletter-form input::placeholder { color: #8a93a6; }
.ftr-newsletter-form button {
  background: #0f1a2e; color: #fff; border: 0;
  padding: 12px 20px; border-radius: 999px;
  font-weight: 600; font-size: 14px; cursor: pointer; transition: transform 0.15s ease;
}
.ftr-newsletter-form button:hover { transform: translateY(-1px); }
@media screen and (max-width: 351px) {
  .ftr-newsletter-form button { font-size: 12px; padding: 12px 8px; }
}
@media screen and (max-width: 768px) { .ftr-newsletter-form { width: 100%; min-width: 0; } }

/* 5 tracks against 6 children (brand + 5 link sections) — "Terms & Policies"
   deliberately wraps to a second row, as it does in production. */
.ftr-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
@media screen and (max-width: 1024px) { .ftr-grid { grid-template-columns: 1fr 1fr; } }
@media screen and (max-width: 480px)  { .ftr-grid { grid-template-columns: 1fr; } }

.ftr-brand .logo-line {
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
}
.ftr-brand .logo-lockup { height: 36px; width: auto; }
.ftr-brand .tag { display: block; font-size: 11px; color: rgba(255, 255, 255, 0.55); }
.ftr-brand .blurb {
  margin-top: 18px; font-size: 14px; color: rgba(255, 255, 255, 0.7);
  line-height: 1.55; max-width: 320px;
}
.ftr-brand .contact {
  margin-top: 20px; display: flex; flex-direction: column; gap: 8px;
  font-size: 13.5px; color: rgba(255, 255, 255, 0.86);
}
.ftr-brand .contact a,
.ftr-brand .contact .row {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255, 255, 255, 0.86); text-decoration: none; cursor: pointer;
}
.ftr-brand .contact a:hover { color: #f7e700; }
.ftr-brand .contact svg { color: #f7e700; }
.ftr-brand .contact .wa-row { display: flex; gap: 8px; align-items: center; }

.ftr-col h4 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45); margin: 0 0 16px 0;
}
.ftr-col ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.ftr-col a, .ftr-col p {
  color: rgba(255, 255, 255, 0.8); text-decoration: none;
  font-size: 14px; transition: color 0.15s; margin: 0; cursor: pointer;
}
.ftr-col a:hover, .ftr-col p:hover { color: #f7e700; }

.ftr-socials { margin-top: 20px; }
.ftr-socials .row { display: flex; justify-content: space-between; width: 16rem; }
.ftr-socials a {
  border-radius: 100%; padding: 7px; cursor: pointer; text-decoration: none;
  color: white; background: white; border: 1px solid white;
  transition: all 0.3s ease;
  display: inline-flex; align-items: center; justify-content: center;
}
.ftr-socials a:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); }
.ftr-socials svg { font-size: 1.5rem; width: 1.5rem; height: 1.5rem; color: rgba(255,255,255,0.7); transition: color 0.15s; }
.ftr-socials svg:hover { color: #f7e700; }
/* Per-network brand fills, mirroring the `hoverbg` prop on each IconContainer */
.ftr-socials a.tw { background: #1D9BF0; border-color: #1D9BF0; }
.ftr-socials a.fb { background: #3b5998; border-color: #3b5998; }
.ftr-socials a.ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color: #d6249f;
}
.ftr-socials a.li { background: #0072b1; border-color: #0072b1; }
.ftr-socials a.pi { background: #E60023; border-color: #E60023; }

.ftr-bottom {
  padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255, 255, 255, 0.45);
}
@media screen and (max-width: 640px) {
  .ftr-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
/* ── Blog pages: the homepage stats strip, in flow just above the footer ── */
#ttw-banner{background:#0f1a2e;color:#fafaf5;font-family:"Inter",-apple-system,BlinkMacSystemFont,sans-serif}
#ttw-banner:empty{display:none}
.ttw-banner-in{max-width:1240px;margin:0 auto;padding:20px 28px}
.ttw-banner-stats{display:flex;justify-content:space-between;flex-wrap:nowrap;gap:24px;list-style:none;margin:0;padding:0;font-size:13.5px;font-weight:500;overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none;-ms-overflow-style:none}
.ttw-banner-stats::-webkit-scrollbar{display:none}
.ttw-banner-stats li{display:inline-flex;align-items:center;gap:8px;flex-shrink:0;white-space:nowrap}
.ttw-banner-stats b{color:#f7e700;font-size:18px;font-weight:400;font-family:"Instrument Serif","Times New Roman",serif;font-style:italic}
@media(max-width:700px){.ttw-banner-in{padding:14px 16px}.ttw-banner-stats{gap:18px;font-size:12.5px}.ttw-banner-stats b{font-size:16px}}

/* ── Floating trip-planner pill, fixed on every blog page ────────────────── */
.ttw-planner{position:fixed;left:50%;bottom:18px;transform:translateX(-50%);z-index:960;width:min(960px,calc(100% - 24px));display:flex;align-items:center;gap:10px;padding:8px 8px 8px 8px;background:#f7f7f2;border:1px solid #ececec;border-radius:999px;box-shadow:0 18px 44px -14px rgba(11,18,32,.38),0 2px 6px rgba(11,18,32,.08);font-family:"Inter",-apple-system,BlinkMacSystemFont,sans-serif;box-sizing:border-box}
.ttw-planner-ic{flex:none;width:48px;height:48px;border-radius:50%;background:#0b1220;color:#fff;display:inline-flex;align-items:center;justify-content:center}
.ttw-planner-in{flex:1;min-width:0;border:0;outline:0;background:transparent;font:inherit;font-size:16px;color:#0b1220;padding:10px 8px;text-overflow:ellipsis}
.ttw-planner-in::placeholder{color:#8b93a6;opacity:1}
.ttw-planner-go{flex:none;display:inline-flex;align-items:center;gap:10px;padding:14px 22px;background:#0b1220;color:#fff;border:0;border-radius:999px;font:inherit;font-size:15px;font-weight:600;cursor:pointer;white-space:nowrap;transition:transform .15s,background .15s}
.ttw-planner-go:hover{background:#0f1a2e;transform:translateY(-1px)}
.ttw-planner-av{flex:none;position:relative;width:48px;height:48px;border-radius:50%;overflow:visible;margin-right:2px}
.ttw-planner-av img{width:48px;height:48px;border-radius:50%;object-fit:cover;display:block;border:2px solid #fff;box-sizing:border-box}
.ttw-planner-av i{position:absolute;right:1px;bottom:1px;width:11px;height:11px;border-radius:50%;background:#22c55e;border:2px solid #f7f7f2}
body.has-ttw-planner{padding-bottom:96px}
@media(max-width:700px){.ttw-planner{bottom:10px;width:calc(100% - 16px);gap:6px;padding:6px}.ttw-planner-ic{display:none}.ttw-planner-in{font-size:15px;padding:10px 6px 10px 12px}.ttw-planner-go{padding:12px 16px;font-size:14px}.ttw-planner-go svg{display:none}.ttw-planner-av,.ttw-planner-av img{width:40px;height:40px}body.has-ttw-planner{padding-bottom:84px}}
@media(max-width:400px){.ttw-planner-av{display:none}.ttw-planner-go{padding:12px 14px}}
