:root {
  /* Brand colours */
  --color-primary: #f2a20c;
  /* amber-gold accent            */
  --color-primary-dark: #d98a00;
  /* darker amber (hover)         */
  --color-secondary: #16324f;
  /* steel blue accent            */
  --color-ink: #0e1826;
  /* headings / dark sections     */
  --color-ink-2: #14263c;
  /* dark section gradient partner*/

  /* Neutrals */
  --color-bg: #ffffff;
  /* main background              */
  --color-bg-soft: #f4f7fb;
  /* alt (soft) section background*/
  --color-text: #4a5568;
  /* body text                   */
  --color-muted: #8a95a6;
  /* subtle text                 */
  --color-line: #e7ecf3;
  /* borders / dividers          */
  --color-white: #ffffff;

  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Radius & shadow */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 14px rgba(14, 24, 38, .06);
  --shadow: 0 14px 40px rgba(14, 24, 38, .10);
  --shadow-lg: 0 24px 60px rgba(14, 24, 38, .16);

  /* Layout */
  --header-h: 76px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ====================================================================
   2. BASE & HELPERS
   ==================================================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* smooth anchor scrolling  */
  scroll-padding-top: calc(var(--header-h) + 20px);
  overflow-x: clip;
  /* clip keeps sticky working */
}

body {
  overflow-x: clip;
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 .5rem;
}

p {
  margin: 0 0 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color .3s var(--ease);
}

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

.text-brand {
  color: var(--color-primary);
}

/* Section rhythm */
.section {
  padding: 96px 0;
  position: relative;
}

.section--soft {
  background: var(--color-bg-soft);
}

.section--dark {
  background: linear-gradient(135deg, var(--color-ink) 0%, var(--color-ink-2) 100%);
  color: rgba(255, 255, 255, .78);
}

/* Section headings */
.section-head {
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-head--left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-primary);
  padding: 6px 14px;
  border: 1px solid rgba(242, 162, 12, .35);
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
}

.section-sub {
  color: var(--color-muted);
  margin: 10px 0 0;
}

.section-head--light .section-title {
  color: #fff;
}

.section-head--light .section-sub {
  color: rgba(255, 255, 255, .6);
}

/* ====================================================================
   3. BUTTONS  ——  each type gets its own hover behaviour
   ==================================================================== */
.btn {
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 100px;
  padding: 12px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
    background-color .3s var(--ease), color .3s var(--ease);
  border: 2px solid transparent;
}

.btn-lg {
  padding: 14px 34px;
  font-size: 1.02rem;
}

.btn-sm {
  padding: 9px 18px;
  font-size: .86rem;
}

/* Primary (solid) — lifts up on hover */
.btn-brand {
  background: var(--color-primary);
  color: var(--color-ink);
  box-shadow: 0 10px 24px rgba(242, 162, 12, .32);
}

.btn-brand:hover {
  background: var(--color-primary-dark);
  color: var(--color-ink);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(242, 162, 12, .42);
}

/* Ghost — fills in on hover */
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--color-ink);
  transform: translateY(-3px);
}

/* ====================================================================
   4. TOPBAR + STICKY HEADER
   ==================================================================== */
.topbar {
  background: var(--color-ink);
  color: rgba(255, 255, 255, .78);
  font-size: .84rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar__contacts {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .8);
}

.topbar__link i {
  color: var(--color-primary);
}

.topbar__link:hover {
  color: #fff;
}

.topbar__link--muted:hover {
  color: rgba(255, 255, 255, .8);
}

.topbar__social {
  display: flex;
  gap: 8px;
}

.topbar__social a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: .9rem;
  transition: background .3s var(--ease), transform .3s var(--ease);
}

