@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Sora:wght@500;600;700&display=swap");

@font-face {
  font-family: "Thmanyah Sans";
  src: url("assets/fonts/thmanyahsans-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Sans";
  src: url("assets/fonts/thmanyahsans-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Sans";
  src: url("assets/fonts/thmanyahsans-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--fhadi-charcoal);
  background: var(--fhadi-warm-white);
  font-family: var(--fhadi-font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

main,
.site-footer {
  transition: opacity 180ms ease, transform 180ms ease;
}

body.is-translating main,
body.is-translating .site-footer {
  opacity: 0.45;
  transform: translateY(3px);
}

.arabic-font,
html[dir="rtl"] body {
  font-family: "Thmanyah Sans", Arial, sans-serif;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] strong,
html[dir="rtl"] button,
html[dir="rtl"] input,
html[dir="rtl"] select {
  font-family: "Thmanyah Sans", Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: #111;
  background: #fff;
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--fhadi-orange-highlight);
  outline-offset: 3px;
}

.site-shell {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: 86px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: height 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  height: 74px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(12, 14, 17, 0.9);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  width: 188px;
  height: 64px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 58px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 600;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.lang-button {
  min-width: 30px;
  height: 28px;
  padding: 0 7px;
  color: rgba(255, 255, 255, 0.58);
  border: 0;
  border-radius: 7px;
  background: transparent;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.lang-button:hover {
  color: #fff;
  transform: translateY(-1px);
}

.lang-button.is-active {
  color: #17191d;
  background: var(--fhadi-orange-highlight);
}

.nav-links > a:not(.nav-phone) {
  position: relative;
  padding-block: 8px;
}

.nav-links > a:not(.nav-phone)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--fhadi-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-links > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-phone {
  display: grid;
  gap: 1px;
  min-width: 180px;
  padding: 10px 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.nav-phone-label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  background: #fff;
  transition: transform 200ms ease;
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  color: #fff;
  background: #0c0e11;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: -9%;
  bottom: 4%;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(245, 154, 35, 0.18);
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 110px rgba(245, 154, 35, 0.08) inset;
}

.hero-media,
.hero-media img,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.018) translate3d(calc(var(--pointer-x, 0) * 8px), calc(var(--pointer-y, 0) * 5px), 0);
  transition: transform 300ms ease-out;
}

.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 11, 13, 0.97) 0%, rgba(9, 11, 13, 0.8) 35%, rgba(9, 11, 13, 0.12) 72%),
    linear-gradient(0deg, rgba(8, 10, 12, 0.94) 0%, transparent 35%),
    linear-gradient(180deg, rgba(8, 10, 12, 0.72) 0%, transparent 25%);
}

.hero-layout {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 0.72fr);
  gap: clamp(50px, 6vw, 92px);
  align-items: center;
  min-height: 900px;
  padding-top: 118px;
  padding-bottom: 80px;
}

.hero-copy {
  align-self: center;
  padding-top: 20px;
}

.hero-copy > * {
  animation: hero-enter 720ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-copy > h1 { animation-delay: 80ms; }
.hero-copy > p { animation-delay: 150ms; }
.hero-copy > .hero-proof { animation-delay: 220ms; }

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fhadi-orange-highlight);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 32px;
  height: 2px;
  background: var(--fhadi-orange);
}

.hero h1 {
  max-width: 710px;
  margin: 28px 0 24px;
  font-family: var(--fhadi-font-heading);
  font-size: clamp(3.6rem, 6.4vw, 6.75rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero h1 em {
  color: var(--fhadi-orange);
  font-style: normal;
}

.hero-copy > p {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-proof {
  display: flex;
  gap: 0;
  margin-top: 42px;
}

.hero-proof > div {
  display: grid;
  gap: 3px;
  padding-right: 34px;
}

.hero-proof > div + div {
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-proof strong {
  font-family: var(--fhadi-font-heading);
  font-size: 1rem;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
}

.booking-card {
  position: relative;
  align-self: center;
  padding: 28px;
  color: var(--fhadi-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  background: rgba(248, 247, 244, 0.94);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(24px);
}

.booking-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 30px;
  left: 30px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, transparent, var(--fhadi-orange), transparent);
}

.booking-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-kicker.dark {
  color: #9c5d10;
}

.booking-topline h2 {
  margin: 5px 0 0;
  font-family: var(--fhadi-font-heading);
  font-size: 1.4rem;
  line-height: 1.25;
}

.secure-note {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-top: 5px;
  color: #4e575f;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.secure-note b {
  font-weight: 600;
}

.secure-note span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fhadi-success);
  box-shadow: 0 0 0 5px rgba(33, 138, 99, 0.11);
}

.field-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 13px;
}

