/* ============================================
   PRESTIVA LIMO — Premium Limousine Website
   ============================================ */

:root {
  --bg-deep: #0a0a0b;
  --bg-card: #121214;
  --bg-elevated: #1a1a1e;
  --gold: #b8963e;
  --gold-light: #d4af37;
  --gold-dim: rgba(201, 169, 98, 0.15);
  --text: #f5f3ef;
  --text-muted: #9a9690;
  --border: rgba(201, 169, 98, 0.2);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --success: #25d366;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 80px;
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

body.menu-open,
body.booking-modal-open {
  overflow: hidden;
  touch-action: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* Cursor glow (desktop) */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-dim) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s;
}

@media (min-width: 1024px) {
  .cursor-glow { opacity: 1; }
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s, border-color 0.4s;
}

.header--scrolled {
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo__img {
  height: 56px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
  background: #fff;
  border-radius: 6px;
  padding: 2px 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.logo:hover .logo__img {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 169, 98, 0.25);
}

.logo__img--sm {
  height: 48px;
  max-width: 120px;
  padding: 2px 5px;
}

.logo__text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  font-weight: 400;
}

.logo__text em {
  font-style: normal;
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

.nav__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem !important;
  background: var(--success) !important;
  color: #fff !important;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.nav__whatsapp::after { display: none !important; }

.nav__whatsapp:hover {
  color: #fff !important;
  background: #20bd5a !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.nav__whatsapp svg {
  flex-shrink: 0;
}

.nav__cta {
  padding: 0.65rem 1.4rem !important;
  background: linear-gradient(135deg, var(--gold), #a88b4a);
  color: var(--bg-deep) !important;
  border-radius: 100px;
  font-weight: 600 !important;
}

.nav__cta::after { display: none !important; }
.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.35);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.burger span {
  width: 26px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
}

.burger--active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.burger--active span:nth-child(2) { opacity: 0; }
.burger--active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Nav overlay + mobile bar (hidden on desktop) */
.nav-backdrop {
  display: none;
}

.mobile-bar {
  display: none;
}

@media (max-width: 900px) {
  :root {
    --header-h: 64px;
    --mobile-bar-h: 64px;
  }

  html {
    scroll-padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 8px);
  }

  body {
    padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px));
  }

  .header {
    height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
    padding-top: env(safe-area-inset-top, 0px);
    background: rgba(10, 10, 11, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
  }

  .header__inner {
    height: var(--header-h);
    min-height: var(--header-h);
  }

  .logo__img {
    height: 44px;
    max-width: 100px;
    padding: 2px 5px;
  }

  .burger {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    margin-right: -4px;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease-out), visibility 0.35s;
  }

  .nav-backdrop--visible {
    opacity: 1;
    visibility: visible;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(300px, 88vw);
    height: 100%;
    height: 100dvh;
    padding: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 1.5rem) 1.75rem 2rem;
    background: var(--bg-card);
    border-left: 1px solid var(--border-subtle);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    opacity: 1;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out), visibility 0.4s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
  }

  .nav--open {
    visibility: visible;
    transform: translateX(0);
  }

  .nav a {
    font-size: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-subtle);
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav a::after {
    display: none;
  }

  .nav__whatsapp,
  .nav__cta {
    margin-top: 1rem;
    justify-content: center !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 48px !important;
    border-bottom: none !important;
  }

  .nav__whatsapp {
    order: 1;
  }

  .nav__cta {
    order: 2;
    margin-top: 0.65rem;
  }

  .mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 997;
    gap: 0.6rem;
    padding: 0.55rem 0.85rem;
    padding-bottom: max(0.55rem, env(safe-area-inset-bottom));
    background: rgba(10, 10, 11, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-subtle);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
  }

  .mobile-bar__btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 48px;
    padding: 0 1rem;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: transform 0.2s, opacity 0.2s;
  }

  .mobile-bar__btn:active {
    transform: scale(0.97);
    opacity: 0.9;
  }

  .mobile-bar__btn--book {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--bg-deep);
  }

  .mobile-bar__btn--wa {
    background: var(--success);
    color: #fff;
  }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.9rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, background 0.3s;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--bg-deep);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 98, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn--lg { padding: 1rem 2rem; font-size: 0.95rem; }
.btn--full { width: 100%; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: auto;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  overflow: hidden;
}

/* Hero plein écran — style landing (Platinum Limousine) */
.hero--landing {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 2rem) 0 3rem;
}

