:root {
  --bg: #ffffff;
  --surface: rgba(255, 250, 245, 0.88);
  --surface-strong: #fffaf4;
  --surface-dark: #17352f;
  --ink: #0c0c0d;
  --muted: #6f766f;
  --line: rgba(29, 42, 40, 0.12);
  --accent: #f5b400;
  --accent-deep: #dd9f00;
  --accent-soft: rgba(245, 180, 0, 0.14);
  --success: #2b6c58;
  --shadow: 0 30px 80px rgba(32, 28, 24, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

body.has-modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.home-shell {
  padding: 40px 0 0;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.home-header {
  background: #000;
}

.home-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 90px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.home-brand {
  color: #fff;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.brand-mark-home {
  background: var(--accent);
}

.brand-mark-home svg {
  width: 28px;
  height: 28px;
  fill: #000;
}

.brand strong,
.brand small {
  display: block;
}

.home-brand strong {
  font-size: 2.15rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.top-nav,
.site-footer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-nav a,
.site-footer a {
  color: inherit;
  text-decoration: none;
}

.home-nav {
  color: #fff;
  gap: 34px;
  font-size: 1rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.sign-in-button {
  background: #fff;
  color: #111;
  padding: 12px 18px;
  border-radius: 12px;
}

.mobile-menu-toggle,
.mobile-menu-overlay {
  display: none;
}

.mobile-menu-toggle {
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  border-radius: 16px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(10, 10, 11, 0.98);
  color: #fff;
  overflow-y: auto;
}

.mobile-menu-overlay.is-open {
  display: block;
}

.mobile-menu-dialog {
  min-height: 100vh;
  width: min(100%, 520px);
  padding: 22px 22px 40px;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.mobile-menu-spacer {
  flex: 1;
  min-height: 1px;
}

.mobile-menu-close {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-menu-close span {
  position: absolute;
  left: 10px;
  top: 22px;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.mobile-menu-close span:first-child {
  transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu-links {
  display: grid;
  gap: 26px;
}

.mobile-menu-links a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(2rem, 6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.mobile-menu-bookings {
  min-height: 62px;
  width: 100%;
  max-width: 320px;
  font-size: 1.05rem;
  margin-top: 48px;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #000;
  box-shadow: 0 20px 40px rgba(221, 159, 0, 0.2);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.58);
  border-color: var(--line);
  color: var(--ink);
}

.button-block {
  width: 100%;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(420px, 634px);
  gap: 72px;
  align-items: start;
}

.home-hero {
  padding: 54px 0 40px;
}

.hero-column {
  min-width: 0;
}

.home-title {
  margin: 0 0 42px;
  max-width: 720px;
  font-size: clamp(3.8rem, 6vw, 5.5rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.booking-card,
.info-card,
.step-card,
.fleet-card,
.summary-panel,
.flow-content,
.confirmation-card {
  background: var(--surface);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
}

.home-booking-card {
  width: min(100%, 568px);
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.booking-tabs {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 16px;
}

.home-tabs {
  background: transparent;
  padding: 0;
}

.tab-button {
  border: 0;
  background: #000;
  color: #fff;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.tab-button-muted {
  background: transparent;
  color: #2f3135;
  font-weight: 600;
  padding-left: 0;
  padding-right: 0;
}

.tab-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.tab-button-icon svg {
  width: 22px;
  height: 22px;
}

.home-booking-form {
  gap: 14px;
}

.booking-form,
.checkout-form {
  display: grid;
}

.booking-form[hidden],
.home-booking-form[hidden],
.checkout-form[hidden] {
  display: none !important;
}

.field-card {
  display: grid;
  gap: 10px;
  background: #efefef;
  border: 1px solid #efefef;
  border-radius: 10px;
  padding: 14px 18px;
}

.field-card-large {
  min-height: 90px;
}

.field-label {
  font-size: 1rem;
  font-weight: 800;
  color: #181a1f;
}

.field-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.field-input-wrap-compact {
  min-height: 36px;
}

.field-icon {
  color: #7d8592;
  font-size: 1.25rem;
  line-height: 1;
  width: 22px;
  text-align: center;
  flex: 0 0 22px;
}

label {
  font-size: 0.95rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  background: transparent;
  color: #1b1f24;
  border-radius: 0;
  padding: 0;
  outline: none;
  font-size: 0.95rem;
}

input::placeholder,
textarea::placeholder {
  color: #a4adbb;
}

input:focus,
select:focus,
textarea:focus {
  box-shadow: none;
}

.form-row {
  display: grid;
  gap: 14px;
}

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

.three-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.return-button {
  width: 100%;
  min-height: 90px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #1e2430;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.return-fields-wrapper {
  position: relative;
}

.return-fields-wrapper[hidden] {
  display: none;
}

.return-fields-grid {
  margin-top: 0;
}

.return-fields-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.passenger-card {
  min-height: 90px;
}

.passenger-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.passenger-count {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.passenger-controls {
  display: flex;
  gap: 22px;
}

.step-button {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 0;
  background: #4a4a4a;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.search-button {
  width: 100%;
  justify-content: center;
  min-height: 66px;
  border-radius: 8px;
  background: #000;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
}

.search-button::before {
  content: '⌕';
  font-size: 1.6rem;
  line-height: 1;
}

.trustpilot-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  font-size: 1rem;
}

.trustpilot-row strong {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.trustpilot-stars {
  color: #00b67a;
  letter-spacing: 0.08em;
}

.hero-image-column {
  display: flex;
  justify-content: flex-end;
  padding-top: 168px;
}

.hero-image-card {
  width: 100%;
  max-width: 634px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.hero-image-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

.hero-image-card img {
  width: 100%;
  aspect-ratio: 0.87;
  object-fit: cover;
}

.stats-strip,
.service-grid,
.steps-grid,
.fleet-grid,
.flow-layout {
  display: grid;
  gap: 20px;
}

.home-section {
  padding: 34px 0;
}

.home-panels-grid {
  display: grid;
  gap: 18px;
}

.stats-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 10px 0 10px;
}

.home-panel {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
}

.stat-panel strong {
  display: block;
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.stat-panel span,
.compact-section-head p,
.feature-panel p,
.review-card p,
.destination-card span,
.vehicle-type-copy span {
  color: var(--muted);
  line-height: 1.6;
}

.compact-section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.compact-section-head h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.compact-section-head p:last-child {
  margin-top: 10px;
}

.service-grid-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-panel strong,
.review-card strong,
.destination-card strong,
.vehicle-type-copy strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 10px;
}

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

.vehicle-type-card {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 210px;
}

.vehicle-type-media {
  display: grid;
  place-items: center;
  min-height: 142px;
}

.vehicle-type-media img {
  width: min(100%, 180px);
  object-fit: contain;
}

.vehicle-type-copy {
  display: grid;
  gap: 4px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  min-height: 220px;
}

.review-stars {
  margin-bottom: 16px;
  color: #00b67a;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.destination-card {
  min-height: 190px;
  display: grid;
  align-content: start;
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-nav a,
.site-footer a {
  color: inherit;
  text-decoration: none;
}

.home-nav {
  color: #fff;
  gap: 34px;
  font-size: 1rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.sign-in-button {
  background: #fff;
  color: #111;
  padding: 12px 18px;
  border-radius: 12px;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #000;
  box-shadow: 0 20px 40px rgba(221, 159, 0, 0.2);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.58);
  border-color: var(--line);
  color: var(--ink);
}

.button-block {
  width: 100%;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(420px, 634px);
  gap: 72px;
  align-items: start;
}

.home-hero {
  padding: 54px 0 40px;
}

.hero-column {
  min-width: 0;
}

.home-title {
  margin: 0 0 42px;
  max-width: 720px;
  font-size: clamp(3.8rem, 6vw, 5.5rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.booking-card,
.info-card,
.step-card,
.fleet-card,
.summary-panel,
.flow-content,
.confirmation-card {
  background: var(--surface);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
}

.home-booking-card {
  width: min(100%, 568px);
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.booking-tabs {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 16px;
}

.home-tabs {
  background: transparent;
  padding: 0;
}

.tab-button {
  border: 0;
  background: #000;
  color: #fff;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.tab-button-muted {
  background: transparent;
  color: #2f3135;
  font-weight: 600;
  padding-left: 0;
  padding-right: 0;
}

.home-booking-form {
  gap: 14px;
}

.booking-form,
.checkout-form {
  display: grid;
}

.field-card {
  display: grid;
  gap: 10px;
  background: #efefef;
  border: 1px solid #efefef;
  border-radius: 10px;
  padding: 14px 18px;
}

.field-card-large {
  min-height: 90px;
}

.field-label {
  font-size: 1rem;
  font-weight: 800;
  color: #181a1f;
}

.field-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.field-input-wrap-compact {
  min-height: 36px;
}

.field-icon {
  color: #7d8592;
  font-size: 1.25rem;
  line-height: 1;
  width: 22px;
  text-align: center;
  flex: 0 0 22px;
}

label {
  font-size: 0.95rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  background: transparent;
  color: #1b1f24;
  border-radius: 0;
  padding: 0;
  outline: none;
  font-size: 0.95rem;
}

input::placeholder,
textarea::placeholder {
  color: #a4adbb;
}

input:focus,
select:focus,
textarea:focus {
  box-shadow: none;
}

.form-row {
  display: grid;
  gap: 14px;
}

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

.three-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.return-button {
  width: 100%;
  min-height: 90px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #1e2430;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.return-fields-wrapper {
  position: relative;
}

.return-fields-wrapper[hidden] {
  display: none;
}

.return-fields-grid {
  margin-top: 0;
}

.return-fields-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.passenger-card {
  min-height: 90px;
}

.passenger-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.passenger-count {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.passenger-controls {
  display: flex;
  gap: 22px;
}

.step-button {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 0;
  background: #4a4a4a;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.search-button {
  width: 100%;
  justify-content: center;
  min-height: 66px;
  border-radius: 8px;
  background: #000;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
}

.search-button::before {
  content: '⌕';
  font-size: 1.6rem;
  line-height: 1;
}

.trustpilot-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  font-size: 1rem;
}

.trustpilot-row strong {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.trustpilot-stars {
  color: #00b67a;
  letter-spacing: 0.08em;
}

.hero-image-column {
  display: flex;
  justify-content: flex-end;
  padding-top: 168px;
}

.hero-image-card {
  width: 100%;
  max-width: 634px;
  border-radius: 20px;
  overflow: hidden;
}

.hero-image-card img {
  width: 100%;
  aspect-ratio: 0.87;
  object-fit: cover;
}

.stats-strip,
.service-grid,
.steps-grid,
.fleet-grid,
.flow-layout {
  display: grid;
  gap: 20px;
}

.stats-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 12px 0 20px;
}

.stats-strip article {
  background: rgba(245, 245, 245, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 22px;
  padding: 22px;
}

.stats-strip strong {
  display: block;
  font-size: 1.9rem;
  margin-bottom: 6px;
}

.stats-strip span,
.section-head p,
.info-card p,
.step-card p,
.fleet-card p,
.flow-content > p,
.summary-panel p,
.confirmation-text,
.confirmation-meta span,
.site-footer p,
.site-footer span {
  color: var(--muted);
  line-height: 1.65;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 16px;
  color: inherit;
  opacity: 0.85;
}

.section {
  padding: 42px 0;
}

.section-dark {
  border-radius: var(--radius-xl);
  padding: 36px;
  background: linear-gradient(135deg, rgba(23,53,47,0.96), rgba(15,28,27,0.92));
  color: #fff;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head h2,
.flow-content h1,
.confirmation-card h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1;
  margin: 0;
}

.service-grid,
.steps-grid,
.fleet-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.step-card,
.fleet-card {
  padding: 26px;
  border-radius: 24px;
}

.step-card {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(245, 180, 0, 0.16);
  color: #ffd771;
  font-weight: 800;
  margin-bottom: 18px;
}

.accent-card {
  background: linear-gradient(180deg, #fff8f2, #f8ece0);
}

.fleet-type {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 800;
  color: #b67f00;
}

.site-footer {
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid rgba(29, 42, 40, 0.08);
  margin-top: 40px;
  padding: 26px 0 56px;
}

.site-footer div {
  display: grid;
  gap: 8px;
}

.compact-header {
  margin-bottom: 18px;
}

.progress-pill {
  display: inline-flex;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(255,255,255,0.65);
}

.progress-pill span {
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.progress-pill .active,
.payment-chip.active {
  background: var(--surface-dark);
  color: #fff;
}

.flow-layout {
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: start;
}

.summary-panel,
.flow-content,
.confirmation-card {
  border-radius: var(--radius-xl);
  padding: 28px;
}

.summary-panel {
  position: sticky;
  top: 18px;
}

.route-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.route-line:first-of-type {
  border-top: 0;
  padding-top: 8px;
}

.route-dot {
  display: block;
  flex: 0 0 14px;
  width: 14px;
  min-width: 14px;
  height: 14px;
  min-height: 14px;
  border-radius: 999px;
  margin-top: 6px;
  background: #000;
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.08);
}

.summary-rows,
.confirmation-meta {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.summary-row,
.confirmation-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vehicle-grid {
  display: grid;
  gap: 18px;
}

.vehicle-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255,255,255,0.86);
  box-shadow: 0 18px 50px rgba(32, 28, 24, 0.08);
}

.vehicle-card h3,
.vehicle-price strong {
  margin: 0;
}

.vehicle-features,
.vehicle-meta,
.confirmation-actions,
.checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vehicle-features span,
.vehicle-meta span,
.payment-chip {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(23, 53, 47, 0.07);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
}

.vehicle-price {
  display: grid;
  align-content: space-between;
  justify-items: end;
  gap: 12px;
}

.vehicle-price strong {
  font-size: 2rem;
}

.form-block {
  background: rgba(255,255,255,0.42);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 24px;
  padding: 22px;
}

.checkbox-grid {
  margin-bottom: 18px;
}

.checkbox-card {
  position: relative;
  flex: 1 1 220px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--line);
}

.checkbox-card input {
  position: absolute;
  inset: 18px 18px auto auto;
  width: 18px;
  height: 18px;
}

.checkbox-card span,
.checkbox-card small {
  display: block;
}

.payment-box {
  display: grid;
  gap: 16px;
}

.confirmation-shell {
  min-height: calc(100vh - 180px);
  display: grid;
  place-items: center;
}

.confirmation-card {
  width: min(860px, 100%);
}

.confirmation-actions {
  margin-top: 26px;
}

.notice {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(43, 108, 88, 0.1);
  color: var(--success);
  border: 1px solid rgba(43, 108, 88, 0.14);
  font-weight: 700;
}

.notice-elegant {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 22px;
  background: #f3f4f6;
  border: 1px solid #e2e5ea;
  color: #111827;
}

.notice-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #e5e7eb;
  color: #111827;
  font-size: 0.98rem;
  font-weight: 800;
}

.notice-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.notice-copy {
  display: grid;
  gap: 6px;
}

.notice-copy strong {
  color: #111827;
  font-size: 1rem;
  line-height: 1.2;
}

.notice-copy span {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 600;
}






@media (max-width: 1180px) {
  body[data-page='booking'] .sidebar-vehicle-photo {
    display: none;
  }

  .hero-section,
  .flow-layout,
  .service-grid,
  .steps-grid,
  .fleet-grid,
  .stats-strip,
  .service-grid-wide,
  .review-grid,
  .destination-grid,
  .vehicle-type-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-column {
    padding-top: 0;
    justify-content: flex-start;
  }

  .home-title {
    max-width: 12ch;
  }

  .site-header,
  .top-nav,
  .site-footer {
    flex-wrap: wrap;
  }

  .summary-panel {
    position: static;
  }

  .home-nav,
  .desktop-bookings-button {
    display: none;
  }

  body[data-page='home'] .mobile-menu-toggle {
    display: inline-flex;
  }

  body:not([data-page='home']) .flow-actions {
    display: flex;
  }

  body:not([data-page='home']) .mobile-menu-toggle {
    display: none;
  }

  .home-header-inner,
  .flow-header-inner {
    min-height: auto;
    padding: 16px 0;
    gap: 16px;
  }

  .brand {
    min-width: 0;
  }

  .home-brand strong {
    font-size: 1.9rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-mark-home svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 780px) {
  body[data-page='booking'] .booking-sidebar {
    display: none;
  }

  body:not([data-page='home']) .flow-header-inner {
    min-height: 74px;
    padding: 10px 0;
    gap: 12px;
  }

  body:not([data-page='home']) .flow-actions {
    gap: 8px;
  }

  body:not([data-page='home']) .flow-action {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 10px;
    font-size: 0.95rem;
  }

  .stage-progress {
    display: none;
  }

  .page-shell {
    width: min(100% - 24px, var(--container));
  }

  .home-header-inner {
    min-height: auto;
    padding: 16px 0;
  }

  .home-header-inner,
  .flow-header-inner {
    gap: 16px;
  }

  .brand {
    min-width: 0;
  }

  .home-brand strong {
    font-size: 1.791rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-mark-home svg {
    width: 24px;
    height: 24px;
  }

  .home-shell {
    padding-top: 24px;
  }

  .home-title {
    font-size: 3rem;
    margin-bottom: 24px;
  }

  .home-booking-card,
  .hero-image-card {
    max-width: none;
  }

  .two-columns,
  .three-columns,
  .vehicle-card,
  .vehicle-type-card {
    grid-template-columns: 1fr;
  }

  .vehicle-price {
    justify-items: start;
  }

  .progress-pill {
    width: 100%;
    overflow-x: auto;
  }

  .trustpilot-row {
    flex-wrap: wrap;
  }

}

@media (max-width: 1180px) {
  body[data-page='booking'] .flow-action-locale,
  body[data-page='checkout'] .flow-action-locale,
  body[data-page='confirmation'] .flow-action-locale {
    display: none;
  }
}

@media (max-width: 480px) {
  .page-shell {
    width: min(100% - 18px, var(--container));
  }

  .home-header-inner,
  .flow-header-inner {
    padding: 12px 0;
    gap: 12px;
  }

  .home-brand {
    gap: 10px;
  }

  .home-brand strong {
    font-size: 1.525rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-mark-home svg {
    width: 20px;
    height: 20px;
  }

  .mobile-menu-toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .mobile-menu-toggle span {
    width: 18px;
  }

  .mobile-menu-dialog {
    padding: 20px 18px 32px;
  }

  .mobile-menu-links {
    gap: 22px;
  }

  .mobile-menu-links a {
    font-size: 1.85rem;
  }

  .mobile-menu-bookings {
    min-height: 56px;
  }

  body:not([data-page='home']) .flow-header-inner {
    min-height: 68px;
    padding: 8px 0;
    gap: 10px;
  }

  body:not([data-page='home']) .flow-actions {
    gap: 6px;
  }

  body:not([data-page='home']) .flow-action {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 0.875rem;
  }
}

.flow-header {
  position: sticky;
  top: 0;
  z-index: 20;
}

.flow-header-inner {
  min-height: 86px;
}

.flow-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.flow-action {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.24);
  background: transparent;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.booking-shell {
  padding: 34px 0 48px;
}

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

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

.stage-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 26px;
}

.stage-progress-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stage {
  position: relative;
  text-align: center;
  padding-bottom: 30px;
}

.stage::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 11px;
  width: 100%;
  height: 4px;
  background: #d8dde6;
  z-index: 0;
}

.stage:last-child::after {
  display: none;
}

.stage span {
  color: #98a0ae;
  font-size: 1rem;
  font-weight: 700;
}

.stage i {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 4px solid #d8dde6;
  background: #fff;
  transform: translateX(-50%);
  z-index: 1;
}

.stage i::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: transparent;
}

.stage.completed::after {
  background: #111;
}

.stage.completed i {
  border-color: #111;
  background: #111;
}

.stage.completed i::after {
  content: '';
  background: transparent;
}

.stage.current span {
  color: #111;
}

.stage.current i {
  border-color: #111;
}

.stage.current i::after {
  background: transparent;
}

.stage.upcoming span {
  color: #98a0ae;
}

.map-card {
  margin-bottom: 18px;
}

.map-surface {
  position: relative;
  min-height: 430px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(247,247,247,0.96)),
    repeating-linear-gradient(0deg, rgba(190,190,190,0.2) 0 1px, transparent 1px 58px),
    repeating-linear-gradient(90deg, rgba(190,190,190,0.16) 0 1px, transparent 1px 58px);
  border: 1px solid #ececec;
}

.map-surface::before {
  content: '';
  position: absolute;
  inset: 0 0 0 48%;
  background: linear-gradient(180deg, rgba(205,208,211,0.95), rgba(188,191,194,0.95));
}

.map-surface::after {
  content: '';
  position: absolute;
  left: 32%;
  top: 54%;
  width: 18%;
  height: 26%;
  background: rgba(240, 244, 247, 0.98);
  border-radius: 46% 60% 50% 42%;
  transform: rotate(18deg);
  box-shadow: 80px -60px 0 40px rgba(245, 245, 245, 0.92);
}

.map-route {
  position: absolute;
  background: #f0ae32;
  z-index: 2;
}

.route-start {
  left: 29%;
  top: 79%;
  width: 12%;
  height: 8px;
  transform: rotate(-56deg);
  border-radius: 999px;
}

.route-mid {
  left: 39%;
  top: 52%;
  width: 31%;
  height: 8px;
  transform: rotate(-32deg);
  border-radius: 999px;
}

.route-end {
  left: 58%;
  top: 23%;
  width: 15%;
  height: 8px;
  transform: rotate(-6deg);
  border-radius: 999px;
}

.map-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1b1d20;
  border: 4px solid rgba(240, 174, 50, 0.35);
  z-index: 3;
}

.map-pin-start {
  left: 36%;
  top: 59%;
}

.map-pin-end {
  left: 69%;
  top: 17%;
}

.map-badge {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(100% - 24px, 560px);
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 14px 30px rgba(16, 19, 23, 0.12);
  font-size: 0.95rem;
  font-weight: 700;
  z-index: 4;
}

.vehicle-offers {
  display: grid;
  gap: 18px;
  padding-bottom: 136px;
}

.offer-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px 22px;
  border: 1px solid #ececec;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(18, 20, 24, 0.05);
  cursor: pointer;
}

.offer-card.selected {
  border: 3px solid #111;
  padding: 22px 20px;
}

.offer-image {
  height: 110px;
  border-radius: 14px;
  background: linear-gradient(145deg, #444 0%, #232323 60%, #575757 100%);
  position: relative;
  overflow: hidden;
}

.offer-image::before {
  content: '';
  position: absolute;
  inset: 26px 14px 18px 14px;
  border-radius: 30px 34px 20px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.04));
}

.offer-image::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 18% 50%, #131313 0 10px, transparent 11px), radial-gradient(circle at 82% 50%, #131313 0 10px, transparent 11px);
}

.offer-main {
  display: grid;
  gap: 10px;
}

.offer-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.offer-heading h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.offer-badge {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.offer-badge.value {
  color: #2e8f46;
  background: #eaf8ee;
}

.offer-badge.popular {
  color: #da4938;
  background: #fff0ed;
}

.offer-specs {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: #5b6471;
  font-weight: 700;
}

.offer-specs span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.offer-description {
  color: #6d7583;
  font-size: 0.98rem;
}

.offer-side {
  text-align: right;
  display: grid;
  gap: 6px;
  min-width: 180px;
}

.offer-old-price {
  color: #9aa4b6;
  text-decoration: line-through;
  font-size: 1rem;
  min-height: 24px;
}

.offer-price {
  font-size: 1.2rem;
  font-weight: 800;
}

.offer-card.has-discount .offer-price {
  color: #c6403d;
}

.offer-price strong {
  font-size: 1.15em;
}

.offer-subprice {
  color: #a3abbb;
  font-size: 0.82rem;
}

.booking-sidebar {
  position: sticky;
  top: 106px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(18, 20, 24, 0.08);
  padding: 24px;
}

.booking-sidebar h2 {
  margin: 0 0 18px;
  font-size: 1.9rem;
  font-weight: 800;
}

.sidebar-card {
  display: grid;
  gap: 18px;
}

.sidebar-vehicle-photo {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  border: 1px solid #e7ebf1;
  overflow: hidden;
}

.sidebar-vehicle-photo img {
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
  display: block;
}

.sidebar-topline,
.sidebar-route-row,
.sidebar-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sidebar-pill {
  padding: 8px 12px;
  border: 1px solid #dfe4ec;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #3e4754;
}

.sidebar-muted {
  color: #8c97a6;
}

.sidebar-edit-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #8c97a6;
  font: inherit;
  cursor: pointer;
}

.sidebar-edit-button:hover {
  color: #5f6b7c;
}

.sidebar-route {
  display: grid;
  gap: 6px;
  padding: 8px 0;
}

.sidebar-route-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
}

.sidebar-route-address {
  margin-top: 4px;
  color: #8c97a6;
  font-size: 0.98rem;
  line-height: 1.45;
}

.sidebar-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sidebar-tag {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #dfe4ec;
  color: #4d5664;
  font-size: 0.9rem;
  font-weight: 700;
}

.sidebar-return {
  min-height: 52px;
  border-radius: 10px;
  border: 2px solid #f0ae32;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.return-trip-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
}

.return-trip-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 13, 0.5);
  z-index: 0;
}

.return-trip-dialog {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100% - 32px));
  margin: min(14vh, 120px) auto 0;
  padding: 28px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(16, 18, 22, 0.26);
}

.return-trip-dialog h3 {
  margin: 0 0 18px;
  font-size: 1.45rem;
  font-weight: 800;
}

.return-trip-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.service-rule-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
}

.service-rule-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 13, 0.5);
}

.service-rule-dialog {
  position: relative;
  z-index: 1;
  width: min(614px, calc(100% - 32px));
  margin: min(20vh, 180px) auto 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(16, 18, 22, 0.26);
  overflow: hidden;
  text-align: center;
}

.service-rule-icon {
  width: 62px;
  height: 62px;
  margin: 28px auto 18px;
  border-radius: 999px;
  border: 4px solid #de576d;
  color: #de576d;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.service-rule-dialog h3 {
  margin: 0;
  color: #1b2230;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.service-rule-dialog p {
  max-width: 500px;
  margin: 16px auto 26px;
  padding: 0 20px;
  color: #687286;
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
  line-height: 1.5;
}

.service-rule-button {
  width: auto;
  min-width: 160px;
  min-height: 52px;
  margin: 0 auto 24px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-rule-button::before {
  content: none;
}

.return-trip-route {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.return-trip-stop {
  display: grid;
  gap: 2px;
}

.return-trip-stop strong {
  font-size: 1.05rem;
}

.return-trip-stop span {
  color: #8c97a6;
}

.return-trip-divider {
  width: 2px;
  height: 28px;
  margin-left: 8px;
  background: linear-gradient(180deg, #111 0%, #f0ae32 100%);
}

.return-trip-form {
  display: grid;
  gap: 18px;
}

.sidebar-divider {
  height: 1px;
  background: #edf0f4;
}

.sidebar-total-row strong {
  font-size: 1.15rem;
}

.sidebar-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sidebar-feature {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #dfe4ec;
  color: #4d5664;
  font-size: 0.9rem;
  font-weight: 700;
  background: #fff;
}

.selection-bar {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: min(100%, 1100px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  border-radius: 18px;
  background: rgba(255,255,255,0.98);
  border: 1px solid #ececec;
  box-shadow: 0 18px 44px rgba(18, 20, 24, 0.12);
  z-index: 15;
}

.selection-copy {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.selection-label {
  color: #6f7785;
  font-weight: 700;
}

.selection-button {
  min-width: 340px;
  min-height: 64px;
  border-radius: 12px;
  border: 0;
  background: #111;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 800;
  cursor: pointer;
}

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

  .booking-sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  .stage-progress {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 14px;
  }

  .stage::after {
    display: none;
  }

  .offer-card {
    grid-template-columns: 1fr;
  }

  .offer-side {
    text-align: left;
    min-width: 0;
  }

  .selection-bar {
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px 22px 0 0;
  }

  .selection-button {
    min-width: 0;
    width: 100%;
  }

  .return-trip-dialog {
    margin: 96px auto 0;
    padding: 22px 18px 18px;
  }

  .service-rule-dialog {
    width: calc(100% - 24px);
    margin-top: 48px;
    border-radius: 16px;
  }

  .service-rule-icon {
    width: 56px;
    height: 56px;
    margin: 26px auto 16px;
    border-width: 4px;
    font-size: 1.8rem;
  }

  .service-rule-dialog p {
    margin: 14px auto 24px;
    padding: 0 18px;
    font-size: 0.98rem;
  }

  .service-rule-button {
    min-width: 140px;
    min-height: 48px;
    margin: 0 auto 20px;
    padding: 0 24px;
  }
}

@media (max-width: 1180px) {
  body[data-page='booking'] .stage-progress,
  body[data-page='checkout'] .stage-progress {
    display: none;
  }

  body[data-page='booking'] .map-live {
    min-height: calc(100vw - 48px);
  }
}

.checkout-shell {
  padding: 34px 0 48px;
}

.checkout-layout-modern {
  align-items: start;
}

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

.checkout-intro {
  margin-bottom: 24px;
}

.checkout-intro h1 {
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.checkout-intro p:last-child {
  max-width: 720px;
  color: #6f7785;
  font-size: 1rem;
  line-height: 1.7;
}

.modern-checkout-form {
  gap: 20px;
}

.checkout-card-block {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid #ececec;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(18, 20, 24, 0.05);
}

.checkout-block-head {
  display: grid;
  gap: 6px;
}

.checkout-block-head h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.checkout-block-head p {
  margin: 0;
  color: #7b8492;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.option-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 138px;
  padding: 20px 18px;
  border: 1px solid #ececec;
  border-radius: 18px;
  background: #fafafa;
}

.option-card input {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 18px;
  height: 18px;
}

.option-card strong {
  display: block;
  padding-right: 24px;
  font-size: 1rem;
}

.option-card span {
  color: #7b8492;
  line-height: 1.6;
}

.field-card-textarea textarea {
  min-height: 110px;
  resize: vertical;
}

.payment-switches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkout-submit-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  border-radius: 18px;
  background: rgba(255,255,255,0.98);
  border: 1px solid #ececec;
  box-shadow: 0 18px 44px rgba(18, 20, 24, 0.08);
}

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

  .checkout-submit-bar {
    flex-direction: column;
    align-items: stretch;
  }
}

.confirmation-shell-modern {
  padding: 34px 0 56px;
}

.confirmation-hero-card {
  padding: 34px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.confirmation-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: #ecf9f0;
  color: #2f8d45;
  font-weight: 800;
  margin-bottom: 16px;
}

.confirmation-hero-card h1 {
  margin: 0;
  font-size: clamp(2.8rem, 4.8vw, 4.4rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.confirmation-lead {
  max-width: 760px;
  margin: 16px 0 0;
  color: #6f7785;
  font-size: 1.02rem;
  line-height: 1.7;
}

.confirmation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  margin-top: 30px;
}

.confirmation-summary-card,
.confirmation-support-card {
  padding: 24px;
  border: 1px solid #ececec;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(18, 20, 24, 0.05);
}

.confirmation-summary-card h2,
.confirmation-support-card h2 {
  margin: 0 0 16px;
  font-size: 1.3rem;
  font-weight: 800;
}

.confirmation-meta {
  display: grid;
  gap: 14px;
  margin-top: 0;
}

.confirmation-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 14px;
  border-bottom: 1px solid #eff2f6;
}

.confirmation-item:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.confirmation-item span {
  color: #7f8896;
}

.confirmation-item strong {
  text-align: right;
}

.confirmation-highlight {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f5f8fb;
  color: #2e3642;
  font-weight: 700;
}

.confirmation-note-list {
  display: grid;
  gap: 14px;
}

.confirmation-note-item {
  display: grid;
  gap: 10px;
  padding: 18px 0;
  border-bottom: 1px solid #eff2f6;
}

.confirmation-note-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.confirmation-note-item strong {
  font-size: 1.05rem;
  line-height: 1.3;
}

.confirmation-note-item span {
  color: #7f8896;
  line-height: 1.65;
}

.confirmation-note-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f1f3f5;
  color: #111;
}

.confirmation-note-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.modern-confirmation-actions {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 320px));
  gap: 14px;
}

.confirmation-primary-action {
  text-decoration: none;
  min-width: 0;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.confirmation-secondary-action {
  min-height: 64px;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 22px;
  padding-right: 22px;
  font-size: 1.05rem;
}

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

  .confirmation-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .confirmation-item strong {
    text-align: left;
  }

  .modern-confirmation-actions {
    grid-template-columns: 1fr;
  }
}

.field-card {
  position: relative;
}

.address-suggestions {
  position: absolute;
  left: 16px;
  right: 16px;
  top: calc(100% - 6px);
  display: none;
  z-index: 12;
  border: 1px solid #e4e8ef;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(18, 20, 24, 0.12);
  overflow: hidden;
}

.address-suggestions.active {
  display: block;
}

.address-suggestion-item {
  width: 100%;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid #eef1f5;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.address-suggestion-item:last-child {
  border-bottom: 0;
}

.address-suggestion-item strong {
  font-size: 0.95rem;
}

.address-suggestion-item span {
  color: #7f8896;
  font-size: 0.9rem;
  line-height: 1.45;
}

.map-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #ececec;
  background: #f4f6f8;
}

.map-live {
  min-height: 430px;
}

.map-live .mapboxgl-map,
.map-live .mapboxgl-canvas {
  border-radius: 18px;
}

.map-fallback-card {
  min-height: 430px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 28px;
  text-align: center;
  background: linear-gradient(180deg, #f7f8fa, #eef1f5);
}

.map-fallback-card strong {
  font-size: 1.1rem;
}

.map-fallback-card span {
  max-width: 460px;
  color: #6f7785;
  line-height: 1.6;
}

.map-badge {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
}

.search-button:disabled {
  opacity: 0.78;
  cursor: wait;
}

.address-field {
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.address-field.is-active {
  border-color: #7b7b7d;
  box-shadow: inset 0 0 0 3px rgba(123, 123, 125, 0.72);
  z-index: 14;
}

.field-input-wrap {
  align-items: center;
}

.field-input-wrap input[data-address-input] {
  padding-right: 42px;
}

.field-icon-location {
  color: #8a8f99;
}

.clear-address-button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.address-field.has-value .clear-address-button,
.address-field.is-active .clear-address-button {
  display: inline-flex;
}

.address-suggestions {
  left: -1px;
  right: -1px;
  top: calc(100% + 10px);
  border: 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(22, 27, 33, 0.22);
}

.address-suggestion-item {
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0 10px;
  padding: 18px 26px;
  border-bottom: 1px solid #e8ebf0;
}

.address-suggestion-item::before {
  content: '✈';
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-top: 4px;
  color: #49505d;
  font-size: 1.4rem;
}

.address-suggestion-item strong {
  grid-column: 2;
  font-size: 0.98rem;
  font-weight: 700;
  color: #1f2430;
  margin-bottom: 2px;
}

.address-suggestion-item span {
  grid-column: 2;
  color: #49505d;
  font-size: 0.9rem;
}

.address-suggestion-footer {
  padding: 14px 26px 16px;
  color: #707786;
  font-size: 0.8rem;
  border-top: 1px solid #eceff4;
}

.address-suggestion-footer strong {
  color: #111;
}

.autocomplete-status {
  margin-top: -8px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid #f0d0a7;
  background: #fff7ed;
  color: #8b5a19;
  font-size: 0.88rem;
  line-height: 1.45;
}

.autocomplete-status[data-status='error'] {
  border-color: #f1c3c3;
  background: #fff3f3;
  color: #9f3030;
}

.autocomplete-status[data-status='info'] {
  border-color: #d9e1ec;
  background: #f7f9fc;
  color: #516071;
}

.offer-image.has-photo {
  background: linear-gradient(180deg, #f8f8f8 0%, #ececec 100%);
}

.offer-image.has-photo::before,
.offer-image.has-photo::after {
  display: none;
}

.offer-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.option-grid-two {
  grid-template-columns: minmax(0, 1fr);
}

.option-card-compact {
  min-height: auto;
  gap: 10px;
}

.child-seat-toggle {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
}

.child-seat-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.child-seat-toggle-box {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #111;
  position: relative;
  flex: 0 0 32px;
}

.child-seat-toggle-box::after {
  content: '';
  position: absolute;
  left: 11px;
  top: 7px;
  width: 7px;
  height: 13px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.child-seat-panel {
  display: grid;
  border: 1px solid #dfe4eb;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.child-seat-panel[hidden] {
  display: none;
}

.child-seat-option {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 150px;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid #e6ebf2;
}

.child-seat-option:last-of-type {
  border-bottom: 1px solid #e6ebf2;
}

.child-seat-illustration {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 20px;
  background: linear-gradient(180deg, #eff4f9 0%, #dde6ef 100%);
  color: #111827;
}

.child-seat-illustration.booster {
  background: linear-gradient(180deg, #eff4f9 0%, #dde6ef 100%);
}

.child-seat-illustration svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.child-seat-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
}

.child-seat-copy {
  display: grid;
  gap: 8px;
}

.child-seat-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.child-seat-title-row strong {
  font-size: 1.1rem;
}

.child-seat-free {
  padding: 4px 10px;
  border: 1px solid #39a655;
  border-radius: 10px;
  color: #39a655;
  font-size: 0.86rem;
  font-weight: 800;
}

.child-seat-copy p {
  margin: 0;
  color: #293241;
  line-height: 1.55;
}

.child-seat-select-wrap {
  position: relative;
  display: grid;
  justify-items: end;
}

.child-seat-select-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 18px;
  width: 12px;
  height: 12px;
  border-right: 2.5px solid #111827;
  border-bottom: 2.5px solid #111827;
  transform: translateY(-62%) rotate(45deg);
  pointer-events: none;
}

.child-seat-select-wrap select {
  width: 100%;
  max-width: 140px;
  height: 56px;
  padding: 0 46px 0 18px;
  border: 1px solid #dde4ee;
  border-radius: 12px;
  background: #fff;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.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;
}

@media (max-width: 980px) {
  .child-seat-option {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .child-seat-select-wrap {
    width: 100%;
    justify-items: start;
  }
}

@media (max-width: 780px) {
  .child-seat-option {
    gap: 14px;
  }

  .child-seat-select-wrap {
    width: auto;
    min-width: 116px;
    max-width: 132px;
  }

  .child-seat-select-wrap::after {
    right: 16px;
    width: 10px;
    height: 10px;
    border-right-width: 2px;
    border-bottom-width: 2px;
  }

  .child-seat-select-wrap select {
    width: 100%;
    max-width: none;
    height: 48px;
    padding: 0 38px 0 14px;
    border-radius: 10px;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 48px;
  }

}

.child-seat-toggle-secondary {
  margin-top: -2px;
}

.child-seat-toggle-box {
  border: 1px solid #cfd6df;
  background: #fff;
  transition: background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.child-seat-toggle-box::after {
  opacity: 0;
  transition: opacity 140ms ease;
}

.child-seat-toggle input:checked + .child-seat-toggle-box {
  border-color: #111;
  background: #111;
}

.child-seat-toggle input:checked + .child-seat-toggle-box::after {
  opacity: 1;
}

.child-seat-toggle input:focus-visible + .child-seat-toggle-box {
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.12);
}

.child-seat-price {
  padding: 4px 10px;
  border: 1px solid #d9a441;
  border-radius: 10px;
  color: #9b6c14;
  font-size: 0.86rem;
  font-weight: 800;
  background: #fff8e8;
}

.child-seat-illustration.extra-stop {
  background: linear-gradient(180deg, #eff4f9 0%, #dde6ef 100%);
  color: #111827;
}

.extra-stop-panel .child-seat-option {
  border-bottom: 0;
}

.confirmation-section {
  display: grid;
  gap: 10px;
}

.confirmation-section h3 {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7b8492;
}

.confirmation-section-card {
  display: grid;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid #eff2f6;
  border-radius: 16px;
  background: #fcfcfd;
}

.confirmation-section-card .confirmation-item:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.payment-redirect-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid #ececec;
  border-radius: 18px;
  background: linear-gradient(180deg, #fcfcfd 0%, #f7f9fc 100%);
}

.payment-redirect-card strong {
  font-size: 1.05rem;
}

.payment-redirect-card p {
  margin: 0;
  color: #6f7785;
  line-height: 1.65;
}

.payment-redirect-list {
  margin: 0;
  padding-left: 18px;
  color: #2e3642;
  display: grid;
  gap: 8px;
}

.checkout-status-message {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #f1c3c3;
  background: #fff3f3;
  color: #9f3030;
  font-size: 0.92rem;
  line-height: 1.5;
}

.checkout-status-message[data-status='info'] {
  border-color: #d9e1ec;
  background: #f7f9fc;
  color: #516071;
}

.checkout-status-message[data-status='success'] {
  border-color: #cde8d6;
  background: #eefaf2;
  color: #237445;
}

.my-bookings-shell {
  padding-top: 34px;
}

.my-bookings-hero {
  align-items: center;
}

.my-bookings-visual {
  align-self: center;
  padding-top: 0;
}

.my-bookings-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.my-bookings-lead {
  max-width: 620px;
  margin: 0;
  color: #626c7e;
  font-size: 1.05rem;
  line-height: 1.7;
}

.my-bookings-card {
  max-width: 640px;
}

.my-bookings-card-inner {
  display: grid;
  gap: 18px;
}

.my-bookings-card-inner h2 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.my-bookings-card-inner p {
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
}

.my-bookings-form {
  display: grid;
  gap: 16px;
}

.my-bookings-field {
  background: #efefef;
  border: 1px solid #efefef;
}

.my-bookings-submit {
  min-height: 64px;
}

.my-bookings-status {
  margin-top: 2px;
}

.my-bookings-image-card {
  overflow: hidden;
}

/* Homepage booking form hard-fix */
.home-booking-form {
  --home-booking-field-height: 90px;
}

.home-booking-form .field-card,
.home-booking-form .address-field {
  position: relative;
  overflow: visible;
  min-width: 0;
  min-height: var(--home-booking-field-height);
  background: #efefef;
  border: 1px solid #efefef;
  border-radius: 10px;
  align-content: space-between;
}

.home-booking-form .address-field {
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.home-booking-form .address-field.is-active {
  border-color: #111;
  box-shadow: inset 0 0 0 2px rgba(17, 17, 17, 0.78);
  z-index: 20;
}

.home-booking-form .field-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.home-booking-form .field-input-wrap-compact {
  min-height: 36px;
}

.home-booking-form .return-button {
  min-height: var(--home-booking-field-height);
}

.home-booking-form .passenger-card {
  min-height: var(--home-booking-field-height);
}

.home-booking-form input[data-address-input] {
  min-width: 0;
  flex: 1 1 auto;
  padding-right: 58px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-booking-form .field-icon-location {
  color: #8a8f99;
  flex: 0 0 22px;
}

.home-booking-form .clear-address-button {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
}

.home-booking-form .address-field.has-value .clear-address-button,
.home-booking-form .address-field.is-active .clear-address-button {
  display: inline-flex;
}

.home-booking-form .address-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  display: none;
  z-index: 30;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(22, 27, 33, 0.22);
  overflow: hidden;
}

.home-booking-form .address-suggestions.active {
  display: block;
}

.home-booking-form .address-suggestion-item {
  width: 100%;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0 10px;
  align-items: start;
  padding: 14px 26px;
  border: 0;
  border-bottom: 1px solid #e8ebf0;
  background: #fff;
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
}

.home-booking-form .address-suggestion-item:last-child {
  border-bottom: 0;
}

.home-booking-form .address-suggestion-item::before {
  content: '⌖';
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-top: 4px;
  color: #49505d;
  font-size: 1.35rem;
}

.home-booking-form .address-suggestion-item.is-airport::before {
  content: '✈';
}

.home-booking-form .address-suggestion-item strong,
.home-booking-form .address-suggestion-item span {
  display: block;
  min-width: 0;
}

.home-booking-form .address-suggestion-item strong {
  grid-column: 2;
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: #1f2430;
  line-height: 1.15;
}

.home-booking-form .address-suggestion-item span {
  grid-column: 2;
  margin-top: 0;
  color: #7b8492;
  font-size: 0.9rem;
  line-height: 1.18;
}

.home-booking-form .address-suggestion-footer {
  padding: 14px 26px 16px;
  color: #707786;
  font-size: 0.8rem;
  border-top: 1px solid #eceff4;
}

.home-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 10px 0 18px;
}

.home-feature-tile {
  min-height: 278px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 26px;
  background: #f3f4f6;
  border: 1px solid #e4e7ec;
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.05);
}

.home-feature-tile-icon {
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: #111;
}

.home-feature-tile-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}

.home-feature-tile-icon img {
  width: 32px;
  height: 32px;
  display: block;
}

.home-feature-tile strong {
  display: block;
  margin-top: 2px;
  font-size: 1.3rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #111827;
}

.home-feature-tile p {
  margin: 0;
  color: #6f7785;
  line-height: 1.6;
}

.home-how-section {
  margin-top: 36px;
  background: #050505;
  color: #fff;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
}

.home-how-inner {
  min-height: 430px;
  padding: 72px 56px 78px;
  display: grid;
  gap: 42px;
  position: relative;
  z-index: 1;
}

.home-how-section::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: min(320px, 32%);
  background: radial-gradient(circle at left center, rgba(99, 57, 115, 0.24), transparent 72%);
  pointer-events: none;
}

.home-how-header {
  max-width: 620px;
}

.home-how-eyebrow {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
}

.home-how-header h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.home-how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.home-how-step {
  min-height: 228px;
  padding: 32px 30px 30px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  align-content: start;
  gap: 18px;
}

.home-how-badge {
  width: 62px;
  height: 62px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #f5b33a;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.home-how-badge-success {
  background: rgba(84, 208, 135, 0.2);
  color: #54d087;
}

.home-how-badge-success svg {
  width: 28px;
  height: 28px;
}

.home-how-step h3 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.home-how-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 34ch;
}

.home-fleet-section {
  padding: 58px 0 18px;
}

.home-fleet-header {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.home-fleet-header .eyebrow {
  margin-bottom: 12px;
}

.home-fleet-header h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #1b2230;
}

.home-fleet-header p:last-child {
  margin: 14px 0 0;
  color: #6d7482;
  font-size: 1.1rem;
  line-height: 1.6;
}

.home-fleet-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.home-fleet-card {
  min-height: 378px;
  padding: 18px 18px 24px;
  border-radius: 20px;
  background: #f3f4f6;
  border: 1px solid #e7e9ee;
  display: grid;
  align-content: start;
  gap: 18px;
}

.home-fleet-image-wrap {
  min-height: 210px;
  display: grid;
  place-items: center;
}

.home-fleet-image-wrap img {
  width: 100%;
  max-width: 244px;
  height: auto;
  display: block;
  object-fit: contain;
}

.home-fleet-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.home-fleet-card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #1f2735;
}

.home-fleet-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.home-fleet-stat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #4a5260;
  font-size: 0.95rem;
  font-weight: 800;
}

.home-fleet-stat svg {
  width: 18px;
  height: 18px;
  display: block;
  color: #b1b8c3;
}

.home-fleet-card p {
  margin: 0;
  color: #6e7684;
  font-size: 0.98rem;
  line-height: 1.5;
}

.home-reviews-section {
  margin-top: 40px;
  padding: 54px 42px 48px;
  background: #f5f7fa;
  border-radius: 32px;
}

.home-reviews-inner {
  display: grid;
  gap: 30px;
}

.home-reviews-header {
  display: grid;
  gap: 22px;
}

.home-reviews-title-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.home-reviews-title-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: #1b2230;
}

.home-reviews-title-icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

.home-reviews-title-row h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3.6vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #1b2230;
}