.field-grid-2 {
  grid-template-columns: 1fr 1fr;
}

.field-grid-3 {
  grid-template-columns: 1fr 1fr 0.72fr;
}

.field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.field > span:first-child {
  color: #59616a;
  font-size: 0.875rem;
  font-weight: 700;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  height: 48px;
  border: 1px solid #d9dde0;
  border-radius: 12px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.field:hover .input-wrap {
  border-color: #bfc4c8;
  transform: translateY(-1px);
}

.input-wrap:focus-within {
  border-color: var(--fhadi-orange);
  box-shadow: 0 0 0 4px rgba(245, 154, 35, 0.12);
}

.input-wrap svg {
  width: 17px;
  height: 17px;
  margin-left: 13px;
  fill: none;
  stroke: #8a9299;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.input-wrap input,
.input-wrap select {
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0 10px;
  color: #20252a;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 0.875rem;
}

.input-wrap select {
  appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, #7c858d 50%), linear-gradient(135deg, #7c858d 50%, transparent 50%);
  background-position: calc(100% - 15px) 20px, calc(100% - 11px) 20px;
  background-repeat: no-repeat;
  background-size: 4px 4px, 4px 4px;
  padding-right: 28px;
}

.input-wrap input[type="date"] {
  padding-right: 4px;
}

.input-wrap-time input {
  padding-left: 12px;
}

.phone-prefix b {
  padding-left: 12px;
  color: #757e87;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.booking-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  margin: 18px 0 14px;
  padding: 12px 14px;
  border: 1px solid rgba(245, 154, 35, 0.22);
  border-radius: 14px;
  background: linear-gradient(105deg, rgba(245, 154, 35, 0.11), rgba(245, 154, 35, 0.025));
}

.booking-summary > div {
  display: grid;
  gap: 2px;
}

.booking-summary span:not(.summary-days) {
  color: #70777e;
  font-size: 0.75rem;
}

.booking-summary strong {
  font-family: var(--fhadi-font-heading);
  font-size: 0.95rem;
}

.summary-days {
  padding: 6px 9px;
  color: #7a4810;
  border-radius: 8px;
  background: rgba(245, 154, 35, 0.15);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 20px;
  border: 0;
  border-radius: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button {
  width: 100%;
  color: #1a1309;
  background: linear-gradient(135deg, var(--fhadi-orange-highlight), var(--fhadi-orange));
  box-shadow: 0 12px 26px rgba(245, 154, 35, 0.25);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.primary-button:hover {
  box-shadow: 0 16px 34px rgba(245, 154, 35, 0.32);
}

.primary-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.primary-button > span:last-child {
  margin-left: auto;
  font-size: 1.1rem;
}

.primary-button b {
  font-weight: 800;
}

.form-note {
  margin: 11px 4px 0;
  color: #757d84;
  font-size: 0.75rem;
  text-align: center;
}

.form-error {
  margin-top: 10px;
  padding: 9px 11px;
  color: #8f2626;
  border-radius: 9px;
  background: rgba(200, 67, 67, 0.1);
  font-size: 0.75rem;
}

.form-success {
  display: grid;
  gap: 5px;
  margin-top: 12px;
  padding: 14px 15px;
  border: 1px solid rgba(33, 150, 104, .32);
  border-radius: 12px;
  background: rgba(231, 249, 240, .96);
  color: #165f45;
  animation: success-in .35s ease both;
}

.form-success[hidden] { display: none; }
.form-success strong { font-size: .82rem; }
.form-success span { font-size: .72rem; line-height: 1.45; }
.form-success a { width: fit-content; margin-top: 4px; color: #145d43; font-size: .7rem; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.primary-button:disabled { cursor: wait; opacity: .68; }
.admin-entry { margin-top: 10px; color: rgba(255,255,255,.38) !important; font-size: .64rem !important; }

@keyframes success-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.scroll-cue {
  position: absolute;
  z-index: 7;
  bottom: 27px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  width: 22px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.scroll-cue i::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 9px;
  width: 3px;
  height: 7px;
  border-radius: 999px;
  background: var(--fhadi-orange);
  animation: scroll-dot 1.7s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(10px); opacity: 1; }
}

.fleet-section {
  padding: 122px 0 130px;
  background:
    radial-gradient(circle at 90% 8%, rgba(245, 154, 35, 0.08), transparent 25%),
    var(--fhadi-warm-white);
}

.destinations-section {
  padding: 122px 0 132px;
  color: #fff;
  background: #121519;
}

.destinations-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 54px;
}

.destinations-heading h2,
.reviews-heading h2,
.contact-copy h2 {
  margin: 13px 0 0;
  font-family: var(--fhadi-font-heading);
  font-size: clamp(2.35rem, 4.4vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.destinations-heading > p {
  max-width: 430px;
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
}

.destination-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 310px 310px;
  gap: 18px;
}

.destination-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: #20242a;
  isolation: isolate;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}

.destination-card-large {
  grid-row: 1 / 3;
}

.destination-card picture,
.destination-card img {
  width: 100%;
  height: 100%;
}

.destination-card img {
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.035);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter 500ms ease;
}

.destination-card:hover img {
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.075);
  filter: saturate(1.08);
}

.destination-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(8, 10, 13, 0.84), transparent 62%);
  transition: opacity 300ms ease;
}

