@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700&family=Caveat:wght@600;700&family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --ink: #10100f;
  --ink-soft: #272522;
  --paper: #f4f1eb;
  --paper-deep: #e8e2d8;
  --white: #fffdfa;
  --plum: #714b67;
  --plum-dark: #3e2b3a;
  --sand: #c7a978;
  --coral: #ff6542;
  --yellow: #ffd447;
  --muted: #716d67;
  --line: rgba(16, 16, 15, .14);
  --glass: rgba(255, 253, 250, .76);
  --green: #1d9c67;
  --shadow: 0 28px 80px rgba(26, 20, 17, .14);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img, video { display: block; max-width: 100%; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  margin-bottom: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -.045em;
}
p { line-height: 1.7; }

.container { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-dark { color: var(--white); background: var(--ink); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--plum);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.section-dark .eyebrow { color: #d7b9ce; }
.display {
  max-width: 900px;
  font-size: clamp(42px, 6.6vw, 92px);
  line-height: .98;
  font-weight: 600;
}
.section-title {
  max-width: 760px;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.04;
  font-weight: 600;
}
.script-word {
  display: inline-block;
  color: var(--plum);
  font-family: "Caveat", cursive;
  font-size: 1.08em;
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: .75;
  transform: rotate(-2deg);
}
.section-dark .script-word { color: #dfbfd6; }
.lead { max-width: 640px; color: var(--muted); font-size: 18px; }
.section-dark .lead { color: rgba(255, 253, 250, .68); }

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  transition: color .3s ease, background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.site-nav.is-scrolled,
.site-nav.on-light {
  color: var(--ink);
  border-color: rgba(16, 16, 15, .08);
  background: rgba(244, 241, 235, .88);
  backdrop-filter: blur(18px);
}
.nav-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -.06em;
}
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: "Manrope", sans-serif; font-size: 14px; letter-spacing: -.03em; }
.brand-copy small { margin-top: 5px; font-size: 7px; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; opacity: .68; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > a:not(.button) { position: relative; padding: 30px 0; font-size: 13px; font-weight: 600; }
.nav-links > a:not(.button)::after { content: ""; position: absolute; inset: auto 50% 21px; height: 1px; background: currentColor; transition: inset .25s var(--ease); }
.nav-links > a:hover::after,
.nav-links > a.active::after { inset-inline: 0; }
.lang-switch { display: flex; gap: 2px; padding: 3px; border: 1px solid currentColor; border-radius: 999px; opacity: .82; }
.btn-lang-selector { min-width: 34px; min-height: 30px; padding: 0 8px; border: 0; border-radius: 999px; color: inherit; background: transparent; font-size: 10px; font-weight: 700; cursor: pointer; }
.btn-lang-selector.active-lang { color: var(--white); background: var(--plum); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid currentColor; border-radius: 50%; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: currentColor; transition: transform .25s ease; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--plum);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .025em;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); background: var(--plum-dark); }
.button-light { color: var(--ink); background: var(--white); }
.button-light:hover { color: var(--white); background: var(--plum); }
.button-outline { color: inherit; border-color: currentColor; background: transparent; }
.button-outline:hover { color: var(--white); border-color: var(--plum); background: var(--plum); }
.button-green { background: var(--green); }
.button-green:hover { background: #14784e; }
.text-link { display: inline-flex; align-items: center; gap: 10px; border-bottom: 1px solid currentColor; padding-bottom: 5px; font-size: 13px; font-weight: 700; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 11, 10, .88) 0%, rgba(12, 11, 10, .45) 52%, rgba(12, 11, 10, .2) 100%),
    linear-gradient(0deg, rgba(12, 11, 10, .86) 0%, transparent 55%);
}
.hero-content { position: relative; z-index: 2; width: 100%; padding: 170px 0 62px; }
.hero-copy { max-width: 830px; }
.hero-kicker {
  max-width: 620px;
  margin-bottom: 24px;
  color: rgba(255, 253, 250, .78);
  font-family: "DM Sans", sans-serif;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: -.02em;
}
.marketing-chip {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(255, 212, 71, .2);
}
.marketing-chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
.hero .eyebrow { color: #eed8e8; }
.hero .display { text-wrap: balance; }
.hero-sub { max-width: 570px; margin: 28px 0 32px; color: rgba(255, 253, 250, .78); font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-bottom { margin-top: 80px; display: grid; grid-template-columns: 1.1fr repeat(3, .55fr); gap: 18px; align-items: end; }
.hero-note { max-width: 380px; color: rgba(255, 253, 250, .65); font-size: 12px; line-height: 1.55; }
.hero-stat { padding-left: 18px; border-left: 1px solid rgba(255, 255, 255, .28); }
.hero-stat strong { display: block; font-family: "Manrope", sans-serif; font-size: 25px; letter-spacing: -.05em; }
.hero-stat span { display: block; margin-top: 4px; color: rgba(255, 253, 250, .6); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.availability-wrap { position: relative; z-index: 4; margin-top: -34px; }
.availability {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr) auto;
  align-items: end;
  gap: 0;
  padding: 14px;
  border: 1px solid rgba(16, 16, 15, .1);
  border-radius: 22px;
  background: linear-gradient(110deg, rgba(255, 253, 250, .98), rgba(255, 242, 198, .98));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.field { min-width: 0; padding: 7px 20px; border-right: 1px solid var(--line); }
.field label { display: block; margin-bottom: 7px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 32px; padding: 0; border: 0; outline: 0; color: var(--ink); background: transparent; font-weight: 600;
}
.availability .button { min-height: 62px; padding-inline: 28px; }

.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--paper-deep); }
.marquee-track { width: max-content; display: flex; gap: 42px; padding: 17px 0; animation: marquee 28s linear infinite; }
.marquee-track span { display: inline-flex; align-items: center; gap: 42px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.marquee-track span::after { content: "◆"; color: var(--plum); font-size: 7px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-head { display: flex; justify-content: space-between; gap: 48px; align-items: end; margin-bottom: 52px; }
.section-head .lead { margin-bottom: 4px; }
.featured {
  position: relative;
  min-height: 660px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
}
.featured::after {
  content: "CHOIX CLIENTS";
  position: absolute;
  z-index: 3;
  top: 26px;
  right: -38px;
  width: 180px;
  padding: 9px 0;
  transform: rotate(37deg);
  text-align: center;
  color: var(--ink);
  background: var(--yellow);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}
.featured-image { position: relative; min-height: 520px; overflow: hidden; background: #181716; }
.featured-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.featured:hover .featured-image img { transform: scale(1.035); }
.featured-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 65%, rgba(16, 16, 15, .9)); }
.featured-index { position: absolute; z-index: 2; inset: 24px auto auto 24px; padding: 9px 13px; border-radius: 999px; color: var(--ink); background: rgba(255, 253, 250, .88); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.featured-copy { padding: 54px 48px; display: flex; flex-direction: column; justify-content: space-between; }
.featured-copy h3 { max-width: 430px; font-size: clamp(34px, 4vw, 56px); line-height: 1; font-weight: 600; }
.featured-copy > div > p { color: rgba(255, 253, 250, .64); }
.price { margin: 20px 0 28px; font-family: "Manrope", sans-serif; font-size: 28px; font-weight: 700; letter-spacing: -.05em; }
.price small { color: rgba(255, 253, 250, .52); font-family: "DM Sans", sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0; }
.spec-row { display: flex; flex-wrap: wrap; gap: 10px; }
.spec { padding: 9px 12px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 999px; color: rgba(255, 253, 250, .76); font-size: 10px; }

.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.coverage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.coverage-card {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 38px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--plum);
}
.coverage-card:nth-child(2) { color: var(--ink); background: var(--yellow); }
.coverage-card::after { content: attr(data-code); position: absolute; right: -16px; bottom: -55px; color: rgba(255,255,255,.12); font-family: "Manrope", sans-serif; font-size: 190px; font-weight: 800; letter-spacing: -.1em; }
.coverage-card:nth-child(2)::after { color: rgba(16,16,15,.09); }
.coverage-card h3 { position: relative; z-index: 1; max-width: 520px; font-size: clamp(32px, 4vw, 56px); line-height: 1; }
.coverage-card p { position: relative; z-index: 1; max-width: 500px; margin: 26px 0 0; color: rgba(255,255,255,.7); }
.coverage-card:nth-child(2) p { color: rgba(16,16,15,.68); }
.coverage-tags { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 45px; }
.coverage-tags span { padding: 8px 11px; border: 1px solid currentColor; border-radius: 999px; font-size: 10px; font-weight: 700; }
.car-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 250, .62);
  transition: transform .35s var(--ease), box-shadow .35s ease, background .35s ease;
}
.car-card:hover { transform: translateY(-7px); background: var(--white); box-shadow: 0 22px 50px rgba(20, 17, 14, .1); }
.car-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #d9d4cd; }
.car-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.car-card:hover .car-media img { transform: scale(1.04); }
.car-category { position: absolute; inset: 14px auto auto 14px; padding: 7px 10px; border-radius: 999px; color: var(--white); background: rgba(16, 16, 15, .72); backdrop-filter: blur(10px); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.car-price-badge { position: absolute; inset: 14px 14px auto auto; padding: 9px 11px; border-radius: 12px; color: var(--ink); background: var(--yellow); box-shadow: 0 8px 24px rgba(16,16,15,.16); font-family: "Manrope", sans-serif; font-size: 15px; font-weight: 800; }
.car-price-badge small { display: block; font-family: "DM Sans", sans-serif; font-size: 8px; font-weight: 700; text-align: right; }
.car-media-specs { position: absolute; inset: auto 12px 12px 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.car-media-specs span { padding: 7px 9px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: var(--white); background: rgba(16,16,15,.7); backdrop-filter: blur(10px); font-size: 9px; font-weight: 600; }
.car-availability { display: inline-flex; align-items: center; gap: 7px; margin-top: 4px; color: #276b4c; font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.car-availability::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #2f9d68; box-shadow: 0 0 0 4px rgba(47,157,104,.12); }
.car-availability.is-later { color: #995537; }
.car-availability.is-later::before { background: var(--coral); box-shadow: 0 0 0 4px rgba(232,103,79,.12); }
.car-body { padding: 22px; }
.car-head { display: flex; align-items: start; justify-content: space-between; gap: 16px; }
.car-head h3 { max-width: 70%; font-size: 19px; line-height: 1.2; }
.car-price { text-align: right; color: var(--plum); font-family: "Manrope", sans-serif; font-size: 17px; font-weight: 800; letter-spacing: -.04em; white-space: nowrap; }
.car-price small { display: block; color: var(--muted); font-family: "DM Sans", sans-serif; font-size: 9px; font-weight: 500; letter-spacing: 0; }
.car-meta { display: flex; gap: 16px; margin: 20px 0; padding-top: 17px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.car-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.film-section { padding: 0 0 112px; background: var(--ink); color: var(--white); }
.film-card { position: relative; min-height: min(760px, 82svh); display: flex; align-items: flex-end; overflow: hidden; border-radius: var(--radius-lg); }
.film-card video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.film-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13, 12, 11, .9), transparent 70%); }
.film-copy { position: relative; z-index: 2; width: 100%; display: flex; align-items: end; justify-content: space-between; gap: 40px; padding: 48px; }
.film-copy h2 { max-width: 710px; font-size: clamp(38px, 5.5vw, 74px); line-height: 1; font-weight: 600; }
.play-label { flex: 0 0 auto; width: 88px; height: 88px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; font-size: 10px; letter-spacing: .08em; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.process-item { padding: 34px 34px 20px 0; border-right: 1px solid var(--line); }
.process-item + .process-item { padding-left: 34px; }
.process-item:last-child { border-right: 0; }
.process-number { color: var(--plum); font-family: "Caveat", cursive; font-size: 34px; font-weight: 700; }
.process-item h3 { margin: 30px 0 12px; font-size: 22px; }
.process-item p { margin: 0; color: var(--muted); font-size: 14px; }

.quote-band { padding: 90px 0; color: var(--white); background: var(--plum-dark); }
.quote-band { position: relative; overflow: hidden; }
.quote-band::after { content: "DD"; position: absolute; right: -40px; bottom: -100px; color: rgba(255,255,255,.06); font-family: "Manrope", sans-serif; font-size: 330px; font-weight: 800; letter-spacing: -.12em; }
.quote-band blockquote { max-width: 1050px; margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(28px, 4vw, 52px); font-weight: 500; line-height: 1.18; letter-spacing: -.04em; }
.quote-band cite { display: block; margin-top: 28px; color: rgba(255,255,255,.62); font-size: 11px; font-style: normal; letter-spacing: .12em; text-transform: uppercase; }

.footer { padding: 76px 0 28px; color: var(--white); background: var(--ink); }
.footer-main { display: grid; grid-template-columns: 1.5fr repeat(2, .55fr); gap: 60px; padding-bottom: 60px; }
.footer-intro p { max-width: 450px; margin: 28px 0; color: rgba(255,255,255,.58); font-size: 14px; }
.signature { color: #dfbfd6; font-family: "Caveat", cursive; font-size: 23px; font-weight: 700; }
.footer-col { display: grid; align-content: start; gap: 15px; }
.footer-col h4 { margin-bottom: 9px; color: rgba(255,255,255,.45); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.footer-col a { font-size: 13px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4); font-size: 10px; }

.page-hero { padding: 170px 0 72px; background: var(--paper-deep); }
.page-hero .display { max-width: 1050px; font-size: clamp(48px, 7vw, 96px); }
.page-hero-row { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.page-hero .lead { margin: 0 0 8px; }
.filter-bar { position: sticky; top: 82px; z-index: 20; padding: 14px 0; border-bottom: 1px solid var(--line); background: rgba(244, 241, 235, .92); backdrop-filter: blur(14px); }
.filters { display: flex; align-items: center; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.filter { flex: 0 0 auto; min-height: 40px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: 11px; font-weight: 700; cursor: pointer; }
.filter.active { color: var(--white); border-color: var(--plum); background: var(--plum); }
.fleet-page-grid { grid-template-columns: repeat(3, 1fr); }
.result-count { margin-left: auto; color: var(--muted); font-size: 11px; white-space: nowrap; }
.fleet-pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 38px; }
.page-button { min-width: 42px; height: 42px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: var(--white); font: 700 11px "DM Sans", sans-serif; cursor: pointer; }
.page-button:hover,.page-button.active { color: var(--white); border-color: var(--plum); background: var(--plum); }
.page-button:disabled { opacity: .38; cursor: not-allowed; }

.booking-shell { padding: 154px 0 96px; background: var(--paper); }
.booking-grid { display: grid; grid-template-columns: 390px minmax(0, 1fr); gap: 56px; align-items: start; }
.booking-intro { margin-bottom: 45px; }
.booking-intro h1 { max-width: 760px; font-size: clamp(42px, 6vw, 76px); line-height: 1; font-weight: 600; }
.booking-intro p { max-width: 610px; margin: 24px 0 0; color: var(--muted); }
.booking-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-section { grid-column: 1 / -1; margin: 24px 0 0; padding-top: 30px; border-top: 1px solid var(--line); }
.form-section:first-child { margin-top: 0; }
.form-section h2 { font-size: 20px; }
.input-group { display: grid; gap: 8px; }
.input-group.full { grid-column: 1 / -1; }
.input-group label { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.input-group input, .input-group select, .input-group textarea {
  width: 100%; min-height: 56px; padding: 0 17px; border: 1px solid var(--line); border-radius: var(--radius-sm); outline: 0; background: var(--white); transition: border .2s ease, box-shadow .2s ease;
}
.input-group textarea { min-height: 122px; padding-top: 16px; resize: vertical; }
.input-group input:focus, .input-group select:focus, .input-group textarea:focus { border-color: var(--plum); box-shadow: 0 0 0 3px rgba(113,75,103,.12); }
.booking-form .submit { grid-column: 1 / -1; min-height: 60px; margin-top: 10px; }
.booking-aside { position: sticky; top: 112px; overflow: hidden; border-radius: var(--radius-md); color: var(--white); background: var(--ink); }
.booking-aside img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.selected-vehicle-media { position: relative; }
.selected-price { position: absolute; right: 16px; bottom: 16px; padding: 10px 13px; border-radius: 12px; color: var(--ink); background: var(--yellow); font-family: "Manrope", sans-serif; font-size: 15px; font-weight: 800; }
.selected-specs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.selected-specs span { padding: 8px 10px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: rgba(255,255,255,.78); font-size: 10px; }
.document-checklist { margin-top: 24px; }
.eligibility-note { margin: 20px 0 0; color: rgba(255,255,255,.56); font-size: 11px; line-height: 1.6; }
.booking-aside-body { padding: 28px; }
.booking-aside h2 { font-size: 26px; }
.booking-points { display: grid; gap: 14px; margin: 25px 0 0; padding: 22px 0 0; border-top: 1px solid rgba(255,255,255,.14); }
.booking-point { display: flex; gap: 12px; color: rgba(255,255,255,.68); font-size: 12px; }
.booking-point b { color: #cbaec2; }

.whatsapp-float { position: fixed; z-index: 90; right: 22px; bottom: 22px; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--green); box-shadow: 0 14px 35px rgba(15, 84, 55, .28); font-size: 11px; font-weight: 800; }
.whatsapp-float img { width: 27px; height: 27px; }
.route-film { position: fixed; inset: 0; z-index: 999; display: none; background: #000; }
.route-film.is-active { display: block; animation: filmIn .45s ease both; }
.route-film video { width: 100%; height: 100%; object-fit: cover; }
@keyframes filmIn { from { opacity: 0; } to { opacity: 1; } }

.promo-overlay { position: fixed; inset: 0; z-index: 1200; display: grid; place-items: center; padding: 20px; background: rgba(16,16,15,.62); backdrop-filter: blur(8px); animation: promoFade .28s ease both; }
.promo-card { position: relative; width: min(560px, 100%); overflow: hidden; padding: 44px; border-radius: 28px; color: var(--white); background: var(--coral); box-shadow: 0 30px 100px rgba(16,16,15,.32); }
.promo-card[data-style="plum"] { background: var(--plum); }
.promo-card[data-style="yellow"] { color: var(--ink); background: var(--yellow); }
.promo-card::after { content: attr(data-discount); position: absolute; right: -12px; bottom: -45px; color: rgba(255,255,255,.13); font-family: "Manrope", sans-serif; font-size: 128px; font-weight: 800; letter-spacing: -.08em; }
.promo-card[data-style="yellow"]::after { color: rgba(16,16,15,.09); }
.promo-close { position: absolute; z-index: 3; top: 16px; right: 16px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: inherit; background: transparent; font-size: 21px; cursor: pointer; }
.promo-content { position: relative; z-index: 2; }
.promo-discount { display: inline-block; margin-bottom: 18px; font-family: "Manrope", sans-serif; font-size: 44px; font-weight: 800; letter-spacing: -.06em; }
.promo-content h2 { max-width: 420px; font-size: clamp(31px, 6vw, 48px); line-height: 1; }
.promo-content p { max-width: 430px; margin: 18px 0 0; color: rgba(255,255,255,.78); }
.promo-card[data-style="yellow"] .promo-content p { color: rgba(16,16,15,.68); }
.promo-code { display: inline-flex; gap: 8px; margin: 20px 0 26px; padding: 9px 12px; border: 1px dashed currentColor; border-radius: 10px; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.promo-card .button { background: var(--ink); }
@keyframes promoFade { from { opacity: 0; } to { opacity: 1; } }

[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
:focus-visible { outline: 3px solid rgba(113,75,103,.45); outline-offset: 3px; }

[dir="rtl"] body { font-family: "Cairo", sans-serif; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4 { font-family: "Cairo", sans-serif; letter-spacing: 0; }
[dir="rtl"] .eyebrow, [dir="rtl"] .filter, [dir="rtl"] .field label { letter-spacing: .04em; }
[dir="rtl"] .hero-stat { padding: 0 18px 0 0; border-left: 0; border-right: 1px solid rgba(255,255,255,.28); }
[dir="rtl"] .field { border-right: 0; border-left: 1px solid var(--line); }
[dir="rtl"] .script-word, [dir="rtl"] .signature { font-family: "Cairo", sans-serif; transform: none; }

@media (max-width: 980px) {
  .nav-links { position: fixed; inset: 82px 0 0; display: none; align-content: start; padding: 40px 24px; color: var(--ink); background: var(--paper); }
  .nav-links.is-open { display: grid; }
  .nav-links > a:not(.button) { padding: 12px 0; font-size: 26px; }
  .nav-links > a:not(.button)::after { display: none; }
  .nav-links .button { margin-top: 18px; }
  .lang-switch { width: max-content; margin-top: 20px; }
  .menu-toggle { display: block; }
  .availability { grid-template-columns: repeat(2, 1fr); }
  .field { border-bottom: 1px solid var(--line); }
  .availability .button { grid-column: 1 / -1; margin-top: 8px; }
  .hero-bottom { grid-template-columns: 1fr repeat(3, .55fr); }
  .featured { grid-template-columns: 1fr; }
  .featured-image::after { background: linear-gradient(0deg, rgba(16,16,15,.7), transparent 45%); }
  .fleet-grid, .fleet-page-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-aside { position: static; display: grid; grid-template-columns: .9fr 1.1fr; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 30px, 1240px); }
  .section { padding: 78px 0; }
  .site-nav { color: var(--white); background: rgba(16,16,15,.16); }
  .site-nav.is-scrolled, .site-nav.on-light { color: var(--ink); background: rgba(244,241,235,.94); }
  .brand-copy small { display: none; }
  .brand-logo { width: 46px; height: 46px; }
  .hero-content { padding: 145px 0 38px; }
  .promo-card { padding: 38px 26px 30px; }
  .hero .display { font-size: clamp(46px, 14vw, 68px); }
  .hero-sub { font-size: 15px; }
  .hero-actions .button { width: 100%; }
  .hero-bottom { margin-top: 48px; grid-template-columns: repeat(3, 1fr); }
  .hero-note { grid-column: 1 / -1; }
  .hero-stat { padding-left: 10px; }
  .hero-stat strong { font-size: 20px; }
  .availability-wrap { margin-top: -12px; }
  .availability { grid-template-columns: 1fr; }
  .field { padding: 12px 10px; border-right: 0; }
  .availability .button { grid-column: auto; }
  .section-head, .page-hero-row { display: block; }
  .section-head .lead, .page-hero .lead { margin-top: 24px; }
  .featured-copy { padding: 34px 26px; }
  .fleet-grid, .fleet-page-grid { grid-template-columns: 1fr; }
  .film-section { padding-bottom: 78px; }
  .film-card { min-height: 68svh; border-radius: 20px; }
  .film-copy { padding: 28px 22px; }
  .play-label { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .process-item, .process-item + .process-item { padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .page-hero { padding: 135px 0 60px; }
  .filter-bar { top: 72px; }
  .result-count { display: none; }
  .booking-shell { padding: 125px 0 72px; }
  .booking-form { grid-template-columns: 1fr; }
  .input-group.full, .form-section, .booking-form .submit { grid-column: auto; }
  .booking-aside { display: block; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 42px 24px; }
  .footer-intro { grid-column: 1 / -1; }
  .footer-bottom { align-items: start; flex-direction: column; }
  .whatsapp-float { right: 15px; bottom: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