.topbar__social a:hover {
  background: var(--color-primary);
  color: var(--color-ink);
  transform: translateY(-2px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line);
  transition: box-shadow .3s var(--ease), padding .3s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.site-header .navbar {
  min-height: var(--header-h);
}

/* Brand / logo */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand__mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--color-primary);
  color: var(--color-ink);
  border-radius: 12px;
  font-size: 1.3rem;
  box-shadow: 0 6px 16px rgba(242, 162, 12, .35);
  transition: transform .4s var(--ease);
}

.brand:hover .brand__mark {
  transform: rotate(-12deg);
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-ink);
  letter-spacing: -.02em;
}

.brand__name span {
  color: var(--color-primary);
}

/* Nav links */
.navbar-nav .nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-ink);
  padding: 8px 14px;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--color-primary-dark);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ====================================================================
   5. HERO CAROUSEL (content on the LEFT)
   ==================================================================== */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.1s var(--ease);
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

/* Dark overlay so text stays readable, weighted to the left */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.288) 42%,
    rgba(0, 0, 0, 0.068) 100%
  );
}

.hero__container {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 620px;
  padding: 60px 0;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 18px;
  padding: 6px 16px;
  border: 1px solid rgba(242, 162, 12, .4);
  border-radius: 100px;
  background: rgba(242, 162, 12, .08);
}

.hero__title {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.hero__text {
  color: rgba(255, 255, 255, .82);
  font-size: 1.1rem;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero__badges {
  list-style: none;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  padding: 0;
  margin: 34px 0 0;
  font-size: .92rem;
  font-family: var(--font-display);
  font-weight: 500;
}

.hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .9);
}

.hero__badges i {
  color: var(--color-primary);
  font-size: 1.1rem;
}

/* Slide dots */
.hero__dots {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero__dot {
  width: 34px;
  height: 5px;
  border: none;
  border-radius: 100px;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: background .3s var(--ease), width .3s var(--ease);
}

.hero__dot.is-active {
  background: var(--color-primary);
  width: 48px;
}

/* ------- MARQUEE (rAF driven, always running) ------- */
.marquee {
  background: var(--color-primary);
  color: var(--color-ink);
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
}

.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  will-change: transform;
}

.marquee__item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.marquee__item i {
  font-size: 1.2rem;
}

.marquee__sep {
  opacity: .5;
  font-size: .7rem;
}

/* ====================================================================
   6. ABOUT US
   ==================================================================== */
.about__media {
  position: relative;
  padding: 0 30px 40px 0;
}

.about__img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4 / 3.4;
}

.about__img-float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  border-radius: var(--radius);
  border: 6px solid #fff;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  animation: floaty 5s ease-in-out infinite;
  /* gentle float */
}

.about__badge {
  position: absolute;
  top: 22px;
  left: -14px;
  background: var(--color-ink);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.about__badge-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--color-primary);
  line-height: 1;
}

.about__badge-label {
  font-size: .74rem;
  letter-spacing: .04em;
  opacity: .8;
}

.about__stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.about__stat {
  flex: 1 1 120px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.about__stat:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.about__stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--color-ink);
}

.about__stat-label {
  font-size: .82rem;
  color: var(--color-muted);
}

/* ====================================================================
   7. SERVICES  (image -> name -> content -> Call Now)
   ==================================================================== */
.service-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.service-card:hover .service-card__media img {
  transform: scale(1.08);
}

.service-card__icon {
  position: absolute;
  left: 18px;
  bottom: 4px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--color-primary);
  color: var(--color-ink);
  border-radius: 14px;
  font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease);
}

.service-card:hover .service-card__icon {
  transform: rotate(-8deg) scale(1.05);
}

.service-card__body {
  padding: 34px 24px 26px;
}

.service-card__title {
  font-size: 1.22rem;
}

.service-card__body p {
  font-size: .96rem;
}

