*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:    #0D0D1A;
  --secondary:  #FFF8F6;
  --accent:     #C41E2A;
  --gold:       #B8954A;
  --text:       #4A4A4A;
  --white:      #FFFFFF;
  --divider:    #E8E8E8;
  --font-head:  'Epilogue', sans-serif;
  --font-body:  'DM Sans', sans-serif;
  --font-arabic: 'Cairo', sans-serif;
  --container:  1300px;
}

body {
  font-family: var(--font-body);
  color: var(--primary);
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 70px;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Navbar ─────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  transition: box-shadow 0.3s ease;
}

.navbar--scrolled {
  box-shadow: 0 2px 24px rgba(13, 13, 26, 0.08);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.nav-logo { flex-shrink: 0; }

/* Centre the nav links between logo and right group */
header .nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Right group: lang switcher + hamburger + CTA */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Logo */
.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
}

.logo span {
  color: var(--accent);
}

.logo-link { display: inline-flex; align-items: center; }
.logo-img  { display: block; }

/* Nav links */
.nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 10px;
}

.nav__link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--primary);
  padding: 14px 15px;
  transition: color 0.2s ease;
}

.nav__link:hover,
.nav__link--active {
  color: var(--accent);
}

/* CTA Button */
.btn-whatsapp {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 16px 25px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 10px;
  transition: opacity 0.2s ease;
}

.btn-whatsapp:hover {
  opacity: 0.92;
}


/* ── Hero ─────────────────────────────────────────────── */
.hero {
  padding: 30px 50px 0;
  background: var(--white);
}

.hero__wrapper {
  max-width: 1340px;
  margin: 0 auto;
}

.hero__card {
  position: relative;
  height: 620px;
  border-radius: 46px;
  overflow: hidden;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 101.4%;
  top: -0.7%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 40px 10px 110px;
  gap: 18px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
}

.hero__heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(42px, 5.5vw, 74px);
  line-height: 1.2;
  color: var(--white);
  max-width: none;
  white-space: nowrap;
}

/* Latin headings are longer - scale them down so they still fit one line */
html[lang="fr"] .hero__heading,
html[lang="en"] .hero__heading {
  font-size: clamp(32px, 4vw, 54px);
}

.hero__subtext {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--white);
  max-width: 744px;
}

.hero__ctas {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 20px;
}

/* Dominant primary "Browse Fleet" button */
.hero__cta-primary {
  font-size: 17px;
  padding: 18px 44px;
  box-shadow: 0 10px 28px rgba(232, 25, 44, 0.35);
}

/* Secondary action: outlined (bordered) button */
.hero__cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hero__cta-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 25px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  border-radius: 100px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.hero__btn--red {
  background: var(--accent);
  color: var(--white);
}

.hero__btn--white {
  background: var(--white);
  color: var(--primary);
}

.hero__btn--red:hover,
.hero__btn--white:hover {
  opacity: 0.88;
}


/* ── Booking bar ──────────────────────────────────────── */
/* Mobile-first: sits just under the hero, slightly overlapping. */
.hero__booking {
  margin-top: -36px;
  position: relative;
  z-index: 5;
  padding: 0 14px;
}

@keyframes bookingReveal {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.booking-bar {
  border-radius: 24px;
  padding: 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Semi-transparent frosted-glass card that floats over the hero image */
.booking-bar--glass {
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  animation: bookingReveal 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.booking-bar__field {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.booking-bar__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  white-space: nowrap;
  cursor: pointer;
}

/* Calendar icon + date input in one row */
.booking-bar__input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(13, 13, 26, 0.08);
  border-radius: 12px;
  padding: 11px 12px;
}

.booking-bar__cal {
  flex-shrink: 0;
}

.booking-bar__input {
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--primary);
  background: transparent;
  width: 100%;
  padding: 0;
  cursor: text;
}

.booking-bar__input::placeholder {
  color: #b0b0b0;
  font-weight: 400;
}

.booking-bar__input[type="date"] {
  color-scheme: light;
}

/* The only primary CTA in this zone: red, full-width */
.booking-bar__send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 28px;
  background: #E8192C;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.booking-bar__send:hover {
  background: #c8121f;
  transform: translateY(-1px);
}

/* Desktop: float as a centered card overlapping the hero image, fields in a row */
@media (min-width: 769px) {
  .hero__wrapper {
    position: relative;
  }
  .hero__booking {
    position: relative;
    width: 100%;
    max-width: 1000px;
    padding: 0 24px;
  }
  .booking-bar {
    flex-direction: row;
    align-items: flex-end;
    flex-wrap: wrap;
    padding: 22px 24px;
    gap: 16px;
  }
  .booking-bar__field {
    flex: 1 1 150px;
  }
  .booking-bar__send {
    flex: 1 1 100%;
  }
}

/* ── About ─────────────────────────────────────────── */
.about {
  background: var(--white);
  overflow: hidden;
}

.about__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 70px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Left: images column */
.about__images {
  flex: 1;
  position: relative;
  height: 672px;
  min-width: 0;
  padding: 10px 50px 100px 10px;
}

/* Decorative elements */
.about__deco {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.about__deco--asterisk {
  top: 92px;
  right: 86px;
}

.about__deco--star {
  bottom: 52px;
  left: 234px;
}

/* Main image (tall pill) */
.about__img-main-wrap {
  position: relative;
  width: fit-content;
  height: 562px;
}

.about__img-main {
  width: 410px;
  height: 562px;
  border-radius: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  position: relative;
  z-index: 1;
}

/* Overlay image (smaller pill, bottom-right) */
.about__img-overlay-wrap {
  position: absolute;
  bottom: 0;
  right: 50px;
  z-index: 3;
}

.about__img-overlay {
  width: 321px;
  height: 440px;
  border-radius: 160px;
  object-fit: cover;
  object-position: center;
  display: block;
  position: relative;
  z-index: 1;
}

/* Decorative borders (thin #ECECEC frame offset from each image) */
.about__img-border {
  position: absolute;
  border: 1px solid var(--divider);
  pointer-events: none;
  z-index: 0;
}

.about__img-border--main {
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border-radius: 210px;
}

.about__img-border--overlay {
  top: -8px;
  left: -8px;
  width: 321px;
  height: 440px;
  border-radius: 168px;
}

/* Right: content column */
.about__content {
  flex: 1;
  min-width: 0;
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.about__label-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.about__label-text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--accent);
  line-height: 1.2;
}

.about__heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.2;
  color: var(--primary);
  max-width: 630px;
  margin-bottom: 22px;
}

.about__desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 30px;
}

/* Features */
.about__features {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 58px;
}

.about__feature {
  display: flex;
  align-items: flex-start;
}

.about__feature--bordered {
  border-bottom: 1px solid var(--divider);
  padding-bottom: 30px;
}

.about__feature-icon-wrap {
  position: relative;
  width: 75px;
  height: 75px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
}

.about__feature-icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--accent);
  opacity: 0.1;
  border-radius: 12px;
}

.about__feature-icon-wrap svg,
.about__feature-icon-wrap img {
  position: relative;
  z-index: 1;
  display: block;
  margin: auto;
}

.about__feature-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 5px;
}

.about__feature-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  color: var(--primary);
}

.about__feature-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

/* CTA button */
.about__cta-wrap {
  display: flex;
}


/* ── Fleet ─────────────────────────────────────────── */
.fleet {
  background: var(--white);
  overflow: hidden;
  padding-bottom: 50px;
}

.fleet__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 70px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Header */
.fleet__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding-bottom: 0;
  position: relative;                 /* anchors the arrows */
}

.fleet__label-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fleet__label-text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--accent);
  line-height: 1.2;
}

.fleet__heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.2;
  color: var(--primary);
  text-align: center;
  max-width: 640px;                   /* two balanced lines, leaves room for the arrows */
  text-wrap: balance;
}

/* Carousel */
.fleet__carousel-wrap {
  width: 100%;
  overflow: hidden;
}

.fleet__track {
  display: flex;
  gap: 30px;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Card */
.fleet__card {
  flex-shrink: 0;
  width: calc((100% - 90px) / 3.5); /* 3 cards + half of the 4th, hinting there is more */
  border: 1px solid var(--divider);
  border-radius: 30px;
  padding: 21px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  background: var(--white);
}

/* Image wrap */
.fleet__card-img-wrap {
  position: relative;
  width: 100%;
  height: 163px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.fleet__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 16px;
}

/* White flash sweep on hover */
.fleet__card-img-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.78) 50%,
    transparent 100%
  );
  pointer-events: none;
  transition: none;
}

.fleet__card:hover .fleet__card-img-wrap::after {
  left: 160%;
  transition: left 0.55s ease;
}

/* Badge (overlaid on image, top-left) */
.fleet__card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(236, 236, 236, 0.92);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 100px;
  line-height: 1;
  white-space: nowrap;
}

/* Badges inside dark sections get gold tint */
.cta__card .fleet__card-badge,
.footer__card .fleet__card-badge,
.cta__card .fc__card-badge,
.footer__card .fc__card-badge {
  background: rgba(184, 149, 74, 0.15);
  color: var(--gold);
  border: 1px solid rgba(184, 149, 74, 0.3);
}

/* Card body */
.fleet__card-body {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex: 1;
}

/* Name */
.fleet__card-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  color: var(--primary);
}

/* Specs */
.fleet__card-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid var(--divider);
  padding-bottom: 26px;
}

.fleet__spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 27px;
}

.fleet__spec-label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
}

.fleet__spec-val {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
}

/* Card footer: price + book button */
.fleet__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fleet__card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex: 1;
}

.fleet__price-amount {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--primary);
  white-space: nowrap;
}

.fleet__price-unit {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--text);
  white-space: nowrap;
}

/* Book button */
.fleet__card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: var(--accent);
  flex-shrink: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.fleet__card-btn:hover {
  opacity: 0.88;
  transform: scale(1.08);
}

