/* Book Bodrum Transfer — bookbodrumtransfer.com */

:root {
  --color-primary: #0c4a6e;
  --color-primary-dark: #082f49;
  --color-accent: #d4a853;
  --color-accent-hover: #c49a3f;
  --color-whatsapp: #25d366;
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(12, 74, 110, 0.08);
  --shadow-lg: 0 20px 60px rgba(12, 74, 110, 0.15);
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Top bar */
.top-bar {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  padding: 0.5rem 0;
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar__contacts {
  display: flex;
  gap: 1.25rem;
}

/* Dil seçici */
.lang-switch {
  display: inline-flex;
  background: rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 3px;
  gap: 2px;
}

.lang-switch__btn {
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.28rem 0.5rem;
  border: none;
  border-radius: 50px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-switch__btn:hover {
  color: #fff;
}

.lang-switch__btn.active {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}

.header .lang-switch {
  background: var(--color-bg);
}

.header .lang-switch__btn {
  color: var(--color-text-muted);
}

.header .lang-switch__btn.active {
  background: var(--color-primary);
  color: #fff;
}

.lang-switch--mobile {
  display: none;
  margin-top: 1rem;
  width: fit-content;
}

.top-bar a { color: #fff; transition: opacity 0.2s; }
.top-bar a:hover { opacity: 0.8; }

.whatsapp-link { color: var(--color-whatsapp) !important; font-weight: 600; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-h);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  color: var(--color-primary);
  white-space: nowrap;
}

.logo__icon { font-size: 1.5rem; }

.logo__img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.logo__text strong { color: var(--color-accent); }

.nav {
  display: flex;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.2s;
}

.nav a:hover { color: var(--color-primary); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border-color: var(--color-accent);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  border-color: var(--color-whatsapp);
}

.btn--whatsapp:hover { filter: brightness(1.08); }

.btn--sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 3rem 0 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,47,73,0.92) 0%, rgba(12,74,110,0.75) 50%, rgba(8,47,73,0.85) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
}

.hero__text { color: #fff; }

.badge {
  display: inline-block;
  background: rgba(212,168,83,0.2);
  color: var(--color-accent);
  border: 1px solid rgba(212,168,83,0.4);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--color-accent);
}

.hero__text > p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero__trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-size: 1.25rem;
  color: var(--color-accent);
}

.trust-item span {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Booking card */
.booking-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.booking-card h2 {
  font-size: 1.35rem;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.booking-card__sub {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color 0.2s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.booking-form > label { margin-bottom: 1rem; }

.form-note {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 0.75rem;
}

.form-privacy {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 0.5rem;
  line-height: 1.5;
}

.form-privacy a {
  color: var(--color-primary);
  text-decoration: underline;
  margin-left: 0.25rem;
}

/* Sections */
.section { padding: 5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header--light .section-label,
.section-header--light h2,
.section-header--light .section-desc { color: #fff; }

.section-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-primary);
}

.section-desc {
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0.75rem auto 0;
}

/* Services */
.services { background: var(--color-bg); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.service-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.service-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.65rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.service-card__badge--fixed {
  background: rgba(12, 74, 110, 0.1);
  color: var(--color-primary);
}

.service-card__badge--quote {
  background: rgba(212, 168, 83, 0.2);
  color: #8a6a1e;
}

.service-card h3 {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.service-card > p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  flex: 1;
  margin-bottom: 1rem;
}

.service-card__price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.pricing-note {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
}

.pricing-note strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--color-accent);
}

.pricing-note p {
  font-size: 0.95rem;
  opacity: 0.92;
  line-height: 1.65;
}

.routes__footnote {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.routes__footnote a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
}

/* Features */
.features { background: var(--color-surface); }

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-card__icon { font-size: 2rem; margin-bottom: 1rem; }

.feature-card h3 {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Routes */
.routes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.route-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s;
}

.route-card:hover { transform: translateY(-4px); }

.route-card__img {
  height: 180px;
  overflow: hidden;
}

.route-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.route-card:hover .route-card__img img { transform: scale(1.05); }

.route-card__body { padding: 1.5rem; }

.route-card__body h3 {
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.route-card__body h3 a {
  color: inherit;
  text-decoration: none;
}

.route-card__body h3 a:hover {
  text-decoration: underline;
}

.route-card__body > p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.route-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

/* Fleet */
.fleet {
  background: linear-gradient(160deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

.fleet__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.fleet__grid--two {
  max-width: 900px;
  margin: 0 auto;
}

.fleet__grid--three {
  max-width: 1200px;
  margin: 0 auto;
}

.fleet__banner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  line-height: 1.5;
}

.fleet-card__img--collage {
  height: 260px;
  background: #0d1117;
}

.fleet-card__img--collage img {
  object-fit: contain;
}

/* Intercity routes */
.intercity {
  background: var(--color-surface-alt, #f8f6f3);
}

.intercity__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.intercity-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border, #e8e4df);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.intercity-card h3 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--color-primary-dark);
}

.intercity-card__meta {
  font-size: 0.875rem;
  color: var(--color-muted);
  font-weight: 600;
}

.intercity-card p:last-of-type {
  flex: 1;
  margin: 0 0 0.75rem;
  font-size: 0.925rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.intercity__footnote {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.intercity__footnote a {
  color: var(--color-primary);
  font-weight: 600;
}

.landing-fleet {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.landing-fleet img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  background: #111;
}

.fleet-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s;
}

.fleet-card:hover { transform: translateY(-6px); }

.fleet-card--featured {
  border: 2px solid var(--color-accent);
  transform: scale(1.02);
}

.fleet-card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.fleet-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-primary);
  color: #fff;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.fleet-card__badge--local {
  background: #64748b;
}

.fleet-card__notice {
  font-size: 0.8rem;
  font-weight: 600;
  color: #b45309;
  background: rgba(212, 168, 83, 0.15);
  border-left: 3px solid var(--color-accent);
  padding: 0.45rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 0.65rem;
}

.fleet-card__body { padding: 1.5rem; }

.fleet-card__body h3 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.fleet-card__body > p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.fleet-card__body ul {
  list-style: none;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.fleet-card__body li::before {
  content: '✓ ';
  color: var(--color-accent);
  font-weight: 700;
}

/* Steps */
.steps__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step__num {
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.step__arrow {
  font-size: 1.5rem;
  color: var(--color-accent);
  align-self: center;
  padding-top: 2rem;
}

/* FAQ */
.faq { background: var(--color-surface); }

.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}

.faq-item summary {
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--color-accent);
  transition: transform 0.2s;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  padding-right: 2rem;
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact__info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-primary);
  margin: 0.5rem 0 1rem;
}

.contact__info > p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.contact__items { display: flex; flex-direction: column; gap: 1rem; }

.contact__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact__item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow);
}