.hero--landing .hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.hero--landing .hero__subtitle {
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  margin-bottom: 1.5rem;
}

.hero--landing .hero__route-banner {
  margin-inline: auto;
  text-align: left;
  max-width: 420px;
}

.hero--landing .hero__stats {
  justify-content: center;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2rem;
}

.hero__cta {
  min-width: 200px;
  min-height: 52px;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.hero__scroll:hover {
  color: var(--gold);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.35) 0%, var(--bg-deep) 92%),
    linear-gradient(90deg, rgba(10,10,11,0.75) 0%, rgba(10,10,11,0.5) 45%, rgba(10,10,11,0.85) 100%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr minmax(280px, 400px);
  gap: 2rem;
  align-items: start;
}

@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.hero__intro {
  padding-top: 0.5rem;
}

.hero__link-tarifs {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.hero__link-tarifs:hover {
  color: var(--gold-light);
}

/* Booking panel — style Premiummtl */
.booking-panel {
  background: rgba(18, 18, 20, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
  transition: border-color 0.4s, box-shadow 0.4s;
  max-width: 400px;
  width: 100%;
  justify-self: end;
}

.booking-panel--active {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 24px 80px rgba(0, 0, 0, 0.55);
}

/* Modal réservation — centré à l'écran */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  padding-top: max(1rem, env(safe-area-inset-top));
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}

.booking-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.booking-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(92vh, 92dvh);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  animation: modalIn 0.4s var(--ease-out);
}

.booking-modal.is-open .booking-modal__dialog {
  animation: modalIn 0.4s var(--ease-out);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(16px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.booking-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.booking-modal__close:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.booking-modal__hint {
  display: none;
  font-size: 0.8rem;
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 0.65rem;
  padding: 0 2.5rem;
  line-height: 1.4;
}

.booking-modal__hint:not(:empty) {
  display: block;
}

.booking-panel--modal {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 1.35rem 1.25rem 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.65);
}

.booking-panel--modal .booking-form__grid {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 520px) {
  .booking-panel--modal .booking-form__grid {
    grid-template-columns: 1fr;
  }

  .booking-modal__dialog {
    width: 100%;
    max-height: 95dvh;
    border-radius: 16px 16px 0 0;
    align-self: flex-end;
  }

  .booking-modal {
    align-items: flex-end;
    padding: 0;
  }
}

.booking-panel__head {
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border-subtle);
}

.booking-panel__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.booking-panel__sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.booking-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 0.65rem;
}

.booking-form__grid .form-row--full {
  grid-column: 1 / -1;
}

.booking-form__section {
  margin-top: 0.15rem;
}

.booking-form__section-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.booking-form__row-triple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.booking-form__row-triple .form-row label {
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

@media (max-width: 500px) {
  .booking-form__grid {
    grid-template-columns: 1fr;
  }
}

.booking-form .form-row {
  margin-bottom: 0;
}

.booking-form .form-row label {
  font-size: 0.62rem;
  margin-bottom: 0.25rem;
}

.booking-form .form-row input,
.booking-form .form-row select {
  padding: 0.5rem 0.65rem;
  font-size: 0.8rem;
  border-radius: 8px;
}

.booking-form__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-subtle);
}