.destination-card:hover .destination-shade {
  opacity: 0.82;
}

.destination-copy {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 25px;
  left: 26px;
  transform: translateY(4px);
  transition: transform 300ms ease;
}

.destination-card:hover .destination-copy {
  transform: translateY(0);
}

.destination-copy > span {
  color: var(--fhadi-orange-highlight);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.destination-copy h3 {
  max-width: 460px;
  margin: 8px 0 0;
  font-family: var(--fhadi-font-heading);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.16;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.6fr;
  gap: 80px;
  align-items: end;
}

.section-heading h2,
.airport-copy h2,
.process-intro h2,
.final-cta h2 {
  margin: 13px 0 0;
  font-family: var(--fhadi-font-heading);
  font-size: clamp(2.35rem, 4.4vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.section-heading > p {
  max-width: 420px;
  margin: 0 0 5px;
  color: #657078;
  line-height: 1.75;
}

.fleet-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 54px 0 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dfe2e3;
}

.filter-group {
  display: flex;
  gap: 7px;
}

.filter-button {
  padding: 9px 15px;
  color: #5e666d;
  border: 1px solid #d9dcde;
  border-radius: 999px;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: 180ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  color: #fff;
  border-color: var(--fhadi-charcoal);
  background: var(--fhadi-charcoal);
}

.fleet-count {
  color: #7c8389;
  font-size: 0.78rem;
}

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

.fleet-loading {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fleet-loading span {
  height: 430px;
  border-radius: 22px;
  background: linear-gradient(110deg, #ecebe8 20%, #f7f6f3 45%, #ecebe8 70%);
  background-size: 220% 100%;
  animation: shimmer 1.6s linear infinite;
}

@keyframes shimmer {
  to { background-position-x: -220%; }
}

.vehicle-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #dfe2e3;
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 7px 24px rgba(24, 27, 31, 0.05);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.vehicle-card:hover {
  transform: translateY(-7px);
  border-color: rgba(245, 154, 35, 0.48);
  box-shadow: var(--fhadi-shadow-card);
}

.vehicle-card.is-selected {
  border-color: var(--fhadi-orange);
  box-shadow: 0 0 0 3px rgba(245, 154, 35, 0.15), var(--fhadi-shadow-card);
}

.vehicle-card-media {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #121519;
}

.vehicle-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.35));
}

.vehicle-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.vehicle-card:hover .vehicle-card-media img {
  transform: scale(1.045);
}

.vehicle-year {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 6px 9px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 8px;
  background: rgba(10, 12, 14, 0.55);
  backdrop-filter: blur(9px);
  font-size: 0.75rem;
  font-weight: 700;
}

.selected-chip {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  display: none;
  padding: 6px 9px;
  color: #2d1b07;
  border-radius: 8px;
  background: var(--fhadi-orange-highlight);
  font-size: 0.75rem;
  font-weight: 800;
}

.vehicle-card.is-selected .selected-chip {
  display: block;
}

.vehicle-card-body {
  padding: 22px;
}

.vehicle-card-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.vehicle-card-title h3 {
  margin: 0;
  font-family: var(--fhadi-font-heading);
  font-size: 1.2rem;
  line-height: 1.25;
}

.vehicle-price {
  color: #8b530d;
  font-family: var(--fhadi-font-heading);
  font-size: 0.93rem;
  font-weight: 700;
  white-space: nowrap;
}

.vehicle-price small {
  color: #8a9197;
  font-family: var(--fhadi-font-body);
  font-size: 0.75rem;
  font-weight: 500;
}

.vehicle-meta {
  display: flex;
  gap: 15px;
  margin: 18px 0;
  padding: 14px 0;
  color: #656d74;
  border-top: 1px solid #eceeed;
  border-bottom: 1px solid #eceeed;
  font-size: 0.75rem;
}

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

.vehicle-meta svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #8b949b;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.choose-vehicle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 11px 0 0;
  color: #252a2e;
  border: 0;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 800;
  cursor: pointer;
}

