:root {
  --navy: #061f3f;
  --navy-2: #0d2b53;
  --teal: #078da8;
  --teal-2: #19a8bf;
  --teal-soft: #eaf8fb;
  --coral: #ff5a5f;
  --line: #dce8ee;
  --muted: #65768b;
  --paper: rgba(255, 255, 255, .97);
  --shadow: 0 20px 54px rgba(6, 31, 63, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--navy);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}
button, input, select { font: inherit; }
button { color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 22px 0;
}
.brand img { display: block; width: 154px; height: auto; }
.header-actions { display: flex; align-items: center; gap: 15px; }
.language, .menu {
  border: 0;
  background: rgba(255,255,255,.8);
  font-weight: 950;
}
.language {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
}
#language-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.flag {
  display: inline-block;
  width: 22px;
  height: 16px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(6,31,63,.14);
}
.flag-fr {
  background: linear-gradient(90deg, #1d4ed8 0 33.33%, #fff 33.33% 66.66%, #ef4444 66.66% 100%);
}
.flag-uk {
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 640 480' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23012169' d='M0 0h640v480H0z'/%3E%3Cpath fill='%23fff' d='m75 0 244 181L562 0h78v62L400 241l240 178v61h-80L320 301 81 480H0v-60l239-178L0 64V0h75z'/%3E%3Cpath fill='%23C8102E' d='m424 281 216 159v40L369 281h55zm-184 20 6 35L54 480H0l240-179zM640 0v3L391 191l2-44L590 0h50zM0 0l239 176h-60L0 42V0z'/%3E%3Cpath fill='%23fff' d='M241 0v480h160V0H241zM0 160v160h640V160H0z'/%3E%3Cpath fill='%23C8102E' d='M0 193v96h640v-96H0zM273 0v480h96V0h-96z'/%3E%3C/svg%3E") center / cover no-repeat;
}
.flag-es {
  background: linear-gradient(180deg, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75% 100%);
}
.flag-ja {
  background:
    radial-gradient(circle at center, #bc002d 0 31%, transparent 32%),
    #fff;
}
.menu {
  display: grid;
  width: 38px;
  gap: 6px;
  padding: 9px 6px;
  border-radius: 12px;
}
.menu span { display: block; height: 3px; border-radius: 10px; background: var(--navy); }

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #eef8fb;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background: #eef8fb center / cover no-repeat;
  filter: saturate(.92) brightness(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.82) 0%, rgba(255,255,255,.58) 42%, rgba(255,255,255,.18) 72%, rgba(255,255,255,.36) 100%),
    linear-gradient(90deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.48) 48%, rgba(255,255,255,.06) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100vw;
  padding: 124px 22px 164px;
}
.eyebrow {
  margin: 0 0 9px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1 {
  max-width: 710px;
  margin: 0 0 18px;
  font-size: clamp(39px, 10vw, 86px);
  line-height: 1.02;
  letter-spacing: -.055em;
}
h1 span { display: block; color: var(--teal); }
.hero-copy {
  max-width: min(520px, calc(100vw - 44px));
  margin: 0;
  font-size: clamp(18px, 4.8vw, 25px);
  color: var(--navy);
}
.hero-copy strong { color: var(--teal); }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  width: 100%;
  max-width: 540px;
  margin-top: 24px;
}
.hero-proof article {
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 4px;
  padding: 10px 6px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 16px;
  background: rgba(255,255,255,.84);
  text-align: center;
  box-shadow: 0 7px 20px rgba(6,31,63,.08);
  backdrop-filter: blur(8px);
}
.hero-proof .ui-icon { width: 31px; height: 31px; }
.hero-proof strong {
  font-size: 13px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}
.hero-proof small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.2;
}

.booking-shell {
  position: relative;
  z-index: 3;
  margin: -116px 16px 0;
  max-width: calc(100vw - 32px);
}
.booking-card {
  max-width: 100%;
  overflow: hidden;
  padding: 24px 18px 20px;
  border: 1px solid rgba(6,31,63,.08);
  border-radius: 25px;
  background: var(--paper);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.booking-heading {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}
.booking-heading h2 {
  max-width: 340px;
  margin: 0;
  font-size: 29px;
  line-height: 1.08;
  letter-spacing: -.04em;
}
.booking-heading .eyebrow { margin-bottom: 6px; }
.secure-badge {
  flex: 0 0 auto;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--teal);
  background: var(--teal-soft);
  font-size: 12px;
  font-weight: 950;
}
.form-step { margin-top: 23px; }
.form-step:first-of-type { margin-top: 0; }
.form-step h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
  font-size: 18px;
}
.form-step h3 span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-weight: 950;
}
.form-step h3 b { font-weight: 950; }