.link-call {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.link-call i {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: rgba(22, 50, 79, .1);
  border-radius: 50%;
  font-size: .82rem;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}

.link-call:hover {
  color: var(--color-primary-dark);
}

.link-call:hover i {
  background: var(--color-primary);
  color: var(--color-ink);
  transform: translateX(3px);
}

/* ====================================================================
   8. WHY CHOOSE US  (staggered colour-sweep "blink" across cards)
   ==================================================================== */
.why-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.why-card__icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: var(--color-bg-soft);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 1.7rem;
  transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
}

.why-card:hover .why-card__icon {
  transform: translateY(-4px);
}

.why-card__title {
  font-size: 1.16rem;
}

.why-card p {
  font-size: .94rem;
  margin: 0;
}

/* The colour sweep: a top bar that lights up card-by-card, left to right.
   Each card's bar animates on a shared 4s loop with an increasing delay,
   so the accent appears to travel across the row and blink.            */
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  animation: sweep 4s var(--ease) infinite;
}

.why__grid>[class*="col-"]:nth-child(1) .why-card::before {
  animation-delay: 0s;
}

.why__grid>[class*="col-"]:nth-child(2) .why-card::before {
  animation-delay: .5s;
}

.why__grid>[class*="col-"]:nth-child(3) .why-card::before {
  animation-delay: 1s;
}

.why__grid>[class*="col-"]:nth-child(4) .why-card::before {
  animation-delay: 1.5s;
}

/* Icon tint pulses in sync with the sweep for a livelier "blink"        */
.why__grid>[class*="col-"]:nth-child(1) .why-card .why-card__icon {
  animation: iconPulse 4s ease infinite 0s;
}

.why__grid>[class*="col-"]:nth-child(2) .why-card .why-card__icon {
  animation: iconPulse 4s ease infinite .5s;
}

.why__grid>[class*="col-"]:nth-child(3) .why-card .why-card__icon {
  animation: iconPulse 4s ease infinite 1s;
}

.why__grid>[class*="col-"]:nth-child(4) .why-card .why-card__icon {
  animation: iconPulse 4s ease infinite 1.5s;
}

/* ====================================================================
   9. HOW IT WORKS  (numbered — real sequence)
   ==================================================================== */
.how__row {
  counter-reset: none;
  position: relative;
}

.how-step {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  padding: 34px 24px;
  height: 100%;
  position: relative;
  text-align: center;
  transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}

.how-step:hover {
  transform: translateY(-8px);
  background: rgba(242, 162, 12, .10);
  border-color: rgba(242, 162, 12, .5);
}

.how-step__num {
  position: absolute;
  top: 16px;
  right: 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.6rem;
  color: rgba(255, 255, 255, .08);
  line-height: 1;
}

.how-step__icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: var(--color-primary);
  color: var(--color-ink);
  border-radius: 50%;
  font-size: 1.7rem;
  box-shadow: 0 10px 26px rgba(242, 162, 12, .3);
}

.how-step__title {
  color: #fff;
  font-size: 1.16rem;
}

.how-step p {
  color: rgba(255, 255, 255, .68);
  font-size: .94rem;
  margin: 0;
}

/* ====================================================================
   10a. FLEET  (filterable car grid)
   ==================================================================== */
.fleet__filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.fleet__tab {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .92rem;
  padding: 9px 20px;
  border-radius: 100px;
  background: #fff;
  color: var(--color-ink);
  border: 1px solid var(--color-line);
  cursor: pointer;
  transition: all .3s var(--ease);
}

.fleet__tab:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
}

.fleet__tab.is-active {
  background: var(--color-ink);
  color: #fff;
  border-color: var(--color-ink);
}

.fleet__item {
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}

.fleet__item.is-hidden {
  display: none;
}

.car-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.car-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.car-card__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--color-bg-soft);
}

.car-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.car-card:hover .car-card__media img {
  transform: scale(1.09);
}

.car-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(14, 24, 38, .85);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .72rem;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: .03em;
}

.car-card__body {
  padding: 18px 18px 20px;
}

.car-card__name {
  font-size: 1.08rem;
  margin-bottom: 12px;
}