.contact__icon { font-size: 1.5rem; }

.contact__item strong {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact__item span { font-weight: 600; color: var(--color-primary); }

.contact__cta {
  background: var(--color-primary);
  color: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.contact__cta h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact__cta > p {
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.contact__cta .btn { margin-bottom: 0.75rem; }

.contact__cta .btn--outline {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.contact__cta .btn--outline:hover {
  background: #fff;
  color: var(--color-primary);
}

/* Footer */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.85);
  padding-top: 3rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.logo--footer { color: #fff; margin-bottom: 1rem; }

.footer__brand p {
  font-size: 0.9rem;
  opacity: 0.75;
  max-width: 300px;
}

.footer__links h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.footer__links a {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
  transition: opacity 0.2s;
}

.footer__links a:hover { opacity: 1; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Float WhatsApp */
.float-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 60px;
  height: 60px;
  background: var(--color-whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.25s;
}

.float-whatsapp:hover { transform: scale(1.08); }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: #fff;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -8px 32px rgba(12, 74, 110, 0.12);
  padding: 1rem 0;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  max-width: 52rem;
  margin: 0;
}

.cookie-banner a {
  color: var(--color-primary);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Legal / privacy page */
.legal-page .header--legal {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.legal-page .header--legal .lang-switch {
  background: var(--color-bg);
}

.legal-page .header--legal .lang-switch__btn {
  color: var(--color-text-muted);
}

.legal-page .header--legal .lang-switch__btn.active {
  background: #fff;
  color: var(--color-primary);
}

.legal {
  padding: 3rem 0 4rem;
}

.legal__inner {
  max-width: 760px;
}

.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 0.5rem;
}

.legal__updated {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal section {
  margin-bottom: 1.75rem;
}

.legal h2 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.legal p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.legal a {
  color: var(--color-primary);
  text-decoration: underline;
}

.footer--compact .footer__bottom {
  border-top: none;
  padding-top: 2rem;
}

.footer--compact .footer__bottom a,
.footer__bottom a {
  color: var(--color-accent);
  text-decoration: underline;
}

.footer__bottom a:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__text { text-align: center; }
  .hero__text > p { margin-left: auto; margin-right: auto; }
  .hero__trust { justify-content: center; }

  .contact__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--color-border);
  }

  .menu-toggle { display: flex; }

  .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .header__phone { display: none; }

  .top-bar .lang-switch { display: none; }

  .lang-switch--mobile {
    display: inline-flex;
  }

  .step__arrow { display: none; }

  .fleet-card--featured { transform: none; }

  .footer__inner { grid-template-columns: 1fr; }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions {
    justify-content: flex-end;
  }

  .float-whatsapp {
    bottom: 5.5rem;
  }
}

/* ── SEO landing pages ── */

.landing-page .landing-hero {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: #fff;
  padding: 3rem 0;
}

.landing-hero--route {
  position: relative;
  padding: 0;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}

.landing-hero--route .landing-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-hero--route .landing-hero__inner {
  position: relative;
  z-index: 1;
  background: linear-gradient(transparent, rgba(8, 47, 73, 0.92));
  width: 100%;
  padding: 3rem 0 2.5rem;
}

.landing-hero__inner h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0.75rem 0;
  line-height: 1.2;
}

.landing-hero__lead {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 720px;
  margin-bottom: 1.5rem;
}

.landing-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.breadcrumb {
  font-size: 0.875rem;
  opacity: 0.85;
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

.landing__content {
  padding: 3rem 0 4rem;
  max-width: 800px;
}

.landing__content section {
  margin-bottom: 2.5rem;
}

.landing__content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
}

.landing__content p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.price-list, .check-list, .steps-list {
  padding-left: 1.25rem;
  line-height: 1.8;
}

.price-list li, .check-list li {
  margin-bottom: 0.5rem;
}

.price-list a {
  color: var(--color-primary);
  font-weight: 600;
}

.landing-cta-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.landing-cta-block h2 { margin-bottom: 0.5rem; }

.landing-cta-block .btn { margin-top: 0.75rem; }

.route-nav {
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.route-nav h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
}

.route-nav a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.route-nav a:hover { text-decoration: underline; }

.landing-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.landing-langs .btn--sm {
  padding: 0.35rem 0.55rem;
  font-size: 0.75rem;
  min-width: 0;
}

.landing-langs-block {
  margin-top: 1rem;
}