.routes {
  display: grid;
  gap: 10px;
}
.route-card {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 106px;
  max-width: 100%;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
  text-align: left;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.route-card.active {
  border: 2px solid var(--teal);
  background: linear-gradient(180deg, #fff, #f4fcfd);
  box-shadow: 0 15px 30px rgba(7,141,168,.13);
}
.route-card.active::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-weight: 950;
}
.route-visual {
  display: flex;
  min-width: 78px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--teal);
  font-size: 19px;
  font-weight: 950;
  overflow: visible;
}
.route-visual b { flex: 0 0 auto; }
.route-visual .ui-icon {
  width: 28px;
  height: 30px;
  flex: 0 0 28px;
  background: transparent;
}
.route-visual .ui-icon-airbnb::before,
.route-visual .ui-icon-airbnb-alt::before {
  width: 25px;
  height: 29px;
}
.route-text { min-width: 0; }
.route-card strong {
  display: block;
  font-size: 19px;
  line-height: 1.14;
  letter-spacing: -.02em;
}
.route-card small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.32;
}

.places-grid {
  display: grid;
  gap: 14px;
}
.place-field {
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(220,232,238,.8);
  border-radius: 19px;
  background: #fbfdfe;
}
.place-chip {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--teal);
  background: var(--teal-soft);
  font-size: 12px;
  font-weight: 950;
}
.airport-select {
  display: grid;
  gap: 9px;
}
.terminal-option {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  text-align: left;
}
.terminal-option.active {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-soft);
  box-shadow: inset 0 0 0 1px var(--teal);
}
.terminal-option strong { font-size: 15px; }
.place-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  min-width: 0;
  overflow: visible;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.place-tab {
  min-width: 0;
  min-height: 45px;
  padding: 8px 7px;
  border: 1px solid transparent;
  border-radius: 11px;
  background: #fff;
  font-size: 13px;
  font-weight: 950;
  white-space: normal;
  overflow-wrap: anywhere;
}
.place-tab.active {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-soft);
  box-shadow: none;
}
.place-panel { margin-top: 11px; }
.input-shell {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}
.input-shell:focus-within {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(7,141,168,.1);
}
.input-shell input,
.input-shell select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--navy);
  background: transparent;
  font-size: 16px;
}
.date-field .input-shell { padding: 0 10px; }
.date-field input {
  min-width: 0;
  font-size: 14px;
}
.time-field select {
  appearance: none;
  -webkit-appearance: none;
}
.input-shell input::placeholder { color: #94a1b2; }
.address-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.address-suggestions button {
  padding: 8px 10px;
  border: 0;
  border-radius: 999px;
  color: var(--teal);
  background: var(--teal-soft);
  font-size: 12px;
  font-weight: 850;
}
.address-live-suggestions {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(9, 35, 70, .1);
}
.address-live-suggestions[hidden] {
  display: none;
}
.address-results-group {
  display: grid;
  gap: 6px;
}
.address-results-group p,
.address-searching {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .02em;
}
.address-results-heading {
  display: flex;
  align-items: center;
  gap: 8px;
}
.address-results-heading span {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  color: var(--teal);
  background: var(--teal-soft);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
}
.address-live-suggestion {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  text-align: left;
  color: var(--navy);
  background: #f8fbfd;
}
.address-live-suggestion.google {
  grid-template-columns: 1fr;
}
.address-live-suggestion:hover,
.address-live-suggestion:focus {
  border-color: var(--teal);
  outline: 0;
  background: #f0fbfd;
}
.address-live-suggestion span {
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--teal);
  background: var(--teal-soft);
  font-size: 11px;
  font-weight: 900;
}
.address-live-suggestion strong {
  min-width: 0;
  overflow: hidden;
  font-size: 14px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.address-live-suggestion.partner strong,
.address-live-suggestion.google strong {
  overflow: visible;
  line-height: 1.25;
  text-overflow: clip;
  white-space: normal;
}
.drop-intro {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
}
.drop-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.drop-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.drop-list li.selected {
  border-color: var(--teal);
  background: #f4fcfd;
  box-shadow: inset 0 0 0 1px var(--teal);
}
.drop-list li.expanded {
  align-items: stretch;
}
.drop-choice {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
  min-width: 0;
  border: 0;
  background: transparent;
  text-align: left;
}
.drop-badge {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: var(--teal);
  font-size: 12px;
  font-weight: 950;
}
.drop-choice strong,
.drop-choice small,
.drop-choice em { display: block; }
.drop-choice strong { font-size: 15px; }
.drop-choice small { color: var(--muted); font-size: 12px; }
.drop-choice em { color: var(--teal); font-size: 11px; font-style: normal; font-weight: 850; }
.map-link {
  justify-self: start;
  padding: 8px 11px;
  border: 0;
  border-radius: 999px;
  color: var(--teal);
  background: var(--teal-soft);
  font-size: 12px;
  font-weight: 950;
}
.drop-preview {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}
.drop-preview .real-map {
  height: 230px;
}
.map-top-link {
  justify-self: start;
  width: fit-content;
  padding: 9px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--teal);
  font-size: 12px;
  font-weight: 950;
}
.drop-selected-summary {
  display: grid;
  gap: 11px;
  padding: 12px;
  border: 1px solid #99d9e4;
  border-radius: 16px;
  background: #f4fcfd;
  box-shadow: inset 0 0 0 1px rgba(7,141,168,.18);
}
.drop-selected-main {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
}
.drop-selected-main strong,
.drop-selected-main small,
.drop-selected-main em { display: block; }
.drop-selected-main strong { font-size: 15px; }
.drop-selected-main small { color: var(--muted); font-size: 12px; }
.drop-selected-main em { color: var(--teal); font-size: 11px; font-style: normal; font-weight: 850; }
.drop-selected-hours {
  margin-top: 0;
}
.change-drop {
  justify-self: start;
  padding: 8px 11px;
  border: 0;
  border-radius: 999px;
  color: var(--teal);
  background: #fff;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
}