.booking-form__price {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.booking-form__price-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.booking-form__footer .price-preview {
  font-family: var(--font-display);
  font-size: 1.15rem;
  padding: 0;
}

.booking-form__submit {
  flex: 1;
  min-width: 140px;
  padding: 0.65rem 1rem !important;
  font-size: 0.78rem !important;
}

.booking-form__note {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 0.62rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

.booking-form__note a {
  color: var(--gold);
}

.booking-form__note a:hover {
  color: var(--gold-light);
}

.footer__brand a {
  color: var(--gold);
  font-size: 0.85rem;
}

.booking-panel .selected-vehicle {
  margin-bottom: 0.65rem;
  margin-top: 0;
  padding: 0.6rem 0.85rem;
  font-size: 0.75rem;
}

@media (max-width: 960px) {
  .booking-panel {
    max-width: none;
    justify-self: stretch;
  }
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.hero__line {
  display: block;
  font-size: clamp(3.5rem, 12vw, 7rem);
  letter-spacing: 0.02em;
}

.hero__line--gold {
  color: var(--gold-light);
  font-style: italic;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.hero__subtitle span {
  color: var(--text);
  font-weight: 400;
}

.hero__route-banner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  background: rgba(201, 169, 98, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 520px;
}

.hero__route-banner svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.hero__route-banner strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.hero__route-banner span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero__payment {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
}

.hero__payment strong {
  color: var(--gold-light);
}

/* Payment banner */
.payment-banner {
  padding: 1.5rem 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-subtle);
}

.payment-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.payment-banner__cards {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.payment-brands {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.payment-brand {
  display: block;
  line-height: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.payment-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.payment-brand svg {
  display: block;
  width: 48px;
  height: auto;
}

.payment-banner__cards p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

.payment-banner__cards strong {
  color: var(--text);
}

.payment-banner__currency {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold-light);
  font-weight: 600;
}

.stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}


/* ========== SECTIONS ========== */
.section {
  padding: 7rem 0;
  position: relative;
}

.section__head {
  margin-bottom: 4rem;
  max-width: 560px;
}

.section__head--center {
  text-align: center;
  margin-inline: auto;
}

.section__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Animate on scroll */
.has-js [data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.has-js [data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== SERVICES ========== */
.services {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-card) 50%, var(--bg-deep) 100%);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: border-color 0.4s, transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.service-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.service-card--wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 600px) {
  .service-card--wide { flex-direction: column; align-items: flex-start; }
}

.service-card__icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.service-card--wide .service-card__icon { margin-bottom: 0; flex-shrink: 0; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ========== DESTINATIONS ========== */
.destinations {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-card) 50%, var(--bg-deep) 100%);
}

.destinations__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.dest-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.5s;
}

.dest-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.dest-card__img-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.dest-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.dest-card:hover .dest-card__img {
  transform: scale(1.06);
}

.dest-card__route {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.4rem 0.9rem;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-light);
}

.dest-card__body {
  padding: 1.75rem;
}

.dest-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}

.dest-card__depart {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.dest-card__prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.dest-card__prices--quote {
  grid-template-columns: 1fr;
}

.price-option--quote {
  text-align: center;
  padding: 1.25rem 1rem;
}

.price-option__amount--quote {
  font-family: var(--font-body);
  font-size: 0.95rem !important;
  color: var(--gold-light) !important;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.price-option--quote .btn--full {
  width: 100%;
  min-height: 48px;
  margin-top: 0.35rem;
}

.dest-card--quote .dest-card__depart {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.price-option {
  padding: 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-option__cat {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.price-option__tax,
.tax-inclus {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.booking-form__price-label .tax-inclus {
  display: inline;
  margin-left: 0.35rem;
  font-size: 0.55rem;
  vertical-align: middle;
}

.price-option__amount {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-light);
}

.btn--sm {
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  margin-top: auto;
}

/* ========== FLEET MODELS ========== */
.fleet-models__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.model-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.model-card__img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.model-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  background: rgba(10, 10, 11, 0.85);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.model-card__body {
  padding: 1.75rem;
}

.model-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.model-card__list {
  list-style: none;
}

.model-card__list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.model-card__list li:last-child {
  border-bottom: none;
}

.categories-legend {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.cat-legend h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}

.cat-legend p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Legacy fleet (unused) */
.fleet__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.vehicle-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s, border-color 0.4s;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  border-color: var(--border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.vehicle-card__img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.vehicle-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.vehicle-card:hover .vehicle-card__img {
  transform: scale(1.08);
}

.vehicle-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  background: rgba(10, 10, 11, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.vehicle-card__body {
  padding: 1.75rem;
}

.vehicle-card__type {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.vehicle-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.vehicle-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.vehicle-card__features span {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 0.25rem 0.6rem;
  background: var(--bg-elevated);
  border-radius: 4px;
}

.vehicle-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.vehicle-card__price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold-light);
}

.vehicle-card__price small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
}

.vehicle-card .btn--reserve {
  flex-shrink: 0;
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
}

/* ========== WHY ========== */
.why__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .why__layout { grid-template-columns: 1fr; }
}

.why__list {
  list-style: none;
  margin-top: 2rem;
}

.why__list li {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.why__list li:last-child { border-bottom: none; }

.why__check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--gold-dim);
  color: var(--gold);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
}

.why__list strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.why__list p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.why__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why__visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.why__visual--promo img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  display: block;
}

.why__badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(10, 10, 11, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.why__badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold-light);
  line-height: 1;
}

.why__badge-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ========== REVIEWS ========== */
.reviews {
  background: var(--bg-card);
  border-block: 1px solid var(--border-subtle);
}

.reviews__slider {
  position: relative;
  max-width: 700px;
  margin-inline: auto;
  min-height: 200px;
}

.review-card {
  position: absolute;
  inset: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s var(--ease-out);
  pointer-events: none;
}

.review-card--active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.review-card p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.review-card footer {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.reviews__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border-subtle);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.reviews__dots button.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ========== RESERVATION ========== */
.reservation {
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, var(--gold-dim) 0%, transparent 60%),
    var(--bg-deep);
}