.home-reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #394253;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}

.home-reviews-stars,
.home-review-stars {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 8px;
  background: #00b67a;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.home-reviews-summary strong {
  color: #111827;
}

.home-reviews-brand {
  color: #111827;
  font-size: 1.1rem;
  font-weight: 800;
}

.home-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.home-review-card {
  min-height: 304px;
  padding: 26px 24px 22px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e7ebf1;
  box-shadow: 0 14px 32px rgba(31, 41, 55, 0.05);
  display: grid;
  align-content: start;
  gap: 18px;
}

.home-review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-review-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef2f7;
  border: 1px solid #cfd7e3;
  color: #334155;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-review-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #1f2735;
}

.home-review-card p {
  margin: 0;
  color: #495266;
  font-size: 1rem;
  line-height: 1.6;
}

.home-review-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #5f697d;
  font-size: 0.95rem;
}

.home-reviews-footer {
  margin: 0;
  text-align: center;
  color: #445066;
  font-size: 1.05rem;
}

.home-destinations-section {
  margin-top: 52px;
  display: grid;
  gap: 28px;
}

.home-destinations-header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px 40px;
  align-items: end;
}

.home-destinations-header h2 {
  margin: 10px 0 0;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  color: #141b28;
}

.home-destinations-header p:last-child {
  margin: 0;
  color: #5f697d;
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 720px;
}

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