.map-panel {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #b7e4eb;
  border-radius: 19px;
  background: #f4fcfd;
}
.map-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}
.map-heading strong { display: block; font-size: 17px; }
.map-heading p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }
.map-heading a {
  width: fit-content;
  padding: 9px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--teal);
  font-size: 12px;
  font-weight: 950;
}
.real-map {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #cfe9ef;
  background: #eaf7fa;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55);
}
.real-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-selected-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-top: 12px;
  padding: 13px;
  border: 1px solid #99d9e4;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(6,31,63,.08);
}
.map-selected-card strong,
.map-selected-card small,
.map-selected-card em {
  display: block;
}
.map-selected-card strong {
  font-size: 17px;
}
.map-selected-card small {
  color: var(--muted);
}
.map-selected-card em {
  margin-top: 2px;
  color: var(--teal);
  font-style: normal;
  font-weight: 900;
}
.map-selected-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: 9px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--teal);
  font-size: 12px;
  font-weight: 950;
}
.confirm-drop {
  display: inline-flex;
  width: fit-content;
  margin-top: 9px;
  padding: 8px 11px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--teal);
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
}
.main-cta:disabled {
  cursor: not-allowed;
  opacity: .55;
  filter: grayscale(.15);
}
.redirect-note a {
  display: inline-flex;
  margin: 4px 6px 0 0;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--teal);
  font-size: 12px;
  font-weight: 900;
}
.pac-container {
  z-index: 100000;
  border-radius: 12px;
  font-family: inherit;
}

@media (max-width: 767px) {
  .pac-container {
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-width: none !important;
  }

  .pac-item {
    min-height: 52px;
    padding: 9px 12px;
    overflow: visible;
    white-space: normal;
    text-overflow: clip;
    line-height: 1.35;
  }

  .pac-item-query,
  .pac-item span:not(.pac-icon) {
    white-space: normal;
  }

  .pac-item-query {
    font-size: 15px;
  }
}