/* Nav buttons */
.fleet__nav-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
/* in a section header: beside the title, level with its last line */
.fleet__header .fleet__nav-row,
.cd-similar__header .fleet__nav-row {
  position: absolute;
  inset-inline-end: 0;
  bottom: 4px;
}

.fleet__nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.fleet__nav:hover {
  opacity: 0.88;
  transform: scale(1.06);
}

.fleet__nav:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

/* ── How It Works ─────────────────────────────────────── */
.hiw {
  background: var(--white);
  overflow: hidden;
}

.hiw__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 70px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Left column */
.hiw__left {
  flex: 1;
  min-width: 0;
  padding: 10px 50px 50px 10px;
  display: flex;
  flex-direction: column;
}

.hiw__label-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.hiw__label-text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--accent);
  line-height: 1.2;
}

.hiw__heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.2;
  color: var(--primary);
  max-width: 611px;
  margin-bottom: 22px;
}

.hiw__desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  max-width: 595px;
  margin-bottom: 40px;
}

/* Accordion */
.hiw__accordion {
  display: flex;
  flex-direction: column;
}

.hiw__step {
  border-bottom: 1px solid var(--divider);
}

.hiw__step:first-child {
  border-top: 1px solid var(--divider);
}

.hiw__step-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  text-align: left;
}

.hiw__step-num {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  min-width: 28px;
  flex-shrink: 0;
  line-height: 1;
}

.hiw__step-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  color: var(--primary);
  flex: 1;
  line-height: 1.2;
}

.hiw__step-chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.hiw__step--open .hiw__step-chevron {
  transform: rotate(180deg);
}

.hiw__step-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}

.hiw__step-body p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  padding: 0 0 24px 44px;
}

.hiw__step--open .hiw__step-body {
  max-height: 120px;
}

/* Right column */
.hiw__right {
  flex: 1;
  min-width: 0;
  position: relative;
  padding: 10px 10px 50px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Decorative elements */
.hiw__deco {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.hiw__deco--asterisk {
  top: 60px;
  right: -10px;
}

.hiw__deco--star {
  bottom: 20px;
  left: 60px;
}

/* Image */
.hiw__img-wrap {
  position: relative;
  width: fit-content;
}

.hiw__img {
  width: 410px;
  height: 564px;
  border-radius: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  position: relative;
  z-index: 1;
}

.hiw__img-border {
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid var(--divider);
  border-radius: 210px;
  pointer-events: none;
  z-index: 0;
}

/* Floating badge */
.hiw__badge {
  position: absolute;
  bottom: 30px;
  right: 0;
  background: var(--accent);
  border-radius: 16px;
  padding: 20px;
  min-width: 200px;
  z-index: 3;
}

.hiw__badge-count {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 4px;
}

.hiw__badge-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  line-height: 1.3;
}

.hiw__badge-rule {
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  margin: 16px 0;
}

.hiw__badge-avatars {
  display: flex;
  align-items: center;
}

.hiw__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: #c0c0c0 center / cover no-repeat;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hiw__avatar + .hiw__avatar {
  margin-left: -8px;
}

.hiw__avatar--1 {
  background-image: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=64');
}

.hiw__avatar--2 {
  background-image: url('https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?w=64');
}

.hiw__avatar--3 {
  background-image: url('https://images.unsplash.com/photo-1534528741775-53994a69daeb?w=64');
}

.hiw__avatar--plus {
  background: var(--white);
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  background-image: none;
}

/* ── Why Choose Us ─────────────────────────────────────── */
.wcu {
  background: var(--white);
  overflow: hidden;
}

.wcu__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

/* Header */
.wcu__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.wcu__label-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wcu__label-text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--accent);
  line-height: 1.2;
}

.wcu__heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.2;
  color: var(--primary);
  max-width: 700px;
  text-align: center;
}

/* 3-column grid */
.wcu__grid {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
}

/* Feature columns (left & right) */
.wcu__col--features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 45px;
  min-width: 0;
}

/* Center column */
.wcu__col--center {
  flex: 0 0 406px;
}

/* Individual feature */
.wcu__feature {
  display: flex;
  align-items: flex-start;
}

.wcu__feature--sep {
  border-bottom: 1px solid var(--divider);
  padding-bottom: 45px;
}

/* Icon wrap */
.wcu__feat-icon-wrap {
  position: relative;
  width: 57px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}

.wcu__feat-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: var(--accent);
  opacity: 0.1;
  border-radius: 15px;
}

.wcu__feat-icon-wrap svg {
  position: relative;
  z-index: 1;
  margin-left: 3px;
  margin-top: 3px;
}

/* Feature body */
.wcu__feat-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wcu__feat-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  color: var(--primary);
}

.wcu__feat-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

/* Center image stack */
.wcu__img-stack {
  position: relative;
  width: 100%;
  height: 514px;
}

.wcu__img-featured {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

/* ── FAQ ─────────────────────────────────────────── */
.faq {
  background: var(--white);
  padding: 0 50px 80px;
}

.faq__wrapper {
  max-width: 1340px;
  margin: 0 auto;
}

.faq__bg {
  background: var(--secondary);
  border-radius: 46px;
  padding: 100px 20px;
}

.faq__inner {
  display: flex;
  align-items: center;
  width: 100%;
}

/* Left: composite image */
.faq__images {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.faq__collage {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Right: content */
.faq__content {
  flex: 1;
  min-width: 0;
  padding: 10px 9.5px 20px 97px;
  display: flex;
  flex-direction: column;
}

.faq__label-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.faq__label-text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--accent);
  line-height: 1.2;
}

.faq__heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.2;
  color: var(--primary);
  max-width: 638px;
  margin-bottom: 40px;
}

/* Accordion */
.faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq__item {
  border-bottom: 1px solid var(--divider);
  padding-bottom: 26px;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 0;
  text-align: left;
  gap: 10px;
}

.faq__question span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  color: var(--primary);
}

.faq__chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq__item--open .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}

.faq__item--open .faq__answer {
  max-height: 150px;
}

.faq__answer p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  padding-top: 5px;
  max-width: 560px;
}

/* ── Testimonials ─────────────────────────────────────── */
.testimonials {
  background: var(--white);
  overflow: hidden;
}

.testimonials__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.testimonials__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  max-width: 540px;
}

.testimonials__label-row {
  display: flex;
  justify-content: center;
}

.testimonials__badge {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  line-height: 1.2;
  border: 1px solid var(--divider);
  border-radius: 10px;
  padding: 5px 16px;
}

.testimonials__heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--primary);
  max-width: 720px;
  text-align: center;
}

.testimonials__subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  opacity: 0.85;
}

/* Three vertically-scrolling columns with a top/bottom fade mask */
.testimonials__columns {
  display: flex;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-height: 740px;
  margin-top: 10px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);
          mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);
}

.testimonials__col {
  flex-shrink: 0;
}

/* Columns 2 & 3 progressively appear on larger viewports */
.testimonials__col--md { display: none; }
.testimonials__col--lg { display: none; }

.testimonials__track {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
  animation: testi-scroll var(--duration, 22s) linear infinite;
}

/* Pause the loop on hover for readability */
.testimonials__col:hover .testimonials__track {
  animation-play-state: paused;
}

@keyframes testi-scroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

.tcard {
  width: 320px;
  max-width: 100%;
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(196, 30, 42, 0.08);
}

.tcard__text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

.tcard__author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.tcard__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.tcard__meta {
  display: flex;
  flex-direction: column;
}

.tcard__name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--primary);
}

.tcard__role {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.25;
  color: var(--text);
  opacity: 0.6;
}

/* Reveal both extra columns on wider screens */
@media (min-width: 768px) {
  .testimonials__col--md { display: block; }
}

@media (min-width: 1024px) {
  .testimonials__col--lg { display: block; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .testimonials__track { animation: none; }
  .testimonials__columns {
    max-height: none;
    -webkit-mask-image: none;
            mask-image: none;
    flex-wrap: wrap;
  }
}

/* ── CTA ─────────────────────────────────────────────── */
.cta {
  background: var(--white);
  padding: 0 50px 0;
}

.cta__wrapper {
  max-width: 1340px;
  margin: 0 auto;
}

.cta__card {
  position: relative;
  background: var(--primary);
  border-radius: 46px 46px 0 0;
  overflow: hidden;
  padding: 100px 20px;
}

/* Magnetic dot-field canvas (CTA + footer backgrounds) */
.mag-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.cta__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta__deco-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cta__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.cta__left {
  flex: 1;
  min-width: 0;
  padding: 10px 20px 10px 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.cta__heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.2;
  color: var(--white);
  max-width: 549px;
}

.cta__subtext {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--white);
  max-width: 465px;
  padding-bottom: 20px;
  opacity: 0.85;
}


.cta__btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 25px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  border-radius: 100px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.cta__btn:hover {
  opacity: 0.9;
}


.cta__right {
  flex: 1;
  min-width: 0;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta__car-img {
  width: 100%;
  max-width: 630px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

/* ── Footer ─────────────────────────────────────────── */
.footer {
  background: var(--white);
  padding: 0 50px 50px;
}

.footer__wrapper {
  max-width: 1340px;
  margin: 0 auto;
}

.footer__card {
  position: relative;
  background: var(--primary);
  border-radius: 0 0 46px 46px;
  overflow: hidden;
  padding: 50px 20px 0;
}

/* Decorative stars */
.footer__star {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  display: flex;
}

.footer__star--lg {
  top: 28px;
  right: 22%;
}

.footer__star--bl {
  bottom: 72px;
  left: 22%;
}

.footer__star--bc {
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}

/* Inner layout */
.footer__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
}

/* 3-column grid: brand, quick links, contact */
.footer__cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  column-gap: 60px;
  align-items: start;
  padding-bottom: 40px;
}

.footer__col {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__col--brand {
  max-width: 360px;
}

/* Logo */
.footer__logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 24px;
  color: var(--white);
  line-height: 1;
}

.footer__logo span {
  color: var(--accent);
}