.car-card__specs {
  list-style: none;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 16px;
  font-size: .8rem;
  color: var(--color-muted);
}

.car-card__specs li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.car-card__specs i {
  color: var(--color-secondary);
}

/* ====================================================================
   10b. GALLERY  (desktop 4/row, mobile 2/row) + lightbox
   ==================================================================== */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery__item {
  position: relative;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-bg-soft);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__zoom {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.5rem;
  background: linear-gradient(to top, rgba(14, 24, 38, .55), rgba(14, 24, 38, .1));
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.gallery__item:hover .gallery__zoom {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8, 14, 24, .92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox__close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background .3s var(--ease), transform .3s var(--ease);
}

.lightbox__close:hover {
  background: var(--color-primary);
  color: var(--color-ink);
  transform: rotate(90deg);
}

/* ====================================================================
   11. FAQ  (accordion)
   ==================================================================== */
.faq__wrap {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.faq-item.is-open {
  box-shadow: var(--shadow-sm);
  border-color: rgba(242, 162, 12, .5);
}

.faq-item__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--color-ink);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item__q i {
  color: var(--color-primary);
  transition: transform .35s var(--ease);
  flex-shrink: 0;
}

.faq-item.is-open .faq-item__q i {
  transform: rotate(45deg);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease);
  padding: 0 22px;
}

.faq-item.is-open .faq-item__a {
  padding: 0 22px 20px;
}

.faq-item__a p {
  margin: 0;
  font-size: .96rem;
}

/* ====================================================================
   12. TESTIMONIALS  (custom slider)
   ==================================================================== */
.tslider {
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
}

.tslider__track {
  display: flex;
  transition: transform .6s var(--ease);
}

.tcard {
  flex: 0 0 100%;
  margin: 0;
  padding: 40px 36px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.tcard__stars {
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.tcard blockquote {
  font-size: 1.14rem;
  color: var(--color-ink);
  line-height: 1.7;
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0 0 22px;
}

.tcard figcaption {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.tcard figcaption img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary);
}

.tcard figcaption span {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.tcard figcaption strong {
  color: var(--color-ink);
  font-family: var(--font-display);
}

.tcard figcaption small {
  color: var(--color-muted);
}

.tslider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
}

.tslider__btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--color-line);
  color: var(--color-ink);
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  transition: all .3s var(--ease);
}

.tslider__btn:hover {
  background: var(--color-primary);
  color: var(--color-ink);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.tslider__dots {
  display: flex;
  gap: 8px;
}

.tslider__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: var(--color-line);
  transition: background .3s var(--ease), width .3s var(--ease);
}

.tslider__dots button.is-active {
  background: var(--color-primary);
  width: 26px;
  border-radius: 100px;
}

/* ====================================================================
   13. CONTACT
   ==================================================================== */
.contact__lead {
  color: rgba(255, 255, 255, .74);
}

.contact__info {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.contact__info li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.contact__ic {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(242, 162, 12, .14);
  color: var(--color-primary);
  border-radius: 14px;
  font-size: 1.2rem;
}

.contact__info strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  margin-bottom: 2px;
}

.contact__info a {
  color: rgba(255, 255, 255, .74);
}

.contact__info a:hover {
  color: var(--color-primary);
}

.contact__card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-lg);
}

.contact__card .form-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .88rem;
  color: var(--color-ink);
}

.contact__card .form-control,
.contact__card .form-select {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: .95rem;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.contact__card .form-control:focus,
.contact__card .form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(242, 162, 12, .14);
}

.form-feedback {
  margin: 16px 0 0;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: .95rem;
}

.form-feedback.ok {
  color: #1a8f4c;
}

.form-feedback.err {
  color: #d9453b;
}

/* ====================================================================
   14. FOOTER
   ==================================================================== */
.footer {
  background: var(--color-ink);
  color: rgba(255, 255, 255, .64);
  padding: 66px 0 0;
}