.map-hours {
  margin-top: 10px;
  padding: 10px;
  border-radius: 13px;
  background: var(--teal-soft);
}
.map-hours b {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.map-hours-list {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 12px;
}
.map-hours-empty {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.map-list-heading {
  margin: 14px 0 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 950;
}
.map-list {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}
.map-list button {
  display: grid;
  gap: 2px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  text-align: left;
}
.map-list button.active {
  border-color: var(--teal);
  color: var(--teal);
  background: #fff;
}
.map-list small { color: var(--muted); }
.map-list em {
  color: var(--teal);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  max-width: 100%;
}
.field { min-width: 0; }
.field > span:first-child {
  display: block;
  margin-bottom: 7px;
  font-size: 15px;
  font-weight: 950;
}
.flight-field, .luggage-field { grid-column: 1 / -1; }
.details-grid.no-flight .flight-field { display: none; }
.field-hint {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
}
.flight-storage-notice {
  grid-column: 1 / -1;
  margin-top: -2px;
  padding: 11px 13px;
  border: 1px solid #a7dce5;
  border-radius: 14px;
  background: #eefbfe;
  color: #35576a;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}
.flight-storage-notice[hidden] { display: none; }
.required-mark {
  color: var(--teal);
  font-weight: 950;
}
.input-shell.field-invalid,
.place-field.field-invalid .input-shell {
  border-color: #c93c3c;
  box-shadow: 0 0 0 3px rgba(201,60,60,.1);
}
.validation-message {
  margin: 10px 0 0;
  color: #a92f2f;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}
.counter {
  display: grid;
  min-height: 58px;
  grid-template-columns: 1fr 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}
.counter button,
.counter strong {
  display: grid;
  place-items: center;
  border: 0;
  background: #f5f8fa;
  font-size: 19px;
}
.counter strong { background: #fff; }

.price-panel {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid #a7dce5;
  border-radius: 18px;
  background: linear-gradient(135deg, #f4fcfd, #eaf8fb);
}
.price-kicker {
  display: block;
  margin-bottom: 3px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.price-panel p {
  display: flex;
  gap: 10px;
  align-items: baseline;
  justify-content: space-between;
  margin: 0;
  font-size: 19px;
}
.price-panel strong {
  flex: 0 0 auto;
  color: var(--teal);
  font-size: 35px;
  line-height: 1;
}
.price-panel small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}
.price-panel small[hidden] { display: none; }
.main-cta {
  display: flex;
  width: 100%;
  min-height: 62px;
  margin-top: 14px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(90deg, var(--teal), #00a0bb);
  box-shadow: 0 14px 28px rgba(7,141,168,.24);
  font-size: 21px;
  font-weight: 950;
}
.main-cta b { font-size: 28px; line-height: 1; }
.trust-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding-top: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}
.trust-row span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--teal);
}
.redirect-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.hotel-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 7px 12px;
  align-items: center;
  margin: 18px 24px 46px;
  padding: 15px 18px;
  border-radius: 18px;
  color: var(--teal);
  background: var(--teal-soft);
  text-align: left;
}
.hotel-link strong { font-size: 17px; }
.hotel-link small { grid-column: 2; color: var(--muted); font-size: 12px; }
.hotel-link b { font-size: 24px; }

.how-section,
.benefits,
.reviews,
.faq-help {
  width: min(1180px, calc(100% - 36px));
  margin-right: auto;
  margin-left: auto;
}
.how-section { margin-bottom: 30px; text-align: center; }
.how-section h2,
.faq h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 9vw, 58px);
  line-height: 1.08;
  letter-spacing: -.055em;
}
.steps {
  display: grid;
  gap: 16px;
  text-align: left;
}
.step-card {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 15px;
  align-items: center;
  padding: 22px 18px;
  border-radius: 21px;
  background: #f5fafd;
}
.step-card:not(:last-child)::after {
  content: "↓";
  position: absolute;
  left: 50%;
  bottom: -23px;
  transform: translateX(-50%);
  color: var(--teal);
  font-size: 28px;
  font-weight: 950;
}
.step-number {
  position: absolute;
  top: -13px;
  left: 16px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-weight: 950;
}
.step-card .ui-icon { width: 50px; height: 50px; margin-left: 6px; }
.step-card strong { display: block; font-size: 20px; }
.step-card p { margin: 5px 0 0; color: var(--muted); font-size: 14px; }

.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #f8fcfd;
}
.benefits article {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 4px 10px;
  padding: 18px 14px;
  border-bottom: 1px solid var(--line);
}
.benefits article:nth-child(odd) { border-right: 1px solid var(--line); }
.benefits article:nth-last-child(-n+2) { border-bottom: 0; }
.benefits .ui-icon { grid-row: span 2; width: 30px; height: 30px; }
.benefits strong { font-size: 15px; }
.benefits span { color: var(--muted); font-size: 12px; }