.choose-vehicle span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--fhadi-charcoal);
  transition: transform 200ms ease, background 200ms ease;
}

.vehicle-card:hover .choose-vehicle span,
.vehicle-card.is-selected .choose-vehicle span {
  color: #1d1407;
  background: var(--fhadi-orange);
  transform: rotate(-35deg);
}

.airport-section {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 720px;
  color: #fff;
  background: #15181c;
}

.airport-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.airport-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 65%, #15181c), linear-gradient(0deg, rgba(10, 12, 15, 0.65), transparent 50%);
}

.airport-image picture,
.airport-image img {
  width: 100%;
  height: 100%;
}

.airport-image img {
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.035);
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.airport-section:hover .airport-image img {
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.06);
}

.image-label {
  position: absolute;
  z-index: 2;
  bottom: 34px;
  left: 34px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(15, 17, 20, 0.58);
  backdrop-filter: blur(14px);
  font-size: 0.75rem;
  font-weight: 600;
}

.airport-copy {
  align-self: center;
  max-width: 590px;
  padding: 80px clamp(42px, 7vw, 118px) 80px clamp(42px, 5vw, 85px);
}

.airport-copy h2 {
  max-width: 520px;
}

.airport-copy > p {
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
}

.service-list {
  display: grid;
  gap: 0;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.service-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.service-list li > span {
  color: var(--fhadi-orange);
  font-family: var(--fhadi-font-heading);
  font-size: 0.75rem;
  font-weight: 700;
}

.service-list div {
  display: grid;
  gap: 2px;
}

.service-list strong {
  font-size: 0.88rem;
}

.service-list small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 6px;
  color: var(--fhadi-orange-highlight);
  border-bottom: 1px solid rgba(245, 154, 35, 0.35);
  font-size: 0.8rem;
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.process-section {
  padding: 120px 0 128px;
  background: #fff;
}

.testimonials-section {
  padding: 122px 0 132px;
  background:
    radial-gradient(circle at 12% 12%, rgba(245, 154, 35, 0.12), transparent 24%),
    #f1f1ee;
}

.reviews-heading {
  display: grid;
  grid-template-columns: 1fr 0.38fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}

.reviews-heading h2 {
  max-width: 820px;
}

.sample-review-note {
  justify-self: end;
  max-width: 270px;
  padding: 11px 13px;
  color: #6f5633;
  border: 1px solid rgba(151, 99, 30, 0.24);
  border-radius: 11px;
  background: rgba(245, 154, 35, 0.09);
  font-size: 0.75rem;
  line-height: 1.45;
}

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

.review-card {
  display: flex;
  min-height: 370px;
  padding: 30px;
  flex-direction: column;
  border: 1px solid #dfe0dc;
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(24, 27, 31, 0.06);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.review-card:hover {
  transform: translateY(-8px) rotate(-0.35deg);
  border-color: rgba(245, 154, 35, 0.45);
  box-shadow: 0 26px 56px rgba(24, 27, 31, 0.13);
}

.review-card-featured {
  color: #fff;
  border-color: #24282d;
  background: #1b1e22;
  transform: translateY(-16px);
}

.review-card-featured:hover {
  transform: translateY(-24px) rotate(0.35deg);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9da4aa;
  font-size: 0.75rem;
}

.review-stars {
  color: var(--fhadi-orange);
  letter-spacing: 0.14em;
}

.review-card blockquote {
  margin: 52px 0 38px;
  font-family: var(--fhadi-font-heading);
  font-size: 1.17rem;
  font-weight: 500;
  line-height: 1.65;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(120, 128, 135, 0.2);
}

.review-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #2b1b08;
  border-radius: 50%;
  background: var(--fhadi-orange-highlight);
  font-weight: 800;
}

.review-person > div:last-child {
  display: grid;
  gap: 2px;
}

.review-person strong {
  font-size: 0.82rem;
}

.review-person span {
  color: #879098;
  font-size: 0.75rem;
}

.contact-section {
  padding: 120px 0;
  background: #f8f7f4;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 60px;
  align-items: stretch;
}

.contact-copy {
  padding: 26px 0;
}

.contact-copy > p {
  max-width: 530px;
  margin: 25px 0 34px;
  color: #657078;
  line-height: 1.75;
}

.contact-cards {
  display: grid;
  gap: 10px;
}

.contact-card {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 12px 16px 12px 12px;
  border: 1px solid #dfe1e0;
  border-radius: 15px;
  background: #fff;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.contact-card:hover {
  transform: translateX(5px);
  border-color: rgba(245, 154, 35, 0.52);
  box-shadow: 0 14px 34px rgba(24, 27, 31, 0.08);
}

.contact-card > svg {
  width: 46px;
  height: 46px;
  padding: 12px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  border-radius: 13px;
  background: #1d2024;
}

.contact-card > span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.contact-card small {
  color: #7a838a;
  font-size: 0.75rem;
}

.contact-card strong {
  overflow: hidden;
  font-size: 0.88rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-card i {
  color: #9a631e;
  font-style: normal;
}

.map-card {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 28px;
  background: #ddd;
  box-shadow: 0 30px 70px rgba(24, 27, 31, 0.16);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.map-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 38px 80px rgba(24, 27, 31, 0.2);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 580px;
  border: 0;
  filter: saturate(0.82) contrast(1.02);
}

.map-info {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  background: rgba(18, 21, 25, 0.88);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.map-info > div {
  display: grid;
  gap: 2px;
}

.map-info span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
}

.map-info strong {
  font-size: 0.9rem;
}

.map-info a {
  color: var(--fhadi-orange-highlight);
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
}

.process-section .site-shell {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
  align-items: start;
}

.process-intro {
  position: sticky;
  top: 120px;
}

.process-steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.process-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 52px 58px 0.7fr 1.1fr;
  gap: 20px;
  align-items: center;
  min-height: 132px;
  padding: 28px 0;
  border-top: 1px solid #e3e5e6;
}

.process-steps li:last-child {
  border-bottom: 1px solid #e3e5e6;
}

.step-number {
  color: #a16519;
  font-family: var(--fhadi-font-heading);
  font-size: 0.75rem;
  font-weight: 700;
}

.process-steps svg {
  width: 48px;
  height: 48px;
  padding: 12px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  border-radius: 14px;
  background: var(--fhadi-charcoal);
}

.process-steps h3 {
  margin: 0;
  font-family: var(--fhadi-font-heading);
  font-size: 1.1rem;
}

.process-steps p {
  margin: 0;
  color: #687178;
  font-size: 0.88rem;
  line-height: 1.65;
}

.final-cta {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #0e1013;
}

.cta-media,
.cta-media img,
.cta-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cta-media img {
  object-fit: cover;
}

.cta-overlay {
  background: linear-gradient(90deg, rgba(8, 10, 12, 0.96), rgba(8, 10, 12, 0.68) 52%, rgba(8, 10, 12, 0.33));
}

.final-cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.final-cta h2 {
  max-width: 680px;
}

.cta-actions {
  display: grid;
  min-width: 230px;
  gap: 10px;
}

.cta-actions .primary-button {
  width: 100%;
}

.secondary-button {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.site-footer {
  padding: 70px 0 24px;
  color: #fff;
  background: #101216;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.45fr 0.76fr 0.42fr;
  gap: 80px;
  padding-bottom: 55px;
}

.footer-whatsapp {
  display: inline-flex;
  gap: 10px;
  margin-top: 22px;
  color: var(--fhadi-orange-highlight);
  font-size: 0.8rem;
  font-weight: 800;
}

.footer-brand img {
  width: 190px;
  height: 95px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 400px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  line-height: 1.7;
}

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

.footer-column > span {
  margin-bottom: 7px;
  color: var(--fhadi-orange);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
  overflow-wrap: anywhere;
}

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

.footer-column button {
  width: fit-content;
  padding: 0;
  color: rgba(255, 255, 255, 0.64);
  border: 0;
  background: transparent;
  font-size: 0.8rem;
  text-align: start;
  cursor: pointer;
}

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

.footer-location {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.76rem;
}

.footer-wordmark {
  height: clamp(110px, 17vw, 210px);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--fhadi-font-heading);
  font-size: clamp(8rem, 20vw, 16rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.8;
  user-select: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.34);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: #218a63;
  box-shadow: 0 14px 30px rgba(17, 76, 54, 0.3);
  font-size: 0.76rem;
  font-weight: 800;
  animation: whatsapp-breathe 3.2s ease-in-out infinite;
}

@keyframes whatsapp-breathe {
  0%, 100% { box-shadow: 0 14px 30px rgba(17, 76, 54, 0.3); }
  50% { box-shadow: 0 16px 38px rgba(33, 138, 99, 0.48), 0 0 0 7px rgba(33, 138, 99, 0.08); }
}

.floating-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 28px;
  max-width: min(420px, calc(100% - 32px));
  padding: 12px 17px;
  color: #fff;
  border-radius: 12px;
  background: #202429;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: 220ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease var(--delay, 0s), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--delay, 0s);
}