.footer__brand {
  margin-bottom: 18px;
}

.footer__brand .brand__name {
  color: #fff;
}

.footer__about {
  font-size: .94rem;
  max-width: 320px;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  transition: background .3s var(--ease), transform .3s var(--ease);
}

.footer__social a:hover {
  background: var(--color-primary);
  color: var(--color-ink);
  transform: translateY(-3px);
}

.footer__title {
  color: #fff;
  font-size: 1.02rem;
  margin-bottom: 18px;
}

.footer__links,
.footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: rgba(255, 255, 255, .64);
  font-size: .94rem;
}

.footer__links a:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

.footer__contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .92rem;
}

.footer__contact i {
  color: var(--color-primary);
  margin-top: 4px;
}

.footer__contact a {
  color: rgba(255, 255, 255, .64);
}

.footer__contact a:hover {
  color: var(--color-primary);
}

.footer__bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .86rem;
}

.footer__bottom p {
  margin: 0;
}

/* ====================================================================
   15. FLOATING BUTTONS, BACK-TO-TOP & MOTION
   ==================================================================== */
.float-btn {
  position: fixed;
  bottom: 26px;
  z-index: 1050;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease);
}

.float-btn--wa {
  left: 24px;
  background: #25d366;
}

/* WhatsApp — LEFT  */
.float-btn--call {
  right: 24px;
  background: var(--color-primary);
  color: var(--color-ink);
}

/* Call — RIGHT */
.float-btn:hover {
  transform: scale(1.1);
}

/* Continuous pulse ring */
.float-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}

.float-btn--wa::after {
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .6);
}

.float-btn--call::after {
  box-shadow: 0 0 0 0 rgba(242, 162, 12, .6);
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 1040;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--color-ink);
  color: #fff;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s var(--ease), visibility .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--color-primary);
  color: var(--color-ink);
}

/* ------- Scroll-reveal base state (JS adds .is-visible) ------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

/* ------- Keyframes ------- */
@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .5);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes sweep {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }

  35% {
    transform: scaleX(1);
    transform-origin: left;
  }

  55% {
    transform: scaleX(1);
    transform-origin: right;
  }

  90% {
    transform: scaleX(0);
    transform-origin: right;
  }

  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

@keyframes iconPulse {

  0%,
  30%,
  100% {
    background: var(--color-bg-soft);
    color: var(--color-secondary);
  }

  40%,
  50% {
    background: var(--color-primary);
    color: var(--color-ink);
  }
}

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width: 991.98px) {
  .section {
    padding: 72px 0;
  }

  .navbar-collapse {
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    margin-top: 12px;
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .btn-brand.w-100-mob {
    display: block;
  }

  .hero {
    min-height: 560px;
  }

  .about__media {
    padding: 0 20px 30px 0;
  }

  .footer__bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 60px 0;
  }

  .topbar__contacts {
    gap: 14px;
  }

  .topbar__link span {
    font-size: .78rem;
  }

  .hero__content {
    padding: 40px 0;
  }

  .hero__actions .btn {
    flex: 1 1 auto;
    text-align: center;
  }

  /* Gallery: 2 per row on mobile */
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .about__stats {
    gap: 10px;
  }

  .about__stat {
    flex: 1 1 100%;
  }

  .tcard {
    padding: 30px 22px;
  }

  .tcard blockquote {
    font-size: 1.02rem;
  }
}

@media (max-width: 575.98px) {
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .hero__badges {
    gap: 14px;
  }
}

/* Accessibility: clear keyboard focus */
a:focus-visible,
button:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible {
  outline: 3px solid rgba(242, 162, 12, .5);
  outline-offset: 2px;
}
/* ====================================================================
   MULTI-PAGE ADDITIONS — page hero, car popup, cta band, map
   ==================================================================== */