.reviews {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
  padding: 22px;
  border-radius: 21px;
  background: linear-gradient(135deg, #fff, #f8fcfd);
  box-shadow: 0 12px 32px rgba(6,31,63,.08);
}
.rating {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 13px;
  align-items: center;
}
.rating b {
  grid-row: span 2;
  color: #4285f4;
  font-size: 42px;
  line-height: 1;
}
.rating strong { font-size: 24px; }
.rating small { color: var(--muted); font-size: 13px; font-weight: 800; }
.google-review-summary {
  display: grid;
  gap: 12px;
  align-content: start;
}
.google-review-summary .rating {
  grid-template-columns: auto 1fr;
}
.google-review-summary .rating b {
  grid-row: auto;
}
.google-review-summary .rating strong {
  display: block;
}
.review-score {
  margin-top: 4px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 950;
}
.review-score span,
.review-card-rating span {
  color: #fbbc04;
}
.google-reviews-link {
  width: fit-content;
  color: var(--teal);
  font-size: 13px;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.google-attribution {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}
.google-review-list {
  display: grid;
  gap: 12px;
}
.google-review-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
}
.google-review-card header {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
}
.google-review-card header img,
.review-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  object-fit: cover;
}
.review-avatar {
  color: #fff;
  background: #4285f4;
  font-weight: 950;
}
.google-review-card header a,
.google-review-card header strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--navy);
  font-size: 13px;
  font-weight: 950;
}
.google-review-card header small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}
.review-card-rating {
  margin-top: 11px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 950;
}
.google-review-card p {
  display: -webkit-box;
  margin: 8px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
blockquote {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 15px;
}
cite {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

@media (max-width: 767px) {
  .google-review-list {
    display: flex;
    margin-right: -22px;
    padding-right: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .google-review-list::-webkit-scrollbar {
    display: none;
  }

  .google-review-card {
    flex: 0 0 min(82vw, 330px);
    scroll-snap-align: start;
  }
}

.faq-help {
  display: grid;
  gap: 18px;
  padding-bottom: 120px;
}
.faq details { border-top: 1px solid var(--line); }
.faq summary {
  padding: 16px 2px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
}
.faq details p { color: var(--muted); font-size: 13px; }
.ask-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 18px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(6,31,63,.07);
}
.ask-bar input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 10px;
  color: var(--navy);
  background: transparent;
}
.ask-bar button {
  border: 0;
  border-radius: 999px;
  padding: 10px 13px;
  color: #fff;
  background: var(--teal);
  font-size: 12px;
  font-weight: 950;
}
.ask-bar.submitted {
  border-color: #a7dce5;
  background: var(--teal-soft);
}
.ask-bar button:disabled {
  cursor: wait;
  opacity: .65;
}
.ask-response {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid #a7dce5;
  border-radius: 18px;
  background: var(--teal-soft);
  color: var(--navy);
}
.ask-response[hidden] {
  display: none;
}
.ask-response.is-error {
  border-color: #f0c7ad;
  background: #fff8f3;
}
.ask-response.is-loading {
  opacity: .75;
}
.ask-response p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}
.ask-response-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ask-response-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--teal);
  border-radius: 999px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}
.ask-response-actions a.is-primary {
  color: #fff;
  background: var(--teal);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.help-card {
  display: grid;
  gap: 8px;
  justify-items: start;
  padding: 22px;
  border-radius: 21px;
  background: var(--teal-soft);
}
.help-card .ui-icon,
.help-icon {
  width: 38px;
  height: 38px;
}
.help-card strong { font-size: 20px; }
.help-card p { margin: 0; color: var(--muted); }
.help-card a {
  margin-top: 5px;
  padding: 11px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--teal);
  font-weight: 950;
}

.mobile-bar {
  position: fixed;
  z-index: 30;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94);
  box-shadow: 0 -8px 26px rgba(6,31,63,.14);
  backdrop-filter: blur(10px);
  transition: transform .2s ease, opacity .2s ease;
}
.mobile-bar.mobile-bar-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.mobile-bar button {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border: 0;
  border-radius: 15px;
  color: #fff;
  background: var(--teal);
  font-size: 18px;
  font-weight: 950;
}
.mobile-bar b { font-size: 28px; }