html[dir="rtl"] .eyebrow span,
html[dir="rtl"] .text-link span,
html[dir="rtl"] .contact-card > i,
html[dir="rtl"] .primary-button > span:last-child {
  transform: scaleX(-1);
}

html[dir="rtl"] .input-wrap svg {
  margin-right: 13px;
  margin-left: 0;
}

html[dir="rtl"] .phone-prefix b {
  padding-right: 12px;
  padding-left: 0;
}

html[dir="rtl"] .contact-card:hover {
  transform: translateX(-5px);
}

html[dir="rtl"] .destination-copy,
html[dir="rtl"] .map-info {
  text-align: right;
}

[data-contact-text],
.phone-prefix,
.nav-phone > span:last-child {
  direction: ltr;
  unicode-bidi: isolate;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-layout {
    grid-template-columns: 0.76fr minmax(430px, 0.8fr);
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 7vw, 5.4rem);
  }

  .nav-links {
    gap: 14px;
  }

  .nav-phone {
    min-width: 164px;
  }

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

  .process-section .site-shell {
    gap: 50px;
  }

  .process-steps li {
    grid-template-columns: 42px 54px 0.7fr 1fr;
    gap: 14px;
  }

  .footer-main {
    grid-template-columns: 1fr 0.45fr 0.75fr;
  }

  .footer-language {
    display: none;
  }
}