/* Description */
.footer__desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* Column heading */
.footer__col-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  line-height: 1.2;
  padding-bottom: 5px;
}

/* Links */
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.footer__link {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  padding-bottom: 10px;
  display: block;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--accent);
}

/* Newsletter form */
.footer__newsletter {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.footer__email {
  flex: 1;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  outline: none;
  border-radius: 100px;
  padding: 0 20px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--white);
  min-width: 0;
}

.footer__email::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.footer__email:focus {
  border-color: rgba(255, 255, 255, 0.4);
}

.footer__send {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.footer__send:hover {
  opacity: 0.88;
  transform: scale(1.06);
}

/* Bottom bar */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 16px 10px 28px;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}


/* ── Fleet Hero ─────────────────────────────────────────── */
.fleet-hero {
  padding: 30px 0 60px;
}

.fleet-hero__container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
}

.fleet-hero__card {
  position: relative;
  background: var(--primary);
  border-radius: 46px;
  overflow: hidden;
  width: 100%;
  padding: 140px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 128.54%;
  top: -14.27%;
  object-fit: cover;
  object-position: center;
  max-width: none;
}

.fleet-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 26, 0.6);
  border-radius: 46px;
}

.fleet-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.fleet-hero__heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 74px;
  line-height: 1.2;
  color: var(--white);
  text-align: center;
}

.fleet-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.36;
}

.fleet-hero__bc-home {
  color: var(--white);
  text-decoration: none;
}

.fleet-hero__bc-sep {
  color: var(--white);
  margin: 0 8px;
}

.fleet-hero__bc-current {
  color: var(--accent);
}


/* ── Contact Hero ────────────────────────────────────────── */
.contact-hero {
  padding: 30px 0 60px;
}

.contact-hero__container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-hero__card {
  position: relative;
  background: var(--primary);
  border-radius: 46px;
  overflow: hidden;
  width: 100%;
  padding: 130px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 128.54%;
  top: -14.27%;
  object-fit: cover;
  object-position: center;
  max-width: none;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 26, 0.55);
  border-radius: 46px;
}

.contact-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.contact-hero__heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 74px;
  line-height: 1.2;
  color: var(--white);
  text-align: center;
}

.contact-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.36;
}

.contact-hero__bc-home {
  color: var(--white);
  text-decoration: none;
}

.contact-hero__bc-sep {
  color: var(--white);
  margin: 0 8px;
}

.contact-hero__bc-current {
  color: var(--accent);
}

/* ── Contact Section ─────────────────────────────────────── */
.contact-section {
  background: var(--white);
  padding: 0 50px 80px;
}

.contact-section__container {
  max-width: 1340px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--divider);
  border-radius: 30px;
  padding: 51px;
  gap: 0;
}

/* Left column */
.contact-card__left {
  flex: 0 0 45%;
  padding-right: 50px;
}

.contact-info {
  position: relative;
  background: var(--primary);
  border-radius: 30px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* decorative circles */
.contact-info::before {
  content: '';
  position: absolute;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  bottom: -90px;
  right: -90px;
  pointer-events: none;
}

.contact-info::after {
  content: '';
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  bottom: -30px;
  right: -30px;
  pointer-events: none;
}

.contact-info__top {
  margin-bottom: 48px;
}

.contact-info__heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

.contact-info__sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.contact-info__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-bottom: 48px;
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-info__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.contact-info__text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--white);
}

.contact-info__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.75);
  flex-shrink: 0;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.contact-info__social:hover {
  opacity: 0.75;
  border-color: var(--white);
}

/* Right column */
.contact-card__right {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 15px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 16px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 5px 15px 16px;
}

.contact-form__field--full {
  grid-column: 1 / -1;
  padding-bottom: 24px;
}

.contact-form__label {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--divider);
  outline: none;
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--primary);
  line-height: 1.7;
  resize: none;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #b0b0b0;
  font-weight: 400;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-bottom-color: var(--accent);
}

.contact-form__submit {
  width: 100%;
  padding: 16px 25px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-align: center;
  margin: 10px 15px 0;
  width: calc(100% - 30px);
  transition: opacity 0.2s ease;
}

.contact-form__submit:hover {
  opacity: 0.9;
}

/* ── Fleet Content (sidebar + grid) ─────────────────────── */
.fc {
  padding: 60px 0 80px;
}

.fc__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

/* ── Sidebar ── */
.fc__sidebar {
  width: 325px;
  flex-shrink: 0;
  position: sticky;
  top: 20px;
  padding-right: 15px;
}

.fc__aside {
  background: #FFF8F6;
  border-radius: 30px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.fc__search-wrap {
  padding-bottom: 30px;
  border-bottom: 1px solid #ECECEC;
}

.fc__search-input {
  width: 100%;
  background: #fff;
  border: none;
  outline: none;
  border-radius: 100px;
  padding: 13px 20px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.fc__search-input::placeholder { color: var(--text); }

.fc__filters-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ECECEC;
}

.fc__filters-heading {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  color: var(--primary);
  text-transform: capitalize;
}

.fc__filters-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.fc__filter-label {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.7;
  user-select: none;
}

.fc__checkbox {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1px solid #767676;
  border-radius: 2.5px;
  accent-color: var(--accent);
  cursor: pointer;
}

/* Per-option icon (vehicle types) and brand logo */
.fc__type-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--text);
}

.fc__brand-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.fc__search-btn {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-transform: capitalize;
  transition: opacity 0.2s;
}

.fc__search-btn:hover { opacity: 0.88; }

/* ── Grid ── */
.fc__main {
  flex: 1;
  min-width: 0;
  padding-left: 15px;
}

.fc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.fc__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
}

/* ── Car Card ── */
.fc__card {
  border: 1px solid #ECECEC;
  border-radius: 30px;
  padding: 21px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  background: #fff;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.fc__card--in {
  opacity: 1;
  transform: translateY(0);
}

.fc__card-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 144px;
}

.fc__card-img {
  max-height: 144px;
  width: 100%;
  object-fit: contain;
}

.fc__card-body {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex: 1;
}

.fc__card-meta {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fc__card-badge {
  display: inline-block;
  background: #ECECEC;
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  padding: 10px 20px;
  border-radius: 100px;
  align-self: flex-start;
}

.fc__card-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  color: var(--primary);
}

/* Specs */
.fc__card-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 26px;
  border-bottom: 1px solid #ECECEC;
}

.fc__spec {
  display: flex;
  align-items: center;
  gap: 9px;
}

.fc__spec-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.fc__spec-label {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  flex: 1;
}

.fc__spec-val {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  margin-left: auto;
}

/* Card footer: price + book button */
.fc__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fc__card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.fc__price-num {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 24px;
  color: var(--primary);
  line-height: 1.2;
}

.fc__price-ask {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--primary);
  line-height: 1.3;
}

.fc__price-per {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
}

.fc__book-btn {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.fc__book-btn:hover {
  opacity: 0.85;
  transform: scale(1.06);
}

/* ── Pagination ── */
.fc__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding-top: 40px;
}

.fc__page-btn {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  margin: 0 5px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
}

.fc__page-btn--active {
  background: var(--primary);
  cursor: default;
}

.fc__page-btn--arrow {
  background: var(--accent);
}

.fc__page-btn:hover:not(.fc__page-btn--active) {
  transform: scale(1.08);
}

/* ── Top Bar ─────────────────────────────────────────── */
.top-bar {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  padding: 8px 70px;
}

.top-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

@media (max-width: 768px) {
  .top-bar { display: none; }
}


/* ── Hero tagline ────────────────────────────────────── */
.hero__tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  margin-top: 16px;
}

/* ── HIW: always-visible steps ───────────────────────── */
.hiw__steps {
  display: flex;
  flex-direction: column;
}

.hiw__step {
  border-bottom: 1px solid var(--divider);
  padding: 28px 0;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.hiw__step:first-child {
  border-top: 1px solid var(--divider);
}

.hiw__step-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  min-width: 64px;
}

.hiw__step-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}

.hiw__step-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  color: var(--primary);
  line-height: 1.2;
}

.hiw__step-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