/* ---- PAGE HERO (inner page banner) ---- */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-ink) 0%, var(--color-ink-2) 100%);
  color: #fff;
  padding: 132px 0 66px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(242, 162, 12, .22), transparent 60%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  max-width: 720px;
}
.page-hero__title {
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  margin-bottom: .5rem;
}
.page-hero__sub {
  color: rgba(255, 255, 255, .78);
  font-size: 1.08rem;
  margin-bottom: 1rem;
  max-width: 640px;
}
.page-hero__crumb {
  font-family: var(--font-display);
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.page-hero__crumb a {
  color: var(--color-primary);
}
.page-hero__crumb a:hover {
  color: #fff;
}
.page-hero__crumb i {
  font-size: .72rem;
}

/* ---- CAR CARD: clickable + view hint ---- */
.car-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.car-card__view {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  color: #fff;
  background: linear-gradient(to top, rgba(14, 24, 38, .62), rgba(14, 24, 38, .12));
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.car-card:hover .car-card__view,
.car-card:focus-visible .car-card__view {
  opacity: 1;
}
.car-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.car-card__specs {
  margin-bottom: auto;
}
.car-card__buy {
  margin-top: 16px;
}

/* ---- CAR DETAILS POPUP ---- */
.car-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(8, 14, 24, .82);
  backdrop-filter: blur(3px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.car-modal.is-open {
  display: flex;
}
.car-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: cmIn .35s var(--ease) both;
}
@keyframes cmIn {
  from { opacity: 0; transform: translateY(18px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.car-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(14, 24, 38, .55);
  color: #fff;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.car-modal__close:hover {
  background: var(--color-primary);
  color: var(--color-ink);
  transform: rotate(90deg);
}
.car-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.car-modal__media {
  position: relative;
  background: var(--color-bg-soft);
  min-height: 320px;
}
.car-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.car-modal__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(14, 24, 38, .85);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .74rem;
  padding: 5px 13px;
  border-radius: 100px;
  letter-spacing: .03em;
}
.car-modal__body {
  padding: 34px 32px;
}
.car-modal__eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-primary-dark);
}
.car-modal__name {
  font-size: 1.7rem;
  margin: 6px 0 16px;
}
.car-modal__specs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 18px;
}
.car-modal__specs li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .84rem;
  color: var(--color-ink);
  background: var(--color-bg-soft);
  border: 1px solid var(--color-line);
  padding: 7px 14px;
  border-radius: 100px;
}
.car-modal__specs i {
  color: var(--color-secondary);
}
.car-modal__desc {
  color: var(--color-text);
  font-size: .96rem;
  margin-bottom: 18px;
}
.car-modal__note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--color-muted);
  background: var(--color-bg-soft);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 20px;
}
.car-modal__note i {
  color: #1f9d55;
  font-size: 1rem;
}
.car-modal__buy i {
  margin-right: 6px;
}
.car-modal__call {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .9rem;
  color: var(--color-secondary);
}
.car-modal__call:hover {
  color: var(--color-primary-dark);
}

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 54px 0;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-band__title {
  color: var(--color-ink);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 4px;
}
.cta-band__text {
  color: rgba(14, 24, 38, .82);
  margin: 0;
  font-weight: 500;
}
.cta-band__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-band__ghost {
  border-color: var(--color-ink);
  color: var(--color-ink);
}
.cta-band__ghost:hover {
  background: var(--color-ink);
  color: #fff;
}

/* ---- CONTACT MAP ---- */
.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}

/* ---- RESPONSIVE FOR NEW BLOCKS ---- */
@media (max-width: 767.98px) {
	.cu-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content:center!important
	}
  .page-hero {
    padding: 112px 0 52px;
  }
  .car-modal__grid {
    grid-template-columns: 1fr;
  }
  .car-modal__media {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }
  .car-modal__body {
    padding: 26px 22px 30px;
  }
  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-band__actions {
    justify-content: center;
    width: 100%;
  }
  .cta-band__actions .btn {
    flex: 1 1 auto;
    text-align: center;
  }
}