@media (max-width: 920px) {
  .site-header {
    height: 76px;
  }

  .brand {
    width: 160px;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 2;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 90px 36px 45px;
    background: rgba(15, 17, 20, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: 220ms ease;
  }

  .menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links > a:not(.nav-phone) {
    font-family: var(--fhadi-font-heading);
    font-size: 1.6rem;
  }

  .nav-phone {
    width: 100%;
    margin-top: 18px;
  }

  .language-switcher {
    margin-top: 10px;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 100px;
  }

  .hero-copy {
    max-width: 650px;
  }

  .booking-card {
    max-width: 650px;
  }

  .hero-scrim {
    background: linear-gradient(90deg, rgba(9, 11, 13, 0.96), rgba(9, 11, 13, 0.46)), linear-gradient(0deg, rgba(8, 10, 12, 0.98), rgba(8, 10, 12, 0.18) 55%);
  }

  .scroll-cue {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .destinations-heading,
  .reviews-heading,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .destination-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 470px 320px;
  }

  .destination-card-large {
    grid-column: 1 / 3;
    grid-row: auto;
  }

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

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

  .review-card-featured {
    transform: none;
  }

  .review-card-featured:hover {
    transform: translateY(-8px);
  }

  .sample-review-note {
    justify-self: start;
  }

  .contact-copy {
    padding-bottom: 0;
  }

  .map-card,
  .map-card iframe {
    min-height: 500px;
  }

  .airport-section {
    grid-template-columns: 1fr;
  }

  .airport-image {
    min-height: 520px;
  }

  .airport-image::after {
    background: linear-gradient(0deg, #15181c, transparent 38%);
  }

  .airport-copy {
    max-width: none;
    padding: 75px 48px 90px;
  }

  .process-section .site-shell {
    grid-template-columns: 1fr;
  }

  .process-intro {
    position: static;
  }

  .final-cta-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
}

@media (max-width: 680px) {
  .site-shell {
    width: min(100% - 28px, 1240px);
  }

  .hero::after {
    right: -45%;
    bottom: 36%;
    width: 95vw;
    height: 95vw;
  }

  .hero-media img {
    object-position: center top;
  }

  .hero-scrim {
    background: linear-gradient(180deg, rgba(7, 9, 11, 0.7) 0%, rgba(7, 9, 11, 0.28) 26%, rgba(7, 9, 11, 0.92) 52%, #090b0d 72%);
  }

  .hero-layout {
    gap: 42px;
    padding-top: 118px;
    padding-bottom: 70px;
  }

  .hero-copy {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .eyebrow {
    font-size: 0.75rem;
  }

  .hero h1 {
    margin: 20px 0 18px;
    font-size: clamp(3rem, 14vw, 4.3rem);
    line-height: 0.97;
  }

  .hero-copy > p {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .hero-proof {
    margin-top: 28px;
  }

  .hero-proof > div {
    padding-right: 20px;
  }

  .hero-proof > div + div {
    padding-left: 20px;
  }

  .booking-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .booking-topline {
    display: block;
  }

  .secure-note {
    margin-top: 10px;
  }

  .field-grid-2,
  .field-grid-3 {
    grid-template-columns: 1fr;
  }

  .compact-fields {
    grid-template-columns: 1fr;
  }

  .input-wrap {
    height: 52px;
  }

  .fleet-section,
  .process-section,
  .destinations-section,
  .testimonials-section,
  .contact-section {
    padding: 88px 0 94px;
  }

  .section-heading h2,
  .airport-copy h2,
  .process-intro h2,
  .final-cta h2,
  .destinations-heading h2,
  .reviews-heading h2,
  .contact-copy h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .destination-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .destination-card,
  .destination-card-large {
    grid-column: auto;
    grid-row: auto;
    min-height: 330px;
  }

  .destination-card-large {
    min-height: 430px;
  }

  .fleet-toolbar {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
    margin-top: 38px;
  }

  .filter-group {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .filter-button {
    flex: 0 0 auto;
  }

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

  .vehicle-card-media {
    height: 245px;
  }

  .airport-image {
    min-height: 390px;
  }

  .image-label {
    right: 18px;
    bottom: 18px;
    left: 18px;
    text-align: center;
  }

  .airport-copy {
    padding: 58px 20px 78px;
  }

  .process-section .site-shell {
    gap: 45px;
  }

  .process-steps li {
    grid-template-columns: 38px 48px 1fr;
    gap: 13px;
  }

  .process-steps svg {
    width: 44px;
    height: 44px;
  }

  .process-steps p {
    grid-column: 3;
    padding-bottom: 4px;
  }

  .final-cta {
    min-height: 520px;
  }

  .review-card {
    min-height: 330px;
    padding: 25px;
  }

  .review-card blockquote {
    margin-top: 38px;
    font-size: 1.05rem;
  }

  .map-card,
  .map-card iframe {
    min-height: 430px;
  }

  .map-info {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-language {
    display: grid;
  }

  .footer-wordmark {
    height: 90px;
    font-size: 7.8rem;
  }

  .footer-bottom {
    gap: 8px;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
    justify-content: center;
    padding: 0;
  }

  .floating-whatsapp span {
    display: none;
  }
}

@media (max-width: 420px) {
  .site-shell {
    width: min(100% - 22px, 1240px);
  }

  .brand {
    width: 148px;
  }

  .hero-copy {
    min-height: 390px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 3.75rem);
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .booking-card {
    padding: 20px 15px;
  }

  .filter-group {
    margin-right: -11px;
    margin-left: -11px;
    padding-inline: 11px;
  }

  .vehicle-card-media {
    height: 225px;
  }

  .contact-card {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    padding-inline: 10px;
  }

  .contact-card > svg {
    width: 42px;
    height: 42px;
  }

  .map-card {
    border-width: 5px;
    border-radius: 20px;
  }

  .footer-wordmark {
    font-size: 6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-media img {
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