/* ── Footer: Get in Touch ────────────────────────────── */
.footer__hours {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.footer__hours p {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.footer__phone {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.footer__address {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 240px;
}

/* contact column: same size and rhythm as the quick links next to it */
.footer__col--contact { gap: 10px; }
.footer__col--contact .footer__col-title { margin-bottom: 10px; }
.footer__col--contact .footer__hours { margin-bottom: 0; }
.footer__col--contact .footer__hours p,
.footer__col--contact .footer__phone,
.footer__col--contact .footer__address {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.footer__wa-btn {
  display: inline-block;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(13, 13, 26, 0.3);
}

.footer__wa-btn:hover {
  opacity: 0.88;
  color: #fff;
}

/* ── Contact Form: simplified ────────────────────────── */
.contact-form-simple {
  width: 100%;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
}

.contact-form-simple__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 28px;
}

.contact-form__wa-btn {
  display: block;
  width: 100%;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 20px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(13, 13, 26, 0.3);
  margin-bottom: 24px;
  transition: opacity 0.2s ease;
}

.contact-form__wa-btn:hover {
  opacity: 0.9;
  color: #fff;
}

.contact-form__divider {
  text-align: center;
  color: #b0b0b0;
  font-size: 14px;
  font-family: var(--font-body);
  margin-bottom: 24px;
}

.contact-form-simple .contact-form {
  padding: 0;
}

.contact-form__reply-note {
  font-family: var(--font-body);
  font-size: 13px;
  text-align: center;
  color: var(--text);
  margin-top: 16px;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
  .booking-bar {
    flex-direction: column;
    border-radius: 20px;
    padding: 20px;
    gap: 16px;
  }
  .booking-bar__field {
    width: 100%;
  }
  .booking-bar__sep {
    display: none;
  }
  .booking-bar__send {
    width: 100%;
    justify-content: center;
  }
  .footer__cols {
    grid-template-columns: 1fr;
  }
  .footer__col:nth-child(2),
  .footer__col:nth-child(3) {
    padding-left: 10px;
  }
  .fc__container {
    flex-direction: column;
  }
  .fc__sidebar {
    width: 100%;
    position: static;
    padding-right: 0;
  }
  .fc__grid {
    grid-template-columns: 1fr;
  }
  .contact-form-simple {
    padding: 0;
  }
}

/* ── Language switcher ──────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-switcher__btn {
  background: none;
  border: 1.5px solid var(--divider);
  border-radius: 6px;
  padding: 5px 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}
.lang-switcher__btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.lang-switcher__btn--active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
@media (max-width: 1024px) {
  .lang-switcher {
    margin-right: 8px;
  }
  .lang-switcher__btn {
    padding: 4px 8px;
    font-size: 12px;
  }
}

/* ── Language switcher (flag dropdown) ──────────────── */
.lang-dd { position: relative; display: flex; }
.lang-dd__btn {
  display: flex; align-items: center; gap: 7px;
  padding: 5px 10px; border-radius: 999px;
  border: 1.5px solid var(--divider); background: var(--white);
  cursor: pointer; font-family: var(--font-body); line-height: 1;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lang-dd__btn:hover { border-color: var(--accent); box-shadow: 0 4px 14px rgba(13,13,26,0.08); }
.lang-dd__flag {
  width: 22px; height: 22px; border-radius: 50%; overflow: hidden;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.lang-dd__flag-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lang-dd__code { font-size: 13px; font-weight: 700; color: var(--primary); letter-spacing: 0.04em; }
.lang-dd__chev { display: flex; align-items: center; color: var(--text); transition: transform 0.25s ease; }
.lang-dd.open .lang-dd__chev { transform: rotate(180deg); }
.lang-dd__menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 174px; background: var(--white);
  border: 1.5px solid var(--divider); border-radius: 14px; overflow: hidden;
  box-shadow: 0 18px 44px rgba(13,13,26,0.16);
  opacity: 0; transform: translateY(-8px) scale(0.97); pointer-events: none;
  transition: opacity 0.22s cubic-bezier(.16,1,.3,1), transform 0.22s cubic-bezier(.16,1,.3,1);
  z-index: 200;
}
.lang-dd.open .lang-dd__menu { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.lang-dd__opt {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 16px; cursor: pointer;
  font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--text);
  transition: background 0.15s ease;
}
.lang-dd__opt:hover { background: var(--secondary); }
.lang-dd__opt.active { color: var(--accent); }
.lang-dd__opt.active .lang-dd__opt-label::after { content: " ✓"; }
.lang-dd__opt-flag {
  width: 22px; height: 22px; border-radius: 50%; overflow: hidden;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.lang-dd__opt-flag img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lang-dd__divider { height: 1px; background: var(--divider); margin: 0 12px; }
html[dir="rtl"] .lang-dd__menu { right: auto; left: 0; }
html[dir="rtl"] .lang-dd__btn,
html[dir="rtl"] .lang-dd__opt { flex-direction: row-reverse; }
@media (max-width: 1024px) {
  .lang-dd { margin-right: 8px; }
}
html[dir="rtl"] .lang-dd { margin-right: 0; margin-left: 8px; }

/* ── RTL support ───────────────────────────────────── */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}
[dir="rtl"] .navbar__inner {
  flex-direction: row-reverse;
}
[dir="rtl"] .nav__list {
  flex-direction: row-reverse;
}
[dir="rtl"] .nav-right {
  flex-direction: row-reverse;
}
[dir="rtl"] .hero__content {
  text-align: center;
}
[dir="rtl"] .about__inner {
  flex-direction: row-reverse;
}
[dir="rtl"] .hiw__inner {
  flex-direction: row-reverse;
}
[dir="rtl"] .wcu__grid {
  direction: rtl;
}
/* RTL: mirror the feature icon so the bg circle stays under the icon and text keeps its spacing */
[dir="rtl"] .wcu__feat-icon-bg {
  left: auto;
  right: 0;
}
[dir="rtl"] .wcu__feat-icon-wrap svg {
  margin-left: 0;
  margin-right: 3px;
}
[dir="rtl"] .wcu__feat-body {
  text-align: right;
}
[dir="rtl"] .footer__cols {
  direction: rtl;
}

[dir="rtl"] .fc__container {
  flex-direction: row-reverse;
}
[dir="rtl"] .faq__inner {
  flex-direction: row-reverse;
}
[dir="rtl"] .contact-card {
  direction: rtl;
}
/* Let the rtl direction mirror the row: icon on the right, text to its left. */
[dir="rtl"] .contact-info__item {
  flex-direction: row;
  text-align: right;
}
/* Phone / email / address are Latin - keep them LTR so the bidi
   algorithm doesn't reverse the number or move the comma, but align
   them to the right so they sit next to the icon. */
[dir="rtl"] .contact-info__text {
  direction: ltr;
  text-align: right;
  unicode-bidi: plaintext;
}
[dir="rtl"] .nav-phone {
  margin-right: 0;
  margin-left: 8px;
}
[dir="rtl"] .about__feature-icon-wrap {
  margin-right: 0;
  margin-left: 22px;
}
[dir="rtl"] .fc__sidebar {
  padding-right: 0;
  padding-left: 30px;
}
@media (max-width: 768px) {
  [dir="rtl"] .booking-bar {
    flex-direction: column;
  }
  [dir="rtl"] .fc__container {
    flex-direction: column;
  }
  [dir="rtl"] .fc__sidebar {
    padding-left: 0;
  }
}

/* ── Nav phone ───────────────────────────────────────── */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--primary);
  white-space: nowrap;
  margin-right: 8px;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--accent); }
.nav-phone svg { flex-shrink: 0; }

@media (max-width: 1024px) { .nav-phone { display: none; } }

/* ── Testimonial avatar (real photo) ────────────────── */
.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 2px solid var(--divider);
}

/* ── Booking bar select ──────────────────────────────── */
/* ── Booking bar error ──────────────────────────────── */
.booking-bar__error {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--accent);
  min-height: 0;
  transition: min-height 0.2s ease;
}
.booking-bar__error:not(:empty) {
  min-height: 16px;
}

.booking-bar__select {
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--primary);
  background: transparent;
  width: 100%;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

/* ── Floating WhatsApp button ────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}
/* Tooltip - general contact hint */
.wa-float__tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  white-space: nowrap;
  background: #12182B;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.wa-float:hover .wa-float__tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
[dir="rtl"] .wa-float__tip {
  right: auto;
  left: calc(100% + 12px);
  transform: translateY(-50%) translateX(-6px);
}
[dir="rtl"] .wa-float:hover .wa-float__tip {
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 768px) {
  .wa-float__tip { display: none; }
}
@media (max-width: 768px) {
  .wa-float {
    width: 48px;
    height: 48px;
    bottom: 18px;
    right: 18px;
  }
  .wa-float svg {
    width: 24px;
    height: 24px;
  }
}
[dir="rtl"] .wa-float {
  right: auto;
  left: 24px;
}
@media (max-width: 768px) {
  [dir="rtl"] .wa-float {
    left: 18px;
    right: auto;
  }
}

/* ── Map section ─────────────────────────────────────── */
.map-section {
  padding: 0 50px 60px;
}
.map-section__container {
  max-width: 1340px;
  margin: 0 auto;
}
.map-section__embed {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: 30px;
  display: block;
}

/* ── Contact form: required asterisk, error, select ── */
.contact-form__req {
  color: #E8192C;
  font-weight: 700;
}
.contact-form__error {
  color: #E8192C;
  font-size: 13px;
  font-family: var(--font-body);
  margin-top: 6px;
}
.contact-form__select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 22px;
}
[dir="rtl"] .contact-form__select {
  background-position: left 4px center;
  padding-right: 0;
  padding-left: 22px;
}

/* ── Fleet clear-filters button ──────────────────────── */
.fc__clear-btn {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--divider);
}
.fc__clear-btn:hover {
  background: var(--divider);
  opacity: 1;
}