.reservation__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .reservation__layout { grid-template-columns: 1fr; }
}

.reservation__note {
  color: var(--text-muted);
  margin: 1.5rem 0 2rem;
  line-height: 1.8;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 100px;
  color: var(--success);
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}

.contact-chip svg { width: 22px; height: 22px; }
.contact-chip:hover {
  background: rgba(37, 211, 102, 0.2);
  transform: translateY(-2px);
}

.selected-vehicle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.selected-vehicle strong { color: var(--gold-light); }

.selected-vehicle__clear {
  margin-left: auto;
  width: 28px;
  height: 28px;
  border: none;
  background: var(--bg-elevated);
  color: var(--text-muted);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  transition: color 0.2s, background 0.2s;
}

.selected-vehicle__clear:hover {
  color: var(--text);
  background: var(--bg-card);
}

/* Form */
.reservation-form {
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 500px) {
  .form-row--half { grid-template-columns: 1fr; }
}

.form-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-row label span { color: var(--gold); }

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-row select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239a9690' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.input--readonly {
  opacity: 0.85;
  cursor: not-allowed;
  color: var(--gold-light);
  border-color: var(--border) !important;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

.form-row input.error,
.form-row select.error {
  border-color: #e74c3c;
}

.form-row--price {
  margin-bottom: 1.25rem;
}

.price-preview {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--text-muted);
  padding: 0.75rem 0;
}

.price-preview--active {
  color: var(--gold-light);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(154, 150, 144, 0.6);
}