.home-destination-card {
  position: relative;
  min-height: 380px;
  border-radius: 28px;
  overflow: hidden;
  background: #d9dee7;
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.08);
}

.home-destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-destination-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 12, 18, 0.02) 0%, rgba(10, 12, 18, 0.16) 38%, rgba(10, 12, 18, 0.82) 100%);
}

.home-destination-overlay {
  position: absolute;
  inset: auto 24px 22px;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.home-destination-overlay h3 {
  margin: 0;
  color: #fff;
  font-size: 1.95rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.home-destination-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.45;
}

.home-destinations-actions {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.home-destinations-actions .button {
  min-width: 260px;
  justify-content: center;
}

.home-destinations-actions .button-secondary {
  background: #fff;
  color: #111827;
  border: 1px solid #d6dde8;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
}

.home-destinations-actions .button-secondary:hover {
  background: #f8fafc;
  border-color: #c7d0dc;
}

.destinations-page-shell {
  padding-top: 36px;
}

.destinations-page-main {
  display: grid;
  gap: 44px;
  padding-bottom: 20px;
}

.destinations-page-hero {
  display: grid;
  gap: 18px;
  max-width: 860px;
  padding-top: 12px;
}

.destinations-page-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  color: #121925;
}

.destinations-page-hero p:last-child {
  margin: 0;
  color: #5f697d;
  font-size: 1.14rem;
  line-height: 1.7;
}

.destinations-page-section {
  margin-top: 0;
  padding-top: 0;
}

.destinations-page-subheader {
  align-items: start;
}

.home-destinations-grid-extended .home-destination-card {
  min-height: 340px;
}

@media (max-width: 760px) {
  .home-booking-form input[data-address-input] {
    font-size: 16px;
    line-height: 1.35;
    padding-right: 52px;
  }

  .home-booking-form .clear-address-button {
    width: 34px;
    height: 34px;
    font-size: 1.6rem;
  }

  .home-booking-form .address-suggestion-item {
    padding: 16px 18px;
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .home-feature-strip {
    grid-template-columns: 1fr;
  }

  .home-how-inner {
    min-height: 0;
    padding: 54px 24px 60px;
  }

  .home-how-grid {
    grid-template-columns: 1fr;
  }

  .home-how-step {
    min-height: 0;
  }

  .home-fleet-grid {
    grid-template-columns: 1fr;
  }

  .home-fleet-card {
    min-height: 0;
  }

  .home-reviews-section {
    padding: 42px 20px 38px;
  }

  .home-reviews-grid {
    grid-template-columns: 1fr;
  }

  .home-review-card {
    min-height: 0;
  }

  .home-review-card-top,
  .home-review-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-destinations-header {
    grid-template-columns: 1fr;
  }

  .home-destinations-grid {
    grid-template-columns: 1fr;
  }

  .home-destination-card {
    min-height: 320px;
  }

  .destinations-page-shell {
    padding-top: 12px;
  }

  .destinations-page-main {
    gap: 30px;
  }

  .destinations-page-hero p:last-child {
    font-size: 1rem;
  }

  .home-destinations-grid-extended .home-destination-card {
    min-height: 320px;
  }
}

/* Homepage date and time field polish */
.home-booking-form .field-card:has(input[type='date']),
.home-booking-form .field-card:has(input[type='time']) {
  transition: border-color 160ms ease, box-shadow 160ms ease;
  position: relative;
}

.home-booking-form .field-card:has(input[type='date']:focus),
.home-booking-form .field-card:has(input[type='date']:focus-visible),
.home-booking-form .field-card:has(input[type='time']:focus),
.home-booking-form .field-card:has(input[type='time']:focus-visible),
.home-booking-form .field-card:has(input[type='date'][aria-expanded='true']),
.home-booking-form .field-card:has(input[type='time'][aria-expanded='true']) {
  border-color: #111;
  box-shadow: inset 0 0 0 2px rgba(17, 17, 17, 0.82);
}

.home-booking-form input[type='date'],
.home-booking-form input[type='time'] {
  color: #1b1f24;
  accent-color: #f5b400;
  font-weight: 700;
}

.home-booking-form .field-card:has(input[type='date'])::after,
.home-booking-form .field-card:has(input[type='time'])::after {
  content: '';
  position: absolute;
  right: 18px;
  bottom: 20px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  pointer-events: none;
}

.home-booking-form input[type='date']::-webkit-calendar-picker-indicator,
.home-booking-form input[type='time']::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  right: 0;
  width: 44px;
  height: 44px;
}

/* Homepage footer */
.home-footer {
  margin-top: 56px;
  padding: 42px 0 24px;
  background: #050505;
  color: #fff;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
  padding-right: max(24px, calc((100vw - var(--container)) / 2));
  padding-bottom: 32px;
}

.home-footer a {
  color: #fff;
  text-decoration: none;
}

.home-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.home-footer-brand {
  color: #fff;
}

.home-footer-brand strong {
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.home-footer-locale {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d7d7d7;
  font-weight: 700;
}

.home-footer-locale > span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.home-footer-locale > span:first-child svg {
  display: block;
}

.home-footer-social {
  display: flex;
  gap: 16px;
  margin-bottom: 42px;
}

.home-footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
}

.home-footer-social a img {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.home-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 8px 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.home-footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.home-footer-column h3 {
  margin: 0 0 10px;
  font-size: 1.7rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.home-footer-column a,
.home-footer-column span {
  color: #d7d7d7;
  line-height: 1.65;
}

.home-footer-column a:hover {
  color: #fff;
}

.home-footer-contact-group {
  display: grid;
  gap: 3px;
}

.home-footer-contact-group a {
  font-size: 1.1rem;
  color: #fff;
}

.home-footer-contact-group .home-footer-meta {
  color: #777777;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 580;
}

.home-footer-trustpilot {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.home-footer-trustpilot-brand {
  color: #fff;
  font-weight: 800;
  font-size: 1.35rem;
}

.home-footer-trustpilot-stars {
  color: #00b67a;
  letter-spacing: 0.12em;
  font-size: 1.3rem;
}

.home-footer-trustpilot-score {
  color: #d7d7d7;
  font-size: 0.95rem;
}

.home-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
}

.home-footer-bottom-left {
  color: #b4b4b8;
  line-height: 1.5;
}

.home-footer-payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.home-footer-payments span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #e6e6e8;
  font-size: 0.9rem;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .home-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-footer {
    margin-top: 42px;
    padding: 34px 18px 22px;
  }

  .home-footer-top,
  .home-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-footer-payments {
    justify-content: flex-start;
  }
}

/* Checkout field outlines */
.modern-checkout-form .field-card {
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.modern-checkout-form .field-card:has(input:focus),
.modern-checkout-form .field-card:has(input:focus-visible),
.modern-checkout-form .field-card:has(select:focus),
.modern-checkout-form .field-card:has(select:focus-visible),
.modern-checkout-form .field-card:has(textarea:focus),
.modern-checkout-form .field-card:has(textarea:focus-visible) {
  border-color: #111;
  box-shadow: inset 0 0 0 2px rgba(17, 17, 17, 0.82);
}

@media (max-width: 760px) {
  .my-bookings-shell {
    padding-top: 12px;
  }

  .my-bookings-submit {
    min-height: 58px;
  }
}