/* ══════════════════════════════════════════════════════
   HAMBURGER MENU
   ══════════════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
}
.nav-hamburger__line {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger--open .nav-hamburger__line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-hamburger--open .nav-hamburger__line:nth-child(2) {
  opacity: 0;
}
.nav-hamburger--open .nav-hamburger__line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ══════════════════════════════════════════════════════
   MOBILE RESPONSIVE - max-width: 768px
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Container ──────────────────────────── */
  .container {
    padding: 0 20px;
  }

  /* ── Navbar ─────────────────────────────── */
  .nav-hamburger {
    display: flex;
    order: 3;
  }

  .navbar__inner {
    height: 80px;
    padding: 0 20px;
  }

  /* Force logo-left / controls-right on mobile regardless of RTL */
  .navbar__inner,
  [dir="rtl"] .navbar__inner {
    flex-direction: row !important;
  }

  .nav-right,
  [dir="rtl"] .nav-right {
    flex-direction: row !important;
    gap: 10px;
  }

  .logo-img {
    height: 60px !important;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav--open {
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }

  .nav__link {
    font-size: 22px;
    padding: 18px 20px;
    display: block;
  }

  .lang-switcher {
    order: unset;
    margin-right: 0;
    margin-left: 0;
  }

  .btn-whatsapp,
  .nav-cta {
    display: none;
  }

  /* ── Hero ───────────────────────────────── */
  .hero {
    padding: 15px 15px 0;
  }

  .hero__card {
    height: auto;
    min-height: auto;
    border-radius: 28px;
  }

  .hero__content {
    padding: 40px 15px 50px;
    gap: 12px;
  }

  .hero__label {
    font-size: 13px;
  }

  .hero__heading {
    font-size: 28px;
    line-height: 1.25;
    white-space: normal;
  }

  .hero__subtext {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero__subtext br {
    display: none;
  }

  .hero__ctas {
    flex-direction: column;
    gap: 12px;
    padding-top: 15px;
    width: 100%;
  }

  .hero__btn {
    padding: 14px 22px;
    font-size: 15px;
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .hero__btn-wrap {
    margin-right: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero__btn--white {
    width: auto;
    flex: 1;
  }

  .hero__btn-circle {
    position: static;
    transform: none;
    flex-shrink: 0;
    margin-left: -1px;
  }

  .hero__tagline {
    font-size: 12px;
    margin-top: 10px;
  }

  /* ── Booking bar ────────────────────────── */
  .hero__booking {
    margin-top: -40px;
    padding: 0 10px;
  }

  /* ── About ──────────────────────────────── */
  .about__inner {
    flex-direction: column;
    padding: 60px 20px;
    gap: 40px;
  }

  .about__images {
    height: auto;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 380px;
  }

  .about__img-main-wrap {
    height: auto;
  }

  .about__img-main {
    width: 240px;
    height: 340px;
    border-radius: 140px;
  }

  .about__img-border--main {
    border-radius: 150px;
  }

  .about__img-overlay-wrap {
    right: 0;
  }

  .about__img-overlay {
    width: 200px;
    height: 280px;
    border-radius: 120px;
  }

  .about__img-border--overlay {
    width: 200px;
    height: 280px;
    border-radius: 128px;
  }

  .about__deco--asterisk {
    top: 40px;
    right: 20px;
  }

  .about__deco--star {
    bottom: 20px;
    left: 140px;
  }

  .about__content {
    padding: 0 5px;
  }

  .about__heading {
    font-size: 28px;
  }

  .about__desc {
    font-size: 15px;
  }

  .about__feature-icon-wrap {
    width: 60px;
    height: 60px;
    margin-right: 18px;
  }

  .about__feature-title {
    font-size: 18px;
  }

  .about__feature-desc {
    font-size: 14px;
  }

  .about__features {
    margin-bottom: 35px;
  }


  /* ── Fleet ──────────────────────────────── */
  .fleet__inner {
    padding: 60px 20px 40px;
  }

  .fleet__heading {
    font-size: 28px;
  }

  .fleet__heading br {
    display: none;
  }

  .fleet__card {
    width: 280px;
  }

  /* Mobile: swipe the fleet cards with your finger (native horizontal scroll) */
  .fleet__carousel-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 20px;
    scrollbar-width: none;            /* Firefox: hide scrollbar */
  }
  .fleet__carousel-wrap::-webkit-scrollbar { display: none; }  /* WebKit: hide scrollbar */

  .fleet__track {
    transform: none !important;       /* defeat the desktop JS slider on touch */
    transition: none;
  }

  .fleet__card {
    scroll-snap-align: start;
  }

  /* Arrow buttons are redundant once the cards can be swiped */
  .fleet__nav-row {
    display: none;
  }

  /* ── How It Works ───────────────────────── */
  .hiw__inner {
    flex-direction: column;
    padding: 60px 20px;
    gap: 40px;
  }

  .hiw__left {
    padding: 0;
    order: 1;
  }

  .hiw__right {
    padding: 0;
    order: 2;
    width: 100%;
    align-items: center;
  }

  .hiw__heading {
    font-size: 28px;
  }

  .hiw__desc {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .hiw__img {
    width: 280px;
    height: 380px;
    border-radius: 160px;
  }

  .hiw__img-border {
    border-radius: 170px;
  }

  .hiw__badge {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    min-width: 180px;
    padding: 16px;
  }

  .hiw__badge-count {
    font-size: 18px;
  }

  .hiw__badge-label {
    font-size: 14px;
  }

  .hiw__deco--asterisk {
    right: 10px;
    top: 10px;
  }

  .hiw__deco--star {
    left: 20px;
    bottom: 0;
  }

  .hiw__step-num {
    font-size: 36px;
    min-width: 50px;
  }

  .hiw__step-title {
    font-size: 17px;
  }

  .hiw__step-desc {
    font-size: 14px;
  }

  /* ── Why Choose Us ──────────────────────── */
  .wcu__inner {
    padding: 60px 20px;
    gap: 40px;
  }

  .wcu__heading {
    font-size: 28px;
  }

  .wcu__grid {
    flex-direction: column;
    gap: 35px;
  }

  .wcu__col--center {
    flex: none;
    width: 100%;
    order: -1;
  }

  .wcu__col--features {
    width: 100%;
    gap: 30px;
  }

  .wcu__img-stack {
    height: auto;
  }

  .wcu__img-featured {
    max-width: 300px;
  }

  .wcu__feature--sep {
    padding-bottom: 30px;
  }

  .wcu__feat-title {
    font-size: 18px;
  }

  .wcu__feat-desc {
    font-size: 14px;
  }

  /* ── FAQ ────────────────────────────────── */
  .faq {
    padding: 0 15px 50px;
  }

  .faq__bg {
    border-radius: 28px;
    padding: 50px 15px;
  }

  .faq__inner {
    flex-direction: column;
    gap: 35px;
  }

  .faq__images {
    padding: 0;
  }

  .faq__collage {
    max-width: 300px;
    margin: 0 auto;
  }

  .faq__content {
    padding: 0 5px;
  }

  .faq__heading {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .faq__question span {
    font-size: 16px;
  }

  .faq__answer p {
    font-size: 14px;
  }

  /* ── Testimonials ───────────────────────── */
  .testimonials__inner {
    padding: 60px 20px;
    gap: 30px;
  }

  .testimonials__heading {
    font-size: 28px;
  }

  .testimonials__subtitle {
    font-size: 15px;
  }

  .testimonials__columns {
    max-height: 640px;
  }

  .tcard {
    width: 300px;
    padding: 28px;
    border-radius: 20px;
  }

  .tcard__text {
    font-size: 15px;
  }

  /* ── CTA ────────────────────────────────── */
  .cta {
    padding: 0 15px 0;
  }

  .cta__card {
    border-radius: 28px 28px 0 0;
    padding: 50px 15px;
  }

  .cta__inner {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .cta__left {
    padding: 0;
    align-items: center;
  }

  .cta__heading {
    font-size: 28px;
    max-width: 100%;
  }

  .cta__subtext {
    font-size: 15px;
    max-width: 100%;
  }


  .cta__right {
    padding: 0;
  }

  .cta__car-img {
    max-width: 320px;
  }

  /* ── Footer ────────────────────────────── */
  .footer {
    padding: 0 15px 30px;
  }

  .footer__card {
    border-radius: 0 0 28px 28px;
    padding: 35px 15px 0;
  }

  .footer__cols {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer__col {
    padding: 10px 5px;
  }

  .footer__col--brand {
    padding-right: 5px;
  }

  .footer__col:nth-child(2),
  .footer__col:nth-child(3) {
    padding-left: 5px;
  }

  .footer__col-title {
    font-size: 18px;
  }

  .footer__desc {
    font-size: 14px;
  }

  .footer__bottom {
    padding: 20px 0;
  }

  .footer__copy {
    font-size: 12px;
    text-align: center;
  }

  .footer-logo {
    height: 38px !important;
  }

  /* ── Map ────────────────────────────────── */
  .map-section {
    padding: 0 15px 40px;
  }

  .map-section__embed {
    height: 280px;
    border-radius: 20px;
  }

  /* ── Fleet/Contact Hero ──────────────── */
  .fleet-hero,
  .contact-hero {
    padding: 15px 0 35px;
  }

  .fleet-hero__card,
  .contact-hero__card {
    border-radius: 22px;
    padding: 70px 15px;
  }

  .fleet-hero__overlay,
  .contact-hero__overlay {
    border-radius: 22px;
  }

  .fleet-hero__heading,
  .contact-hero__heading {
    font-size: 32px;
  }

  .fleet-hero__breadcrumb,
  .contact-hero__breadcrumb {
    font-size: 15px;
  }

  /* ── Contact Section ───────────────── */
  .contact-section {
    padding: 0 15px 50px;
  }

  .contact-card {
    border-radius: 22px !important;
    padding: 30px 15px !important;
  }

  .contact-card__inner {
    flex-direction: column !important;
    gap: 30px !important;
  }

  .contact-card__left,
  .contact-card__right {
    padding: 0 !important;
    width: 100% !important;
  }

  /* ── Fleet Page Grid ───────────────── */
  .fc__container {
    flex-direction: column;
  }

  .fc__sidebar {
    width: 100%;
    position: static;
    padding-right: 0;
  }

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

  /* ── RTL mobile overrides ──────────────── */
  [dir="rtl"] .about__inner {
    flex-direction: column;
  }
  [dir="rtl"] .hiw__inner {
    flex-direction: column;
  }
  [dir="rtl"] .hero__btn-wrap {
    margin-right: 0;
    margin-left: 0;
  }
  [dir="rtl"] .hero__btn-circle {
    right: auto;
    left: auto;
  }
}

/* ══════════════════════════════════════════════════════
   TABLET RESPONSIVE - max-width: 1024px
   ══════════════════════════════════════════════════════ */
@media (max-width: 1024px) and (min-width: 769px) {
  .fleet__card { width: calc((100% - 60px) / 2.5); }

  .container {
    padding: 0 30px;
  }

  .navbar__inner {
    height: 85px;
  }

  .nav__link {
    font-size: 14px;
    padding: 12px 10px;
  }

  .btn-primary.nav-cta {
    padding: 12px 18px;
    font-size: 14px;
  }

  .hero {
    padding: 20px 25px 0;
  }

  .hero__card {
    height: auto;
    min-height: 500px;
    border-radius: 32px;
  }

  .hero__content {
    padding: 60px 20px 80px;
  }

  .hero__heading {
    font-size: 36px;
    white-space: normal;
  }

  .hero__subtext {
    font-size: 16px;
  }

  .about__inner {
    padding: 70px 30px;
    gap: 20px;
  }

  .about__img-main {
    width: 300px;
    height: 420px;
  }

  .about__img-overlay {
    width: 240px;
    height: 330px;
  }

  .about__heading {
    font-size: 34px;
  }

  .hiw__inner {
    padding: 70px 30px;
  }

  .hiw__heading {
    font-size: 34px;
  }

  .hiw__img {
    width: 300px;
    height: 420px;
  }

  .wcu__inner {
    padding: 70px 30px;
  }

  .wcu__heading {
    font-size: 34px;
  }

  .wcu__col--center {
    flex: 0 0 280px;
  }

  .faq {
    padding: 0 25px 60px;
  }

  .faq__heading {
    font-size: 34px;
  }

  .faq__content {
    padding: 10px 10px 20px 40px;
  }

  .testimonials__inner {
    padding: 70px 30px;
  }

  .testimonials__heading {
    font-size: 34px;
  }

  .cta {
    padding: 0 25px 0;
  }

  .cta__heading {
    font-size: 34px;
  }

  .footer {
    padding: 0 25px 40px;
  }

  .footer__cols {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
  }

  .footer__col--brand {
    grid-column: 1 / -1;
    max-width: none;
  }

  .fleet__inner {
    padding: 70px 30px 40px;
  }

  .fleet__heading {
    font-size: 34px;
  }
}

/* ── Fleet view-all ── */
.fleet-view-all {
  display: flex;
  justify-content: center;
  width: 100%;
}

.fleet-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: white;
  padding: 16px 40px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  margin-top: 40px;
  transition: background 0.2s, transform 0.2s;
}

.fleet-view-all-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
  color: white;
}

/* ── Fleet carousel: reverse arrow icons in RTL ── */
[dir="rtl"] #fleetPrev svg,
[dir="rtl"] #fleetNext svg {
  transform: scaleX(-1);
}

/* ── Hero CTAs ── */
.hero-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: white;
  padding: 16px 30px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.hero-cta-wa:hover { opacity: 0.9; color: white; }

.hero-cta-fleet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--primary);
  padding: 16px 30px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.hero-cta-fleet:hover { opacity: 0.88; }

/* ════════════════════════════════════════════════════
   CAR DETAIL PAGE
   ════════════════════════════════════════════════════ */

/* ── Car Detail Hero ── */
.cd-hero {
  padding: 30px 0 60px;
}
.cd-hero__container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
}
.cd-hero__card {
  position: relative;
  background: var(--primary);
  border-radius: 46px;
  overflow: hidden;
  width: 100%;
  padding: 140px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cd-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cd-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 1, 0.6);
}
.cd-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.cd-hero__heading {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 74px;
  line-height: 1.2;
  color: var(--white);
  text-align: center;
}
.cd-hero__breadcrumb {
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.36;
}
.cd-hero__bc-home,
.cd-hero__bc-fleet {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s;
}
.cd-hero__bc-home:hover,
.cd-hero__bc-fleet:hover { opacity: 0.75; }
.cd-hero__bc-sep {
  color: var(--white);
  margin: 0 8px;
}
.cd-hero__bc-current {
  color: var(--accent);
}