.form-row input.error {
  border-color: #e74c3c;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* ========== FOOTER ========== */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border-subtle);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__brand strong {
  display: block;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  gap: 2rem;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer__links a:hover { color: var(--gold); }

.footer__copy {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 1rem 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.9rem;
  z-index: 10002;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s var(--ease-out), opacity 0.4s, visibility 0.4s;
}

.toast--show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.toast--error {
  border-color: #e74c3c;
  color: #ff8a80;
}

/* ========== MOBILE ULTRA PRO ========== */
@media (max-width: 768px) {
  .container {
    width: min(1200px, 92vw);
  }

  .hero--landing {
    min-height: 100svh;
    padding: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 1.25rem) 0 2.5rem;
  }

  .hero__bg {
    max-height: none;
  }

  .hero__img {
    animation: none;
    object-position: center 40%;
  }

  .hero__gradient {
    background:
      linear-gradient(180deg, rgba(10, 10, 11, 0.6) 0%, rgba(10, 10, 11, 0.88) 65%, var(--bg-deep) 100%);
  }

  .hero__eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.65rem;
  }

  .hero__line {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }

  .hero__tagline {
    font-size: 1.05rem;
  }

  .hero__subtitle {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .hero__route-banner {
    max-width: none;
    padding: 0.9rem 1rem;
    gap: 0.75rem;
  }

  .hero__route-banner strong {
    font-size: 0.88rem;
  }

  .hero__route-banner span {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .hero__stats {
    gap: 2rem;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
  }

  .stat strong {
    font-size: 1.4rem;
  }

  .stat span {
    font-size: 0.72rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.5rem;
    gap: 0.65rem;
  }

  .hero__cta,
  .hero__actions .btn--ghost {
    width: 100%;
    min-width: unset;
    min-height: 52px;
  }

  .booking-panel--modal {
    padding: 1.15rem 1rem 1rem;
  }

  .booking-panel--modal .booking-form__grid {
    grid-template-columns: 1fr;
  }

  .booking-panel__head {
    text-align: center;
  }

  .booking-panel__title {
    font-size: 1.15rem;
  }

  .booking-panel__sub {
    font-size: 0.72rem;
  }

  .booking-form__grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .booking-form__row-triple {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
  }

  .booking-form__row-triple .form-row label {
    font-size: 0.55rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .booking-form .form-row input,
  .booking-form .form-row select {
    min-height: 48px;
    font-size: 16px;
    padding: 0.65rem 0.75rem;
    padding-right: 2rem;
  }

  .booking-form__row-triple .form-row select {
    text-align: center;
    padding-left: 0.4rem;
    padding-right: 1.6rem;
    background-position: right 0.35rem center;
    font-size: 15px;
  }

  .booking-form__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .booking-form__price {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 0;
  }

  .booking-form__submit {
    width: 100%;
    min-height: 52px;
    min-width: unset;
    font-size: 0.9rem !important;
  }

  .selected-vehicle {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .selected-vehicle strong {
    flex: 1;
    min-width: 0;
    word-break: break-word;
  }

  .payment-banner {
    padding: 1.25rem 0;
  }

  .payment-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .payment-banner__cards {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
  }

  .payment-banner__cards p {
    font-size: 0.88rem;
    line-height: 1.5;
    max-width: 280px;
  }

  .payment-brands {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    max-width: 100%;
  }

  .payment-brand svg {
    width: 44px;
  }

  .payment-banner__currency {
    font-size: 0.72rem;
    line-height: 1.4;
    text-align: center;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section__head {
    margin-bottom: 1.75rem;
    max-width: none;
    text-align: center;
  }

  .section__head--center {
    text-align: center;
  }

  .section__label {
    font-size: 0.65rem;
  }

  .section__title {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .section__desc {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .destinations__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .dest-card__body {
    padding: 1.25rem;
  }

  .dest-card__body h3 {
    font-size: 1.45rem;
  }

  .dest-card__prices {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .price-option {
    padding: 0.85rem;
  }

  .price-option .btn--sm {
    min-height: 48px;
    width: 100%;
    font-size: 0.8rem;
  }

  .fleet-models__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .model-card__body {
    padding: 1.25rem;
  }

  .categories-legend {
    padding: 1.25rem;
    gap: 1rem;
    text-align: center;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    padding: 1.35rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .why__layout {
    gap: 1.75rem;
  }

  .why__content .section__head {
    text-align: left;
  }

  .why__list li {
    gap: 1rem;
    padding: 1.15rem 0;
  }

  .why__visual--promo img {
    aspect-ratio: 4 / 3;
  }

  .reviews__slider {
    min-height: 200px;
    padding-bottom: 0.5rem;
  }

  .review-card p {
    font-size: clamp(1.05rem, 4.5vw, 1.25rem);
    line-height: 1.55;
    padding: 0 0.25rem;
  }

  .reviews__dots {
    margin-top: 2rem;
  }

  .reviews__dots button {
    width: 10px;
    height: 10px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    background: transparent;
    position: relative;
  }

  .reviews__dots button::after {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-subtle);
    transition: background 0.3s, transform 0.3s;
  }

  .reviews__dots button.active::after {
    background: var(--gold);
    transform: scale(1.35);
  }

  .footer {
    padding: 2.5rem 0 calc(2rem + var(--mobile-bar-h));
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer__brand {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
  }

  .footer__links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0;
  }

  .footer__copy {
    font-size: 0.75rem;
    padding-top: 1.5rem;
    line-height: 1.5;
  }

  .toast {
    bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px) + 1rem);
    width: min(92vw, 360px);
    text-align: center;
    border-radius: 12px;
    padding: 0.9rem 1.25rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero__line {
    font-size: clamp(2.2rem, 11vw, 2.8rem);
  }

  .booking-form__row-triple {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .booking-form__row-triple .form-row label {
    font-size: 0.62rem;
    white-space: normal;
  }

  .booking-form__row-triple .form-row select {
    text-align: left;
    padding-left: 0.75rem;
    font-size: 16px;
  }

  .payment-brand svg {
    width: 40px;
  }

  .payment-banner__cards p {
    font-size: 0.82rem;
  }
}

@media (max-width: 380px) {
  .container {
    width: 94vw;
  }

  .logo__img {
    height: 40px;
    max-width: 88px;
  }

  .mobile-bar__btn {
    font-size: 0.8rem;
    padding: 0 0.65rem;
  }
}

@media (max-width: 768px) and (pointer: coarse) {
  .btn,
  .nav a,
  .burger,
  .mobile-bar__btn,
  .footer__links a {
    -webkit-tap-highlight-color: transparent;
  }

  .btn:active:not(:disabled) {
    transform: scale(0.98);
  }

  .dest-card:hover {
    transform: none;
  }

  .service-card:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__img,
  .has-js [data-animate] {
    animation: none;
    transition: none;
  }
}
