/* ================================================
   ALPS TRANSFERS DIRECT — style.css
   Mobile-first, no framework, Hostinger compatible
   ================================================ */

/* ------------------------------------------------
   CUSTOM PROPERTIES (couleurs, typo, espacements)
   Pour modifier la palette : changer ici uniquement
   ------------------------------------------------ */
:root {
  /* Backgrounds */
  --bg-primary:   #071827;
  --bg-secondary: #0B2235;
  --bg-card:      #102A3F;

  /* Text */
  --text-primary:   #F8FAFC;
  --text-secondary: #CBD5E1;
  --text-muted:     #94A3B8;

  /* Accent */
  --accent-glacier: #D8EEF8;

  /* CTA — orange uniquement pour boutons & prix */
  --cta-orange:  #F97316;
  --cta-hover:   #EA580C;

  /* Borders */
  --border: rgba(216, 238, 248, 0.14);

  /* WhatsApp green (floating button) */
  --wa-green: #25D366;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Radii */
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(7, 24, 39, 0.5);
  --shadow-btn:  0 4px 14px rgba(249, 115, 22, 0.35);

  /* Transition */
  --transition: 200ms ease;

  /* Max width */
  --max-w: 1200px;
  --header-h: 72px;
}

/* ------------------------------------------------
   RESET & BASE
   ------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ------------------------------------------------
   UTILITIES
   ------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .container { padding-inline: 2rem; }
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-subtitle {
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin-inline: auto;
}

.link {
  color: var(--accent-glacier);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.link:hover { color: var(--cta-orange); }

/* ------------------------------------------------
   BUTTONS
   ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  padding: 0.75rem 1.5rem;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
}

.btn:active { transform: scale(0.97); }

/* Orange — primary CTA */
.btn--orange {
  background: var(--cta-orange);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn--orange:hover {
  background: var(--cta-hover);
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.45);
}

/* Ghost — secondary CTA */
.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  background: rgba(216, 238, 248, 0.06);
  border-color: rgba(216, 238, 248, 0.3);
}

/* Outline — used on route cards */
.btn--outline {
  background: transparent;
  color: var(--accent-glacier);
  border: 1.5px solid var(--border);
  font-size: 0.85rem;
}
.btn--outline:hover {
  background: rgba(216, 238, 248, 0.07);
  border-color: rgba(216, 238, 248, 0.35);
}

/* Sizes */
.btn--sm  { padding: 0.55rem 1.1rem; font-size: 0.875rem; }
.btn--lg  { padding: 0.9rem 1.75rem; font-size: 1rem; }

.btn__icon {
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
}