/* ── Two-column layout ── */
.cd-layout {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 70px;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

/* ── Sticky Sidebar ── */
.cd-sidebar {
  width: 380px;
  flex-shrink: 0;
  position: sticky;
  top: 120px;
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 30px;
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Price block */
.cd-price-block {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
}
.cd-price-amount {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.1;
  color: var(--primary);
}
.cd-price-label {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
}

.cd-divider {
  height: 1px;
  background: var(--divider);
  margin: 20px 0;
}

/* Specs table */
.cd-specs {
  display: flex;
  flex-direction: column;
}
.spec-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--divider);
  font-family: var(--font-body);
  font-size: 15px;
}
.spec-row:last-child { border-bottom: none; }
.spec-icon {
  display: flex;
  align-items: center;
  color: var(--accent);
  flex-shrink: 0;
}
.spec-label {
  color: var(--text);
  flex: 1;
}
.spec-value {
  color: var(--primary);
  font-weight: 700;
}

/* What's included */
.cd-included-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 8px;
}
.cd-includes {
  display: flex;
  flex-direction: column;
}
.include-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
}
.include-item .check {
  width: 20px;
  height: 20px;
  background: rgba(196, 30, 42, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 11px;
  flex-shrink: 0;
}

/* Universal CTA button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: white;
  padding: 16px 30px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover {
  background: var(--primary);
  transform: translateY(-2px);
  color: white;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: white;
  color: var(--primary);
  padding: 16px 30px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

.cd-sidebar .btn-primary {
  width: 100%;
  justify-content: center;
}

.cd-confirm-note {
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text);
  margin-top: 12px;
}

/* ── Right column ── */
.cd-main {
  flex: 1;
  min-width: 0;
}

/* Gallery */
.gallery-main {
  border-radius: 30px;
  overflow: hidden;
  height: 420px;
}
.gallery-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 30px;
  display: block;
  transition: opacity 0.3s ease;
}
.gallery-main img.is-fading { opacity: 0; }
.gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.thumb {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
  flex-shrink: 0;
}
.thumb.active { border-color: var(--accent); }
.thumb:hover:not(.active) { border-color: rgba(196,30,42,0.35); }

/* Car header */
.cd-car-header {
  margin-top: 28px;
  margin-bottom: 30px;
}
.car-category-badge {
  display: inline-block;
  background: var(--divider);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.cd-car-name {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

/* Section labels */
.cd-section {
  margin-bottom: 30px;
}
.cd-section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.cd-section-label-text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--accent);
}
.cd-section-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

/* ── Similar Cars ── */
.cd-similar {
  padding: 60px 70px 80px;
  max-width: 1300px;
  margin: 0 auto;
}
.cd-similar__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
  margin-bottom: 25px;
  position: relative;                 /* anchors the arrows */
}
.cd-similar__label-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cd-similar__label-text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--accent);
}
.cd-similar__heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.2;
  color: var(--primary);
}
.cd-similar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ── Car card (similar) ── */
.car-card {
  border: 1px solid var(--divider);
  border-radius: 30px;
  padding: 21px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  background: var(--white);
  cursor: pointer;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.car-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}
.car-image-wrap {
  position: relative;
  height: 144px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
}
.car-image-wrap img {
  max-height: 144px;
  width: 100%;
  object-fit: contain;
}
.car-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(236,236,236,0.92);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 100px;
  line-height: 1;
}
.car-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.car-card .car-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  color: var(--primary);
}
.car-specs {
  display: flex;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--divider);
  padding-bottom: 14px;
}
.car-price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.car-price-row .price-amount {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  color: var(--primary);
}
.car-price-row .price-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text);
}

/* ── RTL overrides for car detail ── */
[dir="rtl"] .cd-layout { flex-direction: row-reverse; }
[dir="rtl"] .cd-sidebar { padding-right: 40px; padding-left: 35px; }
[dir="rtl"] .car-badge { left: auto; right: 10px; }
[dir="rtl"] .spec-icon { order: 1; }
[dir="rtl"] .spec-label { order: 2; }
[dir="rtl"] .spec-value { order: 3; margin-left: 0; }
[dir="rtl"] .gallery-thumbs { flex-direction: row-reverse; }
[dir="rtl"] .cd-section-label { flex-direction: row-reverse; justify-content: flex-end; }
[dir="rtl"] .cd-similar__label-row { flex-direction: row-reverse; justify-content: center; }

/* ── Responsive: car detail ── */
@media (max-width: 1024px) {
  .cd-layout {
    padding: 60px 30px;
    gap: 40px;
  }
  .cd-sidebar { width: 320px; }
  .cd-similar { padding: 40px 30px 60px; }
  .cd-similar__grid { grid-template-columns: repeat(2, 1fr); }
  .cd-similar__heading { font-size: 34px; }
}

@media (max-width: 768px) {
  .cd-hero__card { padding: 70px 15px; border-radius: 22px; }
  .cd-hero__overlay { border-radius: 22px; }
  .cd-hero__heading { font-size: 32px; }
  .cd-hero__breadcrumb { font-size: 15px; }
  .cd-layout {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }
  .cd-sidebar {
    width: 100%;
    position: static;
    padding: 28px 22px;
  }
  .cd-price-amount { font-size: 36px; }
  .gallery-main { height: 240px; }
  .gallery-main img { height: 240px; }
  .thumb { width: 80px; height: 55px; }
  .cd-car-name { font-size: 26px; }
  .cd-similar { padding: 30px 20px 50px; }
  .cd-similar__grid { grid-template-columns: 1fr; }
  .cd-similar__heading { font-size: 28px; }
  [dir="rtl"] .cd-layout { flex-direction: column; }
  [dir="rtl"] .cd-sidebar { padding-right: 22px; padding-left: 22px; }
  [dir="rtl"] .gallery-thumbs { flex-direction: row-reverse; }
}

/* ══════════════════════════════════════════════════════
   MOBILE HAMBURGER BUTTON (new drawer pattern)
   ══════════════════════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════════════════════════════
   MOBILE MENU DRAWER
   ══════════════════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

[dir="rtl"] .mobile-menu {
  transform: translateX(100%);
}

[dir="rtl"] .mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-inner {
  padding: 100px 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 100%;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-link {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 28px;
  color: var(--primary);
  padding: 16px 0;
  border-bottom: 1px solid var(--divider);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--accent);
}

.mobile-divider {
  height: 1px;
  background: var(--divider);
}

.mobile-lang {
  display: flex;
  gap: 8px;
}

.mobile-lang .lang-btn {
  background: none;
  border: 1.5px solid var(--divider);
  border-radius: 6px;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-lang .lang-btn:hover,
.mobile-lang .lang-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.mobile-cta {
  width: 100%;
  justify-content: center;
  padding: 18px 30px;
  font-size: 18px;
  margin-top: auto;
}

[dir="rtl"] .mobile-nav-links { text-align: right; }
[dir="rtl"] .mobile-cta { flex-direction: row-reverse; }

/* Close button inside the drawer */
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1.5px solid var(--divider);
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  color: var(--primary);
  line-height: 1;
  transition: background 0.2s, border-color 0.2s;
  z-index: 1002;
}
.mobile-menu-close:hover {
  background: var(--divider);
}
[dir="rtl"] .mobile-menu-close {
  right: auto;
  left: 20px;
}