.ui-icon {
  position: relative;
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--teal);
  border-radius: 50%;
  background: var(--teal-soft);
}
.ui-icon::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: var(--icon) center / contain no-repeat;
}
.ui-icon-plane::before {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23078da8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 2.8c0-.7.5-1.3 1.2-1.3s1.2.6 1.2 1.3v5.4l7.7 4.4c.5.3.8.8.8 1.4v1.6l-8.5-2.5v4.7l2.7 1.9v1.4l-3.9-1-3.9 1v-1.4l2.7-1.9v-4.7l-8.5 2.5V14c0-.6.3-1.1.8-1.4L11 8.2V2.8Z'/%3E%3C/svg%3E");
}
.ui-icon-airport::before {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23078da8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 20h16'/%3E%3Cpath d='M6 20v-6h12v6'/%3E%3Cpath d='M9 14v-4h6v4'/%3E%3Cpath d='M12 10V4'/%3E%3Cpath d='m8 7 4-3 4 3'/%3E%3C/svg%3E");
}
.ui-icon-tag::before {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23078da8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 10 12 20 4 12V4h8l8 6Z'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.2'/%3E%3C/svg%3E");
}
.ui-icon-shield::before {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23078da8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3 20 6v5c0 5-3.5 8.5-8 10-4.5-1.5-8-5-8-10V6l8-3Z'/%3E%3Cpath d='m9 12 2 2 4-5'/%3E%3C/svg%3E");
}
.ui-icon-clock::before {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23078da8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='M12 8v5l3 2'/%3E%3C/svg%3E");
}
.ui-icon-pin::before {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23078da8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21s7-5.2 7-11a7 7 0 1 0-14 0c0 5.8 7 11 7 11Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
}
.ui-icon-bag::before {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23078da8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='7' y='7' width='10' height='13' rx='2'/%3E%3Cpath d='M9 7V5.5A2.5 2.5 0 0 1 11.5 3h1A2.5 2.5 0 0 1 15 5.5V7'/%3E%3Cpath d='M9 20v1M15 20v1'/%3E%3C/svg%3E");
}
.ui-icon-sun::before {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23f6b72d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v2M12 20v2M4.9 4.9l1.4 1.4M17.7 17.7l1.4 1.4M2 12h2M20 12h2M4.9 19.1l1.4-1.4M17.7 6.3l1.4-1.4'/%3E%3C/svg%3E");
}
.hotel-icon {
  position: relative;
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 2px solid var(--teal);
  border-radius: 6px 6px 4px 4px;
}
.hotel-icon::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 1px;
  background: var(--teal);
  box-shadow:
    -7px 0 0 var(--teal),
    7px 0 0 var(--teal),
    -7px 8px 0 var(--teal),
    7px 8px 0 var(--teal),
    0 8px 0 var(--teal);
}
.hotel-icon::after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 8px;
  height: 9px;
  border: 2px solid var(--teal);
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  background: #fff;
}
.help-icon::before { content: "☎"; color: var(--teal); font-size: 34px; }
.mini-icon {
  position: relative;
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--teal);
}
.calendar-icon {
  border: 0;
  border-radius: 0;
}
.calendar-icon::before {
  content: "";
  position: static;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23078da8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='4' y='5' width='16' height='15' rx='3'/%3E%3Cpath d='M8 3v4M16 3v4M4 10h16'/%3E%3Cpath d='M8 14h.01M12 14h.01M16 14h.01M8 17h.01M12 17h.01'/%3E%3C/svg%3E") center / contain no-repeat;
}
.calendar-icon::after {
  display: none;
}
.clock-icon {
  border: 0;
  border-radius: 0;
}
.clock-icon::before {
  content: "";
  position: static;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23078da8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='8.5'/%3E%3Cpath d='M12 7.5V12l3.2 2'/%3E%3C/svg%3E") center / contain no-repeat;
}
.clock-icon::after {
  display: none;
}
.plane-icon::before {
  content: "";
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23078da8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 2.8c0-.7.5-1.3 1.2-1.3s1.2.6 1.2 1.3v5.4l7.7 4.4c.5.3.8.8.8 1.4v1.6l-8.5-2.5v4.7l2.7 1.9v1.4l-3.9-1-3.9 1v-1.4l2.7-1.9v-4.7l-8.5 2.5V14c0-.6.3-1.1.8-1.4L11 8.2V2.8Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.ui-icon-airbnb,
.ui-icon-airbnb-alt,
.ui-icon-airbnb-small {
  background: transparent;
}
.ui-icon-airbnb::before,
.ui-icon-airbnb-alt::before,
.ui-icon-airbnb-small::before {
  content: "";
  width: 30px;
  height: 34px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg viewBox='0 0 64 72' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 8c-4.9 0-8 7.8-12.2 17.3L10.6 46.5C7.5 54 12.6 62 20.7 62c5.4 0 9.4-3 11.3-7.7C33.9 59 37.9 62 43.3 62c8.1 0 13.2-8 10.1-15.5l-9.2-21.2C40 15.8 36.9 8 32 8Z' stroke='%23ff5a5f' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='32' cy='39' r='7.5' stroke='%23ff5a5f' stroke-width='5'/%3E%3C/svg%3E");
}
.ui-icon-airbnb-alt::before { filter: hue-rotate(132deg) saturate(.85); }
.ui-icon-airbnb-small::before {
  width: 23px;
  height: 26px;
}

@media (max-width: 380px) {
  .site-header { padding-left: 16px; padding-right: 16px; }
  .brand img { width: 138px; }
  .hero-content { padding-left: 18px; padding-right: 18px; }
  .booking-shell { margin-left: 10px; margin-right: 10px; max-width: calc(100vw - 20px); }
  .booking-card { padding-left: 14px; padding-right: 14px; }
  .route-card { grid-template-columns: 78px minmax(0, 1fr); padding-left: 13px; padding-right: 13px; }
  .route-card strong { font-size: 17px; }
  .route-card small { font-size: 12px; }
  .price-panel p { display: block; }
  .price-panel strong { display: block; margin-top: 5px; }
}

@media (max-width: 819px) {
  .secure-badge { display: none; }
  .booking-heading { display: block; }
  .hero-proof article { min-width: 0; }
  .route-visual { justify-content: flex-start; gap: 4px; }
}

@media (min-width: 560px) {
  .trust-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .drop-list li { grid-template-columns: 1fr auto; align-items: center; }
  .drop-list li.expanded { grid-template-columns: 1fr; align-items: stretch; }
  .map-heading { grid-template-columns: 1fr auto; align-items: start; }
}

@media (min-width: 820px) {
  .site-header {
    left: 50%;
    right: auto;
    width: min(1180px, calc(100% - 56px));
    transform: translateX(-50%);
    padding-right: 0;
    padding-left: 0;
  }
  .brand img { width: 170px; }
  .hero { min-height: 680px; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.72) 31%, rgba(255,255,255,.18) 64%, rgba(255,255,255,.02) 100%),
      linear-gradient(0deg, rgba(255,255,255,.12), transparent 45%);
  }
  .hero-content {
    width: min(1180px, calc(100% - 56px));
    margin: 0 auto;
    padding: 126px 0 190px;
  }
  h1 { max-width: 650px; }
  .hero-proof article { justify-items: start; text-align: left; padding: 12px 14px; }
  .booking-shell {
    width: min(1180px, calc(100% - 56px));
    margin-right: auto;
    margin-left: auto;
  }
  .booking-card { padding: 34px 42px 25px; }
  .routes { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .route-card {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 164px;
    text-align: center;
  }
  .route-card small { max-width: 255px; }
  .route-visual { justify-content: center; }
  .places-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .details-grid {
    grid-template-columns: .9fr .7fr 1.1fr .85fr;
    align-items: start;
  }
  .details-grid.no-flight { grid-template-columns: .9fr .7fr .85fr; }
  .flight-field,
  .luggage-field { grid-column: auto; }
  .hotel-link {
    width: fit-content;
    min-width: 390px;
    margin-right: auto;
    margin-left: auto;
  }
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .step-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .step-card:not(:last-child)::after {
    content: "→";
    top: 50%;
    right: -27px;
    bottom: auto;
    left: auto;
    transform: translateY(-50%);
  }
  .benefits { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .benefits article { border-right: 1px solid var(--line); border-bottom: 0; }
  .benefits article:last-child { border-right: 0; }
  .reviews { grid-template-columns: .9fr 1.2fr; align-items: center; }
  .reviews.reviews-google { grid-template-columns: 250px 1fr; align-items: start; }
  .reviews.reviews-google .google-review-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  blockquote { padding-top: 0; padding-left: 22px; border-top: 0; border-left: 1px solid var(--line); }
  .faq-help { grid-template-columns: 1fr 300px; align-items: start; }
  .mobile-bar { display: none; }
}