/* ------------------------------------------------
   HEADER
   ------------------------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition),
              box-shadow var(--transition);
}

/* Scrolled state — added by JS */
.header.scrolled {
  background: rgba(7, 24, 39, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  color: var(--text-primary);
}

.logo__mountain {
  width: 28px;
  height: 21px;
  flex-shrink: 0;
}

.logo__text {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.logo__text strong {
  font-weight: 800;
  color: var(--accent-glacier);
}

/* Nav */
.nav {
  margin-left: auto;
}

.nav__list {
  display: none; /* hidden on mobile, shown on desktop */
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover {
  color: var(--text-primary);
  background: rgba(216, 238, 248, 0.06);
}

/* Header CTA */
.header__cta {
  flex-shrink: 0;
  margin-left: auto;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  margin-left: 0.25rem;
}
.hamburger:hover { background: rgba(216, 238, 248, 0.07); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
}

/* Open state */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Desktop nav */
@media (min-width: 768px) {
  .nav { margin-left: 0; }
  .nav__list { display: flex; }
  .hamburger { display: none; }
  .header__cta { margin-left: 0; }
}

/* Mobile nav overlay */
.nav.mobile-open {
  display: block;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(7, 24, 39, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.nav.mobile-open .nav__list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.25rem;
}

.nav.mobile-open .nav__link {
  font-size: 1rem;
  padding: 0.75rem 1rem;
}

/* ------------------------------------------------
   HERO
   ------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

/* Background layer */
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #071827 0%, #0B2235 50%, #071827 100%);
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero__svg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  min-height: 160px;
  max-height: 220px;
  opacity: 0.45; /* subtle — does not cover the photo */
}

.hero__overlay {
  position: absolute;
  inset: 0;
  /* Left-side text area darker, right side lets photo breathe */
  background:
    linear-gradient(to right, rgba(7,24,39,0.78) 0%, rgba(7,24,39,0.35) 65%, rgba(7,24,39,0.55) 100%),
    linear-gradient(to bottom, rgba(7,24,39,0.5) 0%, rgba(7,24,39,0.2) 45%, rgba(7,24,39,0.75) 100%);
}

/* Content */
.hero__content {
  position: relative;
  z-index: 1;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .hero__content { padding-top: var(--space-2xl); }
}

/* Title — moved above badges, smaller on mobile */
.hero__title {
  font-size: clamp(1.6rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  max-width: 760px;
}

.hero__highlight {
  color: var(--accent-glacier);
}

/* Subtitle */
.hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Badges — below subtitle, before CTA */
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(216, 238, 248, 0.08);
  border: 1px solid rgba(216, 238, 248, 0.18);
  color: var(--accent-glacier);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.badge__check {
  color: var(--cta-orange);
  font-style: normal;
}

/* CTA group */
.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll-arrow {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(216, 238, 248, 0.35);
  border-bottom: 2px solid rgba(216, 238, 248, 0.35);
  transform: rotate(45deg);
  animation: scrollBounce 1.8s ease infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50%       { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ------------------------------------------------
   QUOTE SECTION
   ------------------------------------------------ */
.quote-section {
  background: var(--bg-secondary);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quote-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
}

.quote-box__icon {
  width: 44px;
  height: 44px;
  background: rgba(37, 211, 102, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quote-box__icon svg {
  width: 24px;
  height: 24px;
  color: var(--wa-green);
  fill: var(--wa-green);
}

.quote-box__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.quote-box__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 0.35rem;
}

@media (min-width: 768px) {
  .quote-box {
    flex-direction: row;
    align-items: center;
  }
  .quote-box__body { flex: 1; }
  .quote-box .btn { flex-shrink: 0; }
}

/* ------------------------------------------------
   ROUTES / PRICING
   ------------------------------------------------ */
.routes-section {
  padding: var(--space-2xl) 0 var(--space-xl);
}

.routes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 480px) {
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .routes-grid { grid-template-columns: repeat(3, 1fr); }
}

.route-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid rgba(249, 115, 22, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}

.route-card:hover {
  border-color: rgba(216, 238, 248, 0.22);
  border-left-color: var(--cta-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.route-card__airports {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.route-card__airport {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.route-card__plane {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.route-card__arrow {
  color: var(--text-muted);
  font-size: 1rem;
}

.route-card__resort {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Price — orange, subtle */
.route-card__price {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.route-card__price strong {
  color: var(--cta-orange);
  font-size: 1.25rem;
  font-weight: 700;
}

/* Duration + tag meta line */
.route-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: -0.25rem;
}

.route-card__duration {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.route-card__tag {
  font-size: 0.72rem;
  color: var(--accent-glacier);
  opacity: 0.6;
  letter-spacing: 0.01em;
}

.routes-section__note {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ------------------------------------------------
   HOW IT WORKS
   ------------------------------------------------ */
.how-it-works {
  padding: var(--space-xl) 0 var(--space-2xl);
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: steps;
}

@media (min-width: 600px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

.step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color var(--transition);
}
.step:hover { border-color: rgba(216, 238, 248, 0.25); }

.step__number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cta-orange);
  background: rgba(249, 115, 22, 0.12);
  border-radius: var(--radius-full);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step__icon {
  width: 40px;
  height: 40px;
  color: var(--accent-glacier);
  opacity: 0.7;
}
.step__icon svg { width: 100%; height: 100%; }

.step__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.step__text {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: -0.5rem;
}

/* ------------------------------------------------
   WHY CHOOSE US
   ------------------------------------------------ */
.why-us {
  padding: var(--space-2xl) 0 var(--space-xl);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 500px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}
.feature-card:hover {
  border-color: rgba(216, 238, 248, 0.25);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 40px;
  height: 40px;
  color: var(--accent-glacier);
  opacity: 0.65;
  margin-bottom: 1rem;
}
.feature-card__icon svg { width: 100%; height: 100%; }

.feature-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.feature-card__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.why-us__tagline {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-glacier);
  opacity: 0.7;
  letter-spacing: -0.01em;
}

/* ------------------------------------------------
   VEHICLES
   Image: assets/images/premium-ski-transfer-vehicle.jpg
   ------------------------------------------------ */
.vehicles {
  padding: var(--space-2xl) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.vehicles__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .vehicles__inner { grid-template-columns: 1fr 1fr; }
}

.vehicles__content .section-title {
  text-align: left;
  margin-bottom: 1rem;
}

.vehicles__text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.vehicle-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.vehicle-badge {
  background: rgba(216, 238, 248, 0.07);
  border: 1px solid var(--border);
  color: var(--accent-glacier);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}

/* Vehicle image */
.vehicles__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  box-shadow: 0 8px 32px rgba(7, 24, 39, 0.6);
}

@media (min-width: 768px) {
  .vehicles__image-wrap { aspect-ratio: 3/2; }
}

.vehicles__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

/* CSS fallback when image missing */
.vehicles__img-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--bg-card) 0%, #0d3352 100%);
  padding: 2rem;
}

.vehicles__img-fallback svg {
  width: 120px;
  height: auto;
  opacity: 0.5;
}

.vehicles__img-fallback p {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* Hide fallback when image loads */
.vehicles__image-wrap:not(.vehicles__image-wrap--fallback) .vehicles__img-fallback {
  display: none;
}

/* ------------------------------------------------
   DESTINATIONS
   ------------------------------------------------ */
.destinations {
  padding: 0 0 var(--space-2xl);
}

/* Resort banner image */
.dest-banner {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .dest-banner { height: 320px; }
}

.dest-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.dest-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7, 24, 39, 0.25) 0%,
    rgba(7, 24, 39, 0.72) 100%
  );
}

.dest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
}

.dest-tag {
  background: rgba(216, 238, 248, 0.07);
  border: 1px solid rgba(216, 238, 248, 0.16);
  color: var(--accent-glacier);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  transition: background var(--transition), border-color var(--transition);
}
.dest-tag:hover {
  background: rgba(216, 238, 248, 0.13);
  border-color: rgba(216, 238, 248, 0.3);
}

/* ------------------------------------------------
   TRUST
   ------------------------------------------------ */
.trust {
  padding: var(--space-2xl) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}

@media (min-width: 500px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: border-color var(--transition);
}
.trust-item:hover { border-color: rgba(216, 238, 248, 0.25); }

.trust-item__check {
  color: var(--cta-orange);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ------------------------------------------------
   FAQ
   ------------------------------------------------ */
.faq {
  padding: var(--space-2xl) 0;
}

.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(216, 238, 248, 0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(216, 238, 248, 0.04); }

/* Chevron icon — CSS only */
.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(216, 238, 248, 0.08);
  position: relative;
  transition: background var(--transition), transform var(--transition);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--accent-glacier);
  border-radius: 2px;
  transition: transform var(--transition);
}
.faq-icon::before { width: 8px; height: 2px; }
.faq-icon::after  { width: 2px; height: 8px; }

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: rotate(90deg) scaleX(0);
}
.faq-question[aria-expanded="true"] .faq-icon {
  background: rgba(249, 115, 22, 0.15);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.25rem 1.1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Animate open/close */
.faq-answer[data-animating] {
  overflow: hidden;
  animation: faqOpen 200ms ease forwards;
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ------------------------------------------------
   FINAL CTA
   ------------------------------------------------ */
.final-cta {
  position: relative;
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

/* Background image layer */
.final-cta__bg {
  position: absolute;
  inset: 0;
  background: var(--bg-secondary);
}

.final-cta__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.final-cta__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(7, 24, 39, 0.82) 0%,
    rgba(7, 24, 39, 0.70) 50%,
    rgba(7, 24, 39, 0.88) 100%
  );
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta__inner {
  text-align: center;
  padding: var(--space-lg) 0;
}

.final-cta__title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.875rem;
}

.final-cta__text {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* ------------------------------------------------
   FOOTER
   ------------------------------------------------ */
.footer {
  background: #050e17;
  border-top: 1px solid var(--border);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 600px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer__logo {
  margin-bottom: 0.875rem;
}

.footer__tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 280px;
}

.footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer__contact-list,
.footer__legal-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.footer__link:hover { color: var(--text-primary); }

.footer__link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.6;
}

.footer__wa svg {
  fill: var(--wa-green);
  opacity: 1;
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ------------------------------------------------
   FLOATING WHATSAPP BUTTON
   ------------------------------------------------ */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--wa-green);
  color: #fff;
  border-radius: var(--radius-full);
  padding: 0.75rem 1.25rem 0.75rem 1rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  font-size: 0.875rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition);
}
.wa-float:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}
.wa-float:active { transform: scale(0.97); }

.wa-float__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.wa-float__label {
  display: none;
}

@media (min-width: 400px) {
  .wa-float__label { display: inline; }
}

/* Entrance animation */
.wa-float {
  animation: waEntrance 0.6s 1.2s ease both;
}

@keyframes waEntrance {
  from { opacity: 0; transform: translateY(16px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ------------------------------------------------
   FOCUS STYLES (accessibility)
   ------------------------------------------------ */
:focus-visible {
  outline: 2px solid var(--cta-orange);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ------------------------------------------------
   MOBILE LAYOUT IMPROVEMENTS — all screens < 768px
   Desktop (≥ 768px) is completely unchanged.
   ------------------------------------------------ */
@media (max-width: 767px) {

  /* Hero — reduce vertical size; still fills most of the viewport */
  .hero { min-height: 88svh; }
  .hero__content {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  /* Section headers — tighter gap between title and content */
  .section-header { margin-bottom: 1.5rem; }

  /* Section padding — cut base 6 rem / 4 rem values roughly in half */
  .routes-section   { padding: 2.5rem 0 2rem; }
  .how-it-works     { padding: 2rem 0 2.5rem; }
  .why-us           { padding: 2.5rem 0 2rem; }
  .vehicles         { padding: 2.5rem 0; }
  .destinations     { padding: 0 0 2.5rem; }
  .trust            { padding: 2.5rem 0; }
  .faq              { padding: 2.5rem 0; }
  .final-cta        { padding: 2.5rem 0; }

  /* Vehicles CTA — full-width so it matches all other mobile buttons */
  .vehicles__content .btn {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  /* Step cards — tighter internal padding */
  .step { padding: 1.5rem 1.25rem; }

  /* Why-us tagline — reduce top gap */
  .why-us__tagline { margin-top: 1.5rem; }

  /* Destinations banner — shorter on mobile; less gap below */
  .dest-banner { height: 180px; margin-bottom: 1.75rem; }

  /* Final CTA — extra bottom padding prevents floating button overlapping the CTA button */
  .final-cta { padding: 2.5rem 0 4.5rem; }
  .final-cta__inner { padding: 0.5rem 0; }

  /* Floating button — raise slightly so it never covers the last FAQ item */
  .wa-float { bottom: 1.75rem; }

  /* Footer — slightly less padding-bottom (button is icon-only at this width) */
  .footer { padding-bottom: 4.5rem; }
}

/* ------------------------------------------------
   RESPONSIVE FINE-TUNING
   ------------------------------------------------ */
@media (max-width: 480px) {
  .hero__cta-group { flex-direction: column; align-items: stretch; }
  .hero__cta-group .btn { text-align: center; justify-content: center; }
  .btn--lg { padding: 0.875rem 1.25rem; }

  /* Quote box stacks cleanly */
  .quote-box { padding: 1.25rem; }

  /* Routes note wraps cleanly */
  .routes-section__note { font-size: 0.85rem; }

  /* Floating WA button: icon-only on very small screens */
  .wa-float { padding: 0.875rem; border-radius: 50%; }
  .wa-float__label { display: none; }

  /* Final CTA full-width button */
  .final-cta__inner .btn { width: 100%; }
}

/* Prevent floating button from covering last section content */
.footer { padding-bottom: 5rem; }

@media (min-width: 480px) {
  .footer { padding-bottom: var(--space-xl); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------
   DESKTOP SECTION SPACING — ~20% tighter than base
   Applies only on screens ≥ 768px; mobile unchanged.
   ------------------------------------------------ */
@media (min-width: 768px) {
  .routes-section   { padding: 4.8rem 0 3.2rem; }
  .how-it-works     { padding: 3.2rem 0 4.8rem; }
  .why-us           { padding: 4.8rem 0 3.2rem; }
  .vehicles         { padding: 4.8rem 0; }
  .destinations     { padding: 0 0 4.8rem; }
  .trust            { padding: 4.8rem 0; }
  .faq              { padding: 4.8rem 0; }
  .final-cta        { padding: 4.8rem 0; }
}

/* ------------------------------------------------
   LEGAL PAGES — terms.html / privacy.html
   ------------------------------------------------ */
.legal-main {
  min-height: 100vh;
  padding-top: calc(var(--header-h) + var(--space-xl));
  padding-bottom: var(--space-2xl);
  background: var(--bg-primary);
}

.legal-content {
  max-width: 760px;
  margin-inline: auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: color var(--transition), border-color var(--transition),
              background var(--transition);
}
.back-link:hover {
  color: var(--text-primary);
  border-color: rgba(216, 238, 248, 0.28);
  background: rgba(216, 238, 248, 0.06);
}

.legal-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.legal-content .legal-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
}

.legal-content h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: var(--space-lg);
  margin-bottom: 0.75rem;
  padding-left: 0.875rem;
  border-left: 3px solid var(--cta-orange);
}

.legal-content p {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 0.875rem;
}

.legal-content ul {
  list-style: none;
  margin-bottom: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.legal-content ul li {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.65;
  padding-left: 1.25rem;
  position: relative;
}

.legal-content ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent-glacier);
  opacity: 0.5;
}

.legal-content a {
  color: var(--accent-glacier);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.legal-content a:hover { color: var(--text-primary); }

.legal-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: var(--space-lg);
}

.legal-info-box p {
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
}
.legal-info-box p:last-child { margin-bottom: 0; }

.legal-updated {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}