/* ══════════════════════════════════════════════════════
   MOBILE NAVBAR OVERRIDES (max-width: 768px)
   Show logo + lang switcher + hamburger in the bar
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav { display: none !important; }
  .nav--open { display: none !important; }

  /* Keep nav-right visible but hide only the CTA button */
  .nav-right { display: flex !important; align-items: center; gap: 8px; }
  /* push the lang switcher next to the hamburger instead of the bar's centre */
  .nav-right { margin-inline-start: auto; }
  .nav-cta   { display: none !important; }

  .navbar__inner {
    height: 70px !important;
    justify-content: space-between;
  }

  .hamburger { display: flex; }
}

/* ══════════════════════════════════════════════════════
   UX IMPROVEMENTS - conversion clarity / hierarchy
   ══════════════════════════════════════════════════════ */

/* ── Stats bar (between hero & fleet) ─────────────────── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--divider);
}
.stats-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 8px;
  padding: 0 20px;
}
.stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 14px 4px;
}
.stats-bar__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1;
  color: #E8192C;
}
.stats-bar__label {
  font-family: var(--font-body);
  font-size: clamp(12px, 1.6vw, 15px);
  color: #6b6b6b;
  margin-top: 6px;
}
.stats-bar__divider {
  width: 1px;
  align-self: stretch;
  margin: 18px 0;
  background: var(--divider);
  flex-shrink: 0;
}

/* ── How It Works: larger, bolder red step numbers ───── */
.hiw__step-num {
  font-size: 64px;
  font-weight: 800;
  color: #E8192C;
  min-width: 78px;
}

/* ── Testimonials: 5 gold stars above each review ────── */
.tcard__stars {
  color: #F5A623;
  font-size: 17px;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 14px;
}

/* ── Car cards: full-width red "Réserver" button ─────── */
.fleet__reserve-btn,
.fc__reserve-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 16px;
  padding: 13px 18px;
  background: #E8192C;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.fleet__reserve-btn:hover,
.fc__reserve-btn:hover {
  background: #c8121f;
  transform: translateY(-1px);
  color: var(--white);
}
.fleet__reserve-btn svg path,
.fc__reserve-btn svg path {
  stroke: #fff;
}

/* Floating WhatsApp: always above everything */
.wa-float { z-index: 9999; }

/* ── Similar cars: reuse homepage fleet carousel (arrows sit in .cd-similar__header) ── */

/* ── Booking form modal ───────────────────────────────── */
.bk-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.bk-modal--open {
  display: flex;
}
.bk-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 26, 0.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
@keyframes bkModalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.bk-modal__card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  animation: bkModalIn 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.bk-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: none;
  background: var(--divider);
  color: var(--primary);
  border-radius: 50%;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.bk-modal__close:hover { background: #dcdcdc; }
[dir="rtl"] .bk-modal__close { right: auto; left: 16px; }
.bk-modal__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 4px;
}
.bk-modal__car {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #E8192C;
  margin-bottom: 18px;
}
.bk-modal__label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  margin-bottom: 6px;
}
.bk-modal__input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--primary);
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
  outline: none;
  color-scheme: light;
  transition: border-color 0.2s ease;
}
.bk-modal__input:focus { border-color: #E8192C; }
.bk-modal__error {
  font-family: var(--font-body);
  font-size: 13px;
  color: #E8192C;
  min-height: 0;
  margin: -6px 0 10px;
}
.bk-modal__submit {
  width: 100%;
  justify-content: center;
  background: #E8192C;
}
.bk-modal__submit:hover { background: #c8121f; }

/* ── Mobile (≤375px friendly) ─────────────────────────── */
@media (max-width: 600px) {
  .stats-bar__num { font-size: 24px; }
  .stats-bar__label { font-size: 12px; }
  .stats-bar__divider { margin: 14px 0; }
  .hiw__step-num { font-size: 44px; min-width: 56px; }
}

/* ════════════════════════════════════════════════════════
   Booking Widget (3-step) - hero bar, modal, car grid, summary
   ════════════════════════════════════════════════════════ */

/* ── Hero inline booking bar (index) ──────────────────── */
/* Gap to the booking form is 2x the heading→subtext gap (18px → 36px) */
.hero__booking { width: 100%; max-width: 1000px; margin: 18px auto 0; }
.bw-bar {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.9fr auto;
  gap: 12px;
  align-items: end;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  text-align: start;
}
.bw-bar .bw-field { display: flex; flex-direction: column; gap: 6px; }
.bw-bar label,
.bw-grid label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--primary);
}
.bw-bar input, .bw-bar select,
.bw-grid input, .bw-grid select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--primary);
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 11px 12px;
  outline: none;
  color-scheme: light;
  transition: border-color 0.2s ease;
}
.bw-bar input:focus, .bw-bar select:focus,
.bw-grid input:focus, .bw-grid select:focus { border-color: var(--accent); }
.bw-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 0 26px;
  height: 46px;
  border-radius: 12px;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}
.bw-bar__btn:hover { background: var(--primary); transform: translateY(-2px); }

@media (max-width: 860px) {
  .bw-bar { grid-template-columns: 1fr 1fr; }
  .bw-bar__btn { grid-column: 1 / -1; width: 100%; }
}
@media (max-width: 480px) {
  .bw-bar { grid-template-columns: 1fr; padding: 14px; }
}

/* ── Floating Reserve button (fleet) ──────────────────── */
.bw-reserve-float {
  position: fixed;
  bottom: 92px;
  right: 24px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 100px;
  box-shadow: 0 10px 28px rgba(196, 30, 42, 0.42);
  transition: background 0.2s ease, transform 0.2s ease;
}
.bw-reserve-float:hover { background: var(--primary); transform: translateY(-2px); }
[dir="rtl"] .bw-reserve-float { right: auto; left: 24px; }
@media (max-width: 768px) {
  .bw-reserve-float { bottom: 76px; right: 18px; padding: 12px 18px; font-size: 14px; }
  [dir="rtl"] .bw-reserve-float { left: 18px; right: auto; }
}

/* ── Modal shell ──────────────────────────────────────── */
.bw-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.bw-modal.is-open { display: flex; }
.bw-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 26, 0.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
@keyframes bwIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.bw-modal__card {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 24px;
  padding: 30px 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  animation: bwIn 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.bw-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: none;
  background: var(--divider);
  color: var(--primary);
  border-radius: 50%;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.bw-modal__close:hover { background: #dcdcdc; }
[dir="rtl"] .bw-modal__close { right: auto; left: 16px; }
.bw-modal__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 18px;
}

/* ── Stepper ──────────────────────────────────────────── */
.bw-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 4px 0 22px;
}
.bw-stepper__dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  background: var(--divider);
  color: var(--text);
}
.bw-stepper__dot.is-active { background: var(--accent); color: #fff; }
.bw-stepper__dot.is-done { background: var(--primary); color: #fff; }
.bw-stepper__line { width: 34px; height: 2px; background: var(--divider); }

/* ── Step 1 form ──────────────────────────────────────── */
.bw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.bw-grid .bw-field { display: flex; flex-direction: column; gap: 6px; }
.bw-grid .bw-field--full { grid-column: 1 / -1; }
.bw-error {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--accent);
  min-height: 18px;
  margin-top: 10px;
}
.bw-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}
.bw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.bw-btn--primary { background: var(--accent); color: #fff; margin-inline-start: auto; }
.bw-btn--primary:hover { background: var(--primary); transform: translateY(-2px); }
.bw-btn--ghost {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--divider);
}
.bw-btn--ghost:hover { background: var(--secondary); }

/* ── Step 2 car grid ──────────────────────────────────── */
.bw-cars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.bw-car {
  display: flex;
  flex-direction: column;
  text-align: start;
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.bw-car:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(13, 13, 26, 0.12);
  transform: translateY(-2px);
}
.bw-car__img-wrap { width: 100%; aspect-ratio: 16 / 10; background: var(--secondary); }
.bw-car__img { width: 100%; height: 100%; object-fit: cover; }
.bw-car__body { padding: 10px 12px 14px; display: flex; flex-direction: column; gap: 4px; }
.bw-car__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
}
.bw-car__price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
}
.bw-car__price small { color: var(--text); font-weight: 400; font-size: 12px; }

/* ── Step 3 summary ───────────────────────────────────── */
.bw-sum {
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 6px 16px;
  margin-bottom: 18px;
}
.bw-sum__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--divider);
}
.bw-sum__row:last-child { border-bottom: none; }
.bw-sum__key {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.bw-sum__val {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  text-align: end;
}
.bw-sum__row--total .bw-sum__key,
.bw-sum__row--total .bw-sum__val { font-size: 18px; color: var(--accent); }

.bw-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  padding: 16px 24px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  transition: background 0.2s ease, transform 0.2s ease;
}
.bw-wa-btn:hover { background: #1da851; transform: translateY(-2px); color: #fff; }

@media (max-width: 420px) {
  .bw-modal__card { padding: 26px 18px; }
  .bw-grid { grid-template-columns: 1fr; }
  .bw-cars { grid-template-columns: 1fr; }
}

/* ════════ Smart booking modal (car-detail) ════════ */
.cdbk {
  position: fixed;
  inset: 0;
  z-index: 10002;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cdbk.is-open { display: flex; }
.cdbk__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 26, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
@keyframes cdbkIn {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cdbk__card {
  position: relative;
  width: 100%;
  max-width: 500px;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 24px;
  padding: 28px 28px 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  animation: cdbkIn 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.cdbk__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: none;
  background: var(--divider);
  color: var(--primary);
  border-radius: 50%;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 2;
}
.cdbk__close:hover { background: #dcdcdc; }
[dir="rtl"] .cdbk__close { right: auto; left: 16px; }
.cdbk__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 21px;
  color: var(--primary);
  margin-bottom: 16px;
  padding-inline-end: 30px;
}

/* Step indicator + progress bar */
.cdbk__steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 12px;
}
.cdbk__step {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.cdbk__step-sep { flex: 1 1 auto; height: 2px; background: var(--divider); margin: 0 2px; }
.cdbk__step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  background: var(--divider);
  color: var(--text);
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease;
}
.cdbk__step-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
}
.cdbk__step.is-active .cdbk__step-num { background: var(--accent); color: #fff; }
.cdbk__step.is-active .cdbk__step-label { color: var(--primary); }
.cdbk__step.is-done .cdbk__step-num { background: #16A34A; color: #fff; }
.cdbk__progress {
  height: 5px;
  border-radius: 100px;
  background: var(--divider);
  overflow: hidden;
  margin-bottom: 20px;
}
.cdbk__progress-fill {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 100px;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Body slide animation between steps */
.cdbk__body { animation: cdbkSlide 0.28s cubic-bezier(0.16, 1, 0.3, 1) both; }
@keyframes cdbkSlide {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: translateX(0); }
}
[dir="rtl"] .cdbk__body { animation-name: cdbkSlideRtl; }
@keyframes cdbkSlideRtl {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Selected-car strip */
.cdbk__car {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--secondary);
  border: 1px solid var(--divider);
  border-radius: 14px;
  padding: 10px 12px;
  margin-bottom: 16px;
}
.cdbk__car-img { width: 64px; height: 44px; object-fit: cover; border-radius: 9px; flex-shrink: 0; }
.cdbk__car-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cdbk__car-name { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--primary); }
.cdbk__car-price { font-family: var(--font-body); font-weight: 700; font-size: 14px; color: var(--accent); }
.cdbk__car-price small { color: var(--text); font-weight: 500; }

/* Fields */
.cdbk__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cdbk__field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.cdbk__field label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--primary);
}
.cdbk__field input,
.cdbk__field select,
.cdbk__field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--primary);
  background: var(--white);
  border: 1.5px solid var(--divider);
  border-radius: 12px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.cdbk__field textarea { resize: vertical; min-height: 64px; }
.cdbk__field input:focus,
.cdbk__field select:focus,
.cdbk__field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 30, 42, 0.12);
}
.cdbk__field.is-error input,
.cdbk__field.is-error select,
.cdbk__field.is-error textarea {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 30, 42, 0.12);
}
.cdbk__err {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--accent);
  margin: 0;
}

/* Live total */
.cdbk__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  background: var(--secondary);
  border: 1px dashed var(--divider);
  border-radius: 12px;
  padding: 12px 14px;
  margin: 4px 0 4px;
}
.cdbk__total-label { font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--text); }
.cdbk__total-val { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--accent); }
.cdbk__total-val small { font-family: var(--font-body); font-weight: 600; font-size: 12.5px; color: var(--text); }

/* Actions */
.cdbk__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}
.cdbk__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.cdbk__btn--primary { background: var(--accent); color: #fff; }
.cdbk__btn--primary:hover { background: var(--primary); transform: translateY(-2px); }
.cdbk__btn--ghost { background: var(--divider); color: var(--primary); }
.cdbk__btn--ghost:hover { background: #dcdcdc; }
[dir="rtl"] .cdbk__arrow { display: inline-block; transform: scaleX(-1); }

/* Summary */
.cdbk__sum-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  color: var(--primary);
  margin: 0 0 14px;
}
.cdbk__sum {
  border: 1px solid var(--divider);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}
.cdbk__sum-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 15px;
  border-bottom: 1px solid var(--divider);
}
.cdbk__sum-row:last-child { border-bottom: none; }
.cdbk__sum-key {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--text);
  flex-shrink: 0;
}
.cdbk__sum-val {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  text-align: end;
}
.cdbk__sum-row--total { background: var(--secondary); }
.cdbk__sum-row--total .cdbk__sum-val { color: var(--accent); font-family: var(--font-head); font-weight: 800; font-size: 17px; }

/* WhatsApp confirm */
.cdbk__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 20px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cdbk__wa:hover { background: #1da851; transform: translateY(-2px); }
.cdbk__redirect {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--text);
  text-align: center;
  margin: 10px 0 0;
}

/* Mobile: full-screen modal */
@media (max-width: 560px) {
  .cdbk { padding: 0; }
  .cdbk__card {
    max-width: none;
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    padding: 24px 18px 28px;
  }
  .cdbk__row { grid-template-columns: 1fr; }
  .cdbk__step-label { display: none; }
  .cdbk__steps { justify-content: center; gap: 4px; }
  .cdbk__step-sep { max-width: 40px; }
}

/* "Prix sur demande" replaces the big number on the car detail page */
.cd-price-amount--ask{font-size:30px;line-height:1.2}
@media(max-width:560px){.cd-price-amount--ask{font-size:24px}}

/* ══════════════════════════════════════════════════════
   FLOTTE : barre de filtres horizontale au-dessus des cartes
   La colonne de 325px à gauche est remplacée par une barre compacte
   (recherche, types en pastilles, marques en menu déroulant).
   Sur mobile (≤768px) la feuille coulissante de mobile.css prend le relais.
   ══════════════════════════════════════════════════════ */

/* Menu des marques : <details> natif, sans le triangle par défaut */
.fc__brands-sum { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 8px; }
.fc__brands-sum::-webkit-details-marker { display: none; }
.fc__brands-chev { width: 13px; height: 13px; flex-shrink: 0; }
.fc__brands-count {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 100px;
  background: var(--accent);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}
.fc__brands-count[hidden] { display: none; }

@media (min-width: 769px) {
  .fc { padding: 36px 0 80px; }

  .fc__container,
  [dir="rtl"] .fc__container {          /* l'ancienne règle RTL imposait row-reverse */
    flex-direction: column;
    align-items: stretch;
    gap: 26px;
  }

  .fc__sidebar,
  [dir="rtl"] .fc__sidebar {
    width: 100%;
    position: relative;
    top: auto;
    padding: 0;
    z-index: 30;
  }

  .fc__aside {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    padding: 12px 14px;
    border-radius: 20px;
  }

  .fc__search-wrap {
    flex: 0 1 250px;
    padding: 0;
    border: 0;
  }
  .fc__search-input { padding: 10px 18px; font-size: 15px; }

  .fc__filters-wrap {
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 0;
    border: 0;
  }

  /* Types : titre masqué, cases à cocher transformées en pastilles */
  .fc__filters-wrap > .fc__filters-heading { display: none; }

  #fcFilters { flex-direction: row; flex-wrap: wrap; gap: 8px; }

  #fcFilters .fc__filter-label,
  .fc__brands-sum {
    position: relative;
    gap: 8px;
    padding: 7px 14px;
    border: 1.5px solid #E6E0DE;
    border-radius: 100px;
    background: #fff;
    font-size: 14.5px;
    line-height: 1.25;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
  }
  #fcFilters .fc__filter-label:hover,
  .fc__brands-sum:hover,
  .fc__brands-dd[open] > .fc__brands-sum { border-color: var(--primary); }

  #fcFilters .fc__filter-label:has(.fc__checkbox:checked) {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
  }
  #fcFilters .fc__filter-label:has(.fc__checkbox:checked) .fc__type-icon { color: #fff; }
  #fcFilters .fc__filter-label:has(.fc__checkbox:focus-visible) {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }

  /* case masquée visuellement mais toujours cliquable au clavier */
  #fcFilters .fc__checkbox {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }
  #fcFilters .fc__type-icon { width: 18px; height: 18px; }

  /* Marques : bouton + panneau déroulant */
  .fc__brands-dd { position: relative; }
  .fc__brands-sum { display: flex; align-items: center; }
  .fc__brands-sum .fc__filters-heading {
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--text);
    text-transform: none;
  }
  .fc__brands-chev { width: 13px; height: 13px; color: var(--text); transition: transform 0.2s ease; }
  .fc__brands-dd[open] .fc__brands-chev { transform: rotate(180deg); }

  #fcBrands {
    position: absolute;
    top: calc(100% + 8px);
    inset-inline-start: 0;
    z-index: 50;
    width: 420px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 14px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #ECECEC;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(13, 13, 26, 0.14);
  }
  #fcBrands .fc__filter-label {
    gap: 10px;
    padding: 6px 6px;
    border-radius: 8px;
    font-size: 14.5px;
    line-height: 1.4;
  }
  #fcBrands .fc__filter-label:hover { background: #FFF8F6; }

  /* « Effacer les filtres » : discret, poussé en bout de barre */
  .fc__clear-btn {
    width: auto;
    margin-inline-start: auto;
    padding: 8px 16px;
    font-size: 14px;
  }

  /* La grille récupère toute la largeur */
  .fc__main,
  [dir="rtl"] .fc__main { padding: 0; width: 100%; }
  .fc__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

@media (min-width: 1200px) {
  .fc__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 769px) and (max-width: 959px) {
  .fc__grid { grid-template-columns: repeat(2, 1fr); }
  #fcBrands { width: min(420px, 80vw); }
}

/* ══════════════════════════════════════════════════════
   PAGE LOADER - the AYM mark fills in left to right
   (js/loader.js hides it on window load)
   ══════════════════════════════════════════════════════ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white, #fff);
  transition: opacity 0.4s ease, visibility 0.4s ease;
  /* safety net if the script never runs */
  animation: page-loader-out 0.4s ease 5s forwards;
}
.page-loader.is-done { opacity: 0; visibility: hidden; }

.page-loader__mark {
  position: relative;
  width: 180px;
  max-width: 50vw;
}
.page-loader__mark img {
  display: block;
  width: 100%;
  height: auto;
}
.page-loader__base { opacity: 0.12; filter: grayscale(1); }
.page-loader__fill {
  position: absolute;
  inset: 0;
  animation: page-loader-sweep 1.4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes page-loader-sweep {
  0%   { clip-path: inset(0 100% 0 0); }
  50%  { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 0 0 100%); }
}
@keyframes page-loader-out {
  to { opacity: 0; visibility: hidden; }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader__fill { animation: none; }
}
