/* ================================================================
   FOURMCARS Ã¢â‚¬â€ Premium Car Rental
   Apple / GoogleÃ¢â‚¬â€œlevel Design System
   ================================================================ */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  /* Neutrals Ã¢â‚¬â€ refined, not pure black/white */
  --clr-bg: #fafafa;
  --clr-bg-elevated: #ffffff;
  --clr-bg-dark: #0c0c10;
  --clr-bg-dark-2: #141418;
  --clr-bg-subtle: #f2f2f5;
  --clr-surface: #ffffff;

  /* Text */
  --clr-text: #1a1a1f;
  --clr-text-secondary: #6e6e73;
  --clr-text-tertiary: #aeaeb2;
  --clr-text-inverse: #f5f5f7;

  /* Accent Ã¢â‚¬â€ premium crimson red, Ferrari-like */
  --clr-accent: #dc2626;
  --clr-accent-hover: #b91c1c;
  --clr-accent-light: rgba(220, 38, 38, 0.08);
  --clr-accent-glow: rgba(220, 38, 38, 0.15);

  /* Semantic colours */
  --clr-green: #22c55e;
  --clr-green-bg: rgba(34, 197, 94, 0.08);
  --clr-amber: #f59e0b;
  --clr-amber-bg: rgba(245, 158, 11, 0.08);
  --clr-rose: #f43f5e;
  --clr-rose-bg: rgba(244, 63, 94, 0.08);

  /* Borders */
  --clr-border: rgba(0, 0, 0, 0.06);
  --clr-border-hover: rgba(0, 0, 0, 0.12);

  /* Typography */
  --ff: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --fs-11: 0.6875rem;
  --fs-12: 0.75rem;
  --fs-13: 0.8125rem;
  --fs-14: 0.875rem;
  --fs-15: 0.9375rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-24: 1.5rem;
  --fs-28: 1.75rem;
  --fs-32: 2rem;
  --fs-40: 2.5rem;
  --fs-48: 3rem;
  --fs-56: 3.5rem;
  --fs-64: 4rem;
  --fs-80: 5rem;

  /* Spacing */
  --sp-2: 0.125rem;
  --sp-4: 0.25rem;
  --sp-6: 0.375rem;
  --sp-8: 0.5rem;
  --sp-10: 0.625rem;
  --sp-12: 0.75rem;
  --sp-16: 1rem;
  --sp-20: 1.25rem;
  --sp-24: 1.5rem;
  --sp-32: 2rem;
  --sp-40: 2.5rem;
  --sp-48: 3rem;
  --sp-56: 3.5rem;
  --sp-64: 4rem;
  --sp-80: 5rem;
  --sp-96: 6rem;
  --sp-128: 8rem;

  /* Radius */
  --r-4: 4px;
  --r-8: 8px;
  --r-12: 12px;
  --r-16: 16px;
  --r-20: 20px;
  --r-24: 24px;
  --r-32: 32px;
  --r-full: 9999px;

  /* Shadows Ã¢â‚¬â€ soft, Apple-like depth */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --shadow-card: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.04), 0 12px 24px rgba(0, 0, 0, 0.06);

  /* Motion Ã¢â‚¬â€ Apple-like spring curves */
  --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.45, 0, 0.55, 1);
  --dur-fast: 180ms;
  --dur-med: 300ms;
  --dur-slow: 500ms;
  --dur-reveal: 450ms;
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff);
  font-size: var(--fs-16);
  line-height: 1.6;
  color: var(--clr-text);
  background: var(--clr-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

::selection {
  background: var(--clr-accent);
  color: var(--clr-text-inverse);
}

/* ---------- UTILITY ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-24);
}

/* Section headers */
.section__header {
  margin-bottom: var(--sp-48);
}

.section__header--center {
  text-align: center;
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-6);
  font-size: var(--fs-12);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-12);
}

.section__title {
  font-size: var(--fs-40);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--clr-text);
}

/* ================================================================
   PRELOADER
   ================================================================ */
.preloader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--clr-bg-dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-32);
  transition: opacity 0.6s var(--ease-smooth), visibility 0.6s var(--ease-smooth);
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__logo {
  width: 180px;
  opacity: 0;
  transform: translateY(20px);
  animation: preloaderLogoFade 0.8s 0.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.preloader__logo img {
  width: 100%;
}

.preloader__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--clr-accent);
  border-radius: 50%;
  animation: preloaderSpin 1s infinite linear;
}

@keyframes preloaderSpin {
  to { transform: rotate(360deg); }
}

@keyframes preloaderLogoFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  /* Above overlay */
  padding: var(--sp-16) 0;
  transition: all var(--dur-med) var(--ease-out);
}

.navbar.scrolled {
  padding: var(--sp-10) 0;
  background: rgba(12, 12, 16, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* When navbar becomes scrolled, ensure links and logo are light for contrast */
.navbar.scrolled .navbar__link {
  color: rgba(255,255,255,0.92);
}
.navbar.scrolled .navbar__link:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.06);
}
.navbar.scrolled .navbar__link.active {
  color: #ffffff;
  background: rgba(255,255,255,0.08);
}
.navbar.scrolled .navbar__logo-img {
}
.navbar.scrolled .navbar__profile {
  box-shadow: 0 0 0 4px rgba(220,38,38,0.12);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-32);
}

/* Logo */
.navbar__logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer__logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Lang Switcher */
.lang-switcher {
  position: relative;
  display: inline-block;
  margin-right: 12px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-full);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 160px;
  background: var(--clr-bg-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-16);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  padding: 8px;
  display: none;
  z-index: 1000;
  flex-direction: column;
  gap: 4px;
}

.lang-dropdown.active {
  display: flex;
  animation: dropdownFade 0.3s var(--ease-out) forwards;
}

.lang-dropdown a {
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--r-8);
  transition: all 0.2s;
}

.lang-dropdown a:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Light nav overrides */
.light-nav .lang-btn {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--clr-text);
}

.light-nav .lang-btn:hover {
  background: rgba(0, 0, 0, 0.08);
}

/* Hide Google branding & Top bar - ABSOLUTE HIDE */
.goog-te-banner-frame, 
.goog-te-banner-frame.skiptranslate, 
.VIpgJd-ZVi9d-ORrtZb-O0p6id,
#goog-gt-tt, 
.goog-te-balloon-frame,
.skiptranslate,
#google_translate_element { 
  display: none !important; 
  visibility: hidden !important;
}
body { 
  top: 0 !important; 
}
html {
  margin-top: 0 !important;
}
.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}
.goog-te-gadget { 
  display: none !important; 
}
.goog-te-spinner-pos {
  display: none !important;
}

/* Nav Menu */
.navbar__menu {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.navbar__list {
  display: flex;
  gap: var(--sp-8);
}

.navbar__link {
  font-size: var(--fs-13);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  padding: var(--sp-8) var(--sp-16);
  border-radius: var(--r-full);
  transition: color var(--dur-fast), background var(--dur-fast);
  position: relative;
}

.navbar__link:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
}

.navbar__link.active {
  color: var(--clr-text-inverse);
  background: rgba(255, 255, 255, 0.1);
}

/* Search + Profile */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.navbar__profile {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-fast);
}

.navbar__profile:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 4px var(--clr-accent-glow);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  /* Accessible touch target */
  height: 44px;
  z-index: 1200;
  /* Highest priority */
  padding: 10px;
  border-radius: var(--r-8);
  transition: background var(--dur-fast);
}

.navbar__hamburger:hover {
  background: rgba(255, 255, 255, 0.08);
}

.navbar__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: var(--r-full);
  transition: transform var(--dur-med) var(--ease-out), opacity var(--dur-fast);
  transform-origin: center;
}

.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Light page navbar (pages without dark hero) ---------- */
.light-nav .navbar:not(.scrolled) {
  background: var(--clr-bg-elevated);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.light-nav .navbar__link {
  color: var(--clr-text);
}
.light-nav .navbar__link:hover {
  color: var(--clr-text);
  background: rgba(0,0,0,0.03);
}
.light-nav .navbar__link.active {
  color: var(--clr-accent);
  background: rgba(220,38,38,0.06);
}
.light-nav .navbar__logo-img,
.light-nav .footer__logo-img {
  filter: none;
}
.light-nav .navbar__profile {
  background: var(--clr-accent);
  color: #fff;
}

/* Menu overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px);
  /* Slightly subtler blur */
  -webkit-backdrop-filter: blur(3px);
  z-index: 1000;
  /* Below navbar (1100) */
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-med), visibility var(--dur-med);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--sp-48);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(12, 12, 16, 0.25) 0%,
      rgba(12, 12, 16, 0.45) 40%,
      rgba(12, 12, 16, 0.82) 80%,
      rgba(12, 12, 16, 0.95) 100%);
}

/* Ambient glow orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  z-index: 1;
  will-change: transform;
  animation: orbFloat 10s ease-in-out infinite;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: #dc2626;
  bottom: -100px;
  left: -100px;
  animation-delay: -2s;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: #991b1b;
  top: 20%;
  right: -80px;
  animation-delay: -5s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 15px) scale(0.95);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__text {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-32);
  margin-bottom: var(--sp-40);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-8);
  font-size: var(--fs-12);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-16);
  opacity: 0;
  transform: translateY(12px);
  animation: heroFadeUp 0.8s 0.3s var(--ease-out) forwards;
}

.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-accent);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero__title {
  font-size: clamp(var(--fs-40), 7vw, var(--fs-64));
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--clr-text-inverse);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.9s 0.45s var(--ease-out) forwards;
}

.hero__subtitle {
  max-width: 380px;
  font-size: var(--fs-14);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.8s 0.6s var(--ease-out) forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-24);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0.4;
  transition: opacity var(--dur-med);
}

.hero__scroll:hover {
  opacity: 0.8;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--clr-text-inverse);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    top: -50%;
  }

  100% {
    top: 110%;
  }
}

/* ---- BOOKING FORM (Glass-card) ---- */
/*CAR CATEGORIES
   ================================================================ */
.categories {
  padding: var(--sp-96) 0 var(--sp-80);
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-20);
}

.category-card {
  position: relative;
  border-radius: var(--r-24);
  overflow: hidden;
  background: var(--clr-bg-dark);
  aspect-ratio: 3.5 / 4.5;
  cursor: pointer;
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow);
}

.category-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-2xl);
}

.category-card__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.category-card:hover .category-card__image img {
  transform: scale(1.08);
}

/* Apple-like shine sweep on hover */
.category-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      transparent 40%,
      rgba(255, 255, 255, 0.12) 45%,
      rgba(255, 255, 255, 0.03) 50%,
      transparent 55%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out);
}

.category-card:hover .category-card__shine {
  transform: translateX(100%);
}

.category-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: var(--sp-24);
  background: linear-gradient(0deg,
      rgba(12, 12, 16, 0.85) 0%,
      rgba(12, 12, 16, 0.4) 60%,
      transparent 100%);
}

.category-card__count {
  display: block;
  font-size: var(--fs-11);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-4);
}

.category-card__name {
  font-size: var(--fs-20);
  font-weight: 700;
  color: var(--clr-text-inverse);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.category-card__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: transform var(--dur-med) var(--ease-spring), background var(--dur-fast), box-shadow var(--dur-fast);
}

.category-card:hover .category-card__btn {
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

/* ================================================================
   NOS VOITURES — Fleet Grid
   ================================================================ */
.fleet {
  padding: var(--sp-80) 0 var(--sp-96);
  background: var(--clr-bg-subtle);
  position: relative;
}

.fleet::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
}

.fleet__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sp-48);
}

.fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-24);
}

/* ================================================================
   VEHICLE CARD (vcard)
   ================================================================ */
.vcard {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-20);
  overflow: hidden;
  transition: all var(--dur-med) var(--ease-out);
  display: flex;
  flex-direction: column;
  position: relative;
}

.vcard:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: rgba(220, 38, 38, 0.15);
}

.vcard--skeleton {
  border: none;
  box-shadow: none;
  background: transparent;
}

/* Image */
.vcard__img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: var(--clr-bg-subtle);
}

/* ========== PAGE HEADER / BREADCRUMB ========== */
.page-header {
  /* Reserve space beneath the fixed navbar to avoid overlap */
  padding: calc(var(--sp-24) + var(--sp-8)) 0 var(--sp-24);
  background: transparent;
  margin-top: 0;
  scroll-margin-top: 90px; /* for anchor jumps */
}
.page-header__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  color: var(--clr-text-secondary);
  font-size: var(--fs-13);
}
.breadcrumb__link {
  color: var(--clr-text-secondary);
}
.breadcrumb__current {
  color: var(--clr-text);
  font-weight: 600;
}
.page-header__title {
  font-size: var(--fs-40);
  font-weight: 800;
  color: var(--clr-text);
  margin-top: var(--sp-8);
}

/* ========== CONTACT SECTION ========== */
.contact {
  padding: var(--sp-48) 0 var(--sp-80);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--sp-40);
  align-items: start;
}
.contact__form {
  background: var(--clr-bg-elevated);
  padding: var(--sp-24);
  border-radius: var(--r-12);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
}
.contact__form .form-row {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  margin-bottom: var(--sp-16);
}
.contact__form label {
  font-size: var(--fs-13);
  color: var(--clr-text-secondary);
}
.contact__form input[type="text"],
.contact__form input[type="email"],
.contact__form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--r-8);
  border: 1px solid var(--clr-border);
  background: transparent;
  font-size: var(--fs-14);
  color: var(--clr-text);
  transition: box-shadow var(--dur-fast), border-color var(--dur-fast);
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--clr-accent);
  box-shadow: 0 6px 20px rgba(220,38,38,0.06);
}
.contact__form textarea {
  min-height: 120px;
  resize: vertical;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  background: var(--clr-bg-subtle);
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
}
.btn--primary {
  background: var(--clr-accent);
  color: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(220,38,38,0.12);
}

.contact__info {
  background: transparent;
  font-size: var(--fs-14);
  color: var(--clr-text);
}
.contact__info h3 {
  margin-bottom: var(--sp-12);
  font-size: var(--fs-20);
}
.contact__info ul {
  margin-top: var(--sp-12);
  padding-left: 0;
}
.contact__info li {
  margin-bottom: var(--sp-8);
  color: var(--clr-text);
}

@media (max-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .page-header__title {
    font-size: var(--fs-32);
  }
}

.vcard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.vcard:hover .vcard__img {
  transform: scale(1.06);
}

/* Status badge */
.vcard__status {
  position: absolute;
  top: var(--sp-12);
  right: var(--sp-12);
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: var(--fs-11);
  font-weight: 700;
  letter-spacing: 0.03em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2;
}

.vcard__status--available {
  background: rgba(34, 197, 94, 0.9);
  color: #fff;
}

.vcard__status--maintenance {
  background: rgba(245, 158, 11, 0.9);
  color: #fff;
}

.vcard__status--unavailable {
  background: rgba(220, 38, 38, 0.9);
  color: #fff;
}

/* Body */
.vcard__body {
  padding: var(--sp-24);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vcard__brand {
  font-size: var(--fs-11);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--clr-text-tertiary);
  margin-bottom: var(--sp-4);
}

.vcard__name {
  font-size: var(--fs-20);
  font-weight: 800;
  color: var(--clr-text);
  letter-spacing: -0.5px;
  margin-bottom: var(--sp-16);
  line-height: 1.2;
}

/* Specs strip */
.vcard__specs {
  display: flex;
  gap: var(--sp-8);
  margin-bottom: var(--sp-16);
  flex-wrap: wrap;
}

.vcard__spec {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: var(--clr-bg-subtle);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-8);
  font-size: var(--fs-12);
  font-weight: 600;
  color: var(--clr-text-secondary);
  transition: all var(--dur-fast);
}

.vcard__spec i {
  font-size: 14px;
  color: var(--clr-text-tertiary);
}

.vcard:hover .vcard__spec {
  border-color: var(--clr-border-hover);
}

/* Options */
.vcard__options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  margin-bottom: var(--sp-20);
  padding-bottom: var(--sp-20);
  border-bottom: 1px solid var(--clr-border);
}

.vcard__option {
  width: 30px;
  height: 30px;
  border-radius: var(--r-8);
  background: var(--clr-bg-subtle);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--clr-text-secondary);
  transition: all var(--dur-fast);
  cursor: default;
  position: relative;
}

.vcard__option:hover {
  background: var(--clr-accent-light);
  color: var(--clr-accent);
  border-color: var(--clr-accent);
  transform: translateY(-2px);
}

/* tooltip */
.vcard__option[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 10px;
  background: var(--clr-bg-dark);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Price row */
.vcard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.vcard__price {
  font-size: var(--fs-24);
  font-weight: 800;
  color: var(--clr-text);
  letter-spacing: -0.5px;
}

.vcard__price span {
  font-size: var(--fs-12);
  font-weight: 500;
  color: var(--clr-text-tertiary);
}

.vcard__actions {
  display: flex;
  gap: var(--sp-8);
}

.vcard__btn {
  padding: 10px 20px;
  font-size: var(--fs-12);
  font-weight: 700;
  border-radius: var(--r-12);
  transition: all var(--dur-fast);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.vcard__btn--details {
  background: var(--clr-bg-subtle);
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
}

.vcard__btn--details:hover {
  background: var(--clr-bg-elevated);
  border-color: var(--clr-text-tertiary);
  transform: translateY(-1px);
}

.vcard__btn--reserve {
  background: var(--clr-bg-dark);
  color: var(--clr-text-inverse);
}

.vcard__btn--reserve:hover {
  background: var(--clr-accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Fade-in animation */
@keyframes vcardFadeIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vcard--animate {
  animation: vcardFadeIn 0.5s var(--ease-out) both;
}

/* ================================================================
   VEHICLE DETAILS MODAL (vmodal)
   ================================================================ */
.vmodal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.2, 1);
}

.vmodal.active {
  opacity: 1;
  visibility: visible;
}

.vmodal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 16, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.vmodal__container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  transform: translateY(32px) scale(0.96);
  transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}

.vmodal.active .vmodal__container {
  transform: translateY(0) scale(1);
}

.vmodal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  color: var(--clr-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.25s;
}

.vmodal__close:hover {
  background: rgba(0, 0, 0, 0.12);
  color: var(--clr-text);
  transform: rotate(90deg);
}

/* Gallery */
.vmodal__gallery {
  background: var(--clr-bg-subtle);
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 12px;
}

.vmodal__main-img {
  flex: 1;
  width: 100%;
  min-height: 0;
  object-fit: contain;
  border-radius: 16px;
  transition: opacity 0.25s;
}

.vmodal__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.vmodal__thumbs::-webkit-scrollbar {
  height: 0;
}

.vmodal__thumb {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.55;
  transition: all 0.2s;
  flex-shrink: 0;
}

.vmodal__thumb:hover {
  opacity: 0.8;
}

.vmodal__thumb.active {
  border-color: var(--clr-accent);
  opacity: 1;
}

.vmodal__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info panel */
.vmodal__info {
  overflow-y: auto;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vmodal__badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--r-full);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  align-self: flex-start;
}

.vmodal__badge--available {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.vmodal__badge--maintenance {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}

.vmodal__badge--unavailable {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

.vmodal__brand {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--clr-text-tertiary);
  margin-bottom: 4px;
}

.vmodal__name {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--clr-text);
  margin-bottom: 8px;
}

.vmodal__desc {
  font-size: 13px;
  color: var(--clr-text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.vmodal__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.vmodal__spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--clr-bg-subtle);
  padding: 12px 8px;
  border-radius: 12px;
  border: 1px solid var(--clr-border);
}

.vmodal__spec-item i {
  font-size: 18px;
  color: var(--clr-accent);
}

.vmodal__spec-item span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--clr-text-tertiary);
  font-weight: 600;
}

.vmodal__spec-item strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-text);
}

.vmodal__options-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-text-tertiary);
  margin-bottom: 10px;
}

.vmodal__options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.vmodal__opt-chip {
  padding: 5px 12px;
  border-radius: var(--r-full);
  background: var(--clr-bg-subtle);
  border: 1px solid var(--clr-border);
  font-size: 11px;
  font-weight: 600;
  color: var(--clr-text-secondary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.vmodal__opt-chip i {
  font-size: 13px;
  color: var(--clr-accent);
}

.vmodal__pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.vmodal__price-row {
  display: flex;
  flex-direction: column;
  background: var(--clr-bg-subtle);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--clr-border);
}

.vmodal__price-row span {
  font-size: 10px;
  color: var(--clr-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.vmodal__price-row strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--clr-text);
  letter-spacing: -0.5px;
}

.vmodal__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  background: #25D366;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s var(--ease-out);
  margin-top: auto;
}

.vmodal__cta i {
  font-size: 20px;
}

.vmodal__cta:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* Modal responsive */
@media (max-width: 768px) {
  .vmodal__container {
    grid-template-columns: 1fr;
    max-height: 95vh;
  }

  .vmodal__gallery {
    max-height: 280px;
  }

  .vmodal__main-img {
    max-height: 200px;
    object-fit: cover;
  }

  .vmodal__info {
    padding: 24px;
  }

  .vmodal__name {
    font-size: 22px;
  }

  .vmodal__specs {
    grid-template-columns: repeat(2, 1fr);
  }

  .vmodal__pricing {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   FLEET — Responsive
   ================================================================ */
@media (max-width: 1024px) {
  .fleet__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .fleet {
    padding: var(--sp-64) 0;
  }

  .fleet__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-20);
  }

  .vcard__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-16);
  }

  .vcard__actions {
    width: 100%;
  }

  .vcard__btn {
    flex: 1;
    text-align: center;
  }
}

/* ================================================================
   FEATURES
   ================================================================ */

.features {
  padding: var(--sp-96) 0;
  position: relative;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-24);
}

.feature-card {
  text-align: center;
  padding: var(--sp-40) var(--sp-24);
  border-radius: var(--r-24);
  border: 1px solid transparent;
  transition: all var(--dur-med) var(--ease-out);
}

.feature-card:hover {
  background: var(--clr-surface);
  border-color: var(--clr-border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.feature-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--sp-20);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-16);
  background: var(--clr-accent-light);
  color: var(--clr-accent);
  transition: transform var(--dur-med) var(--ease-spring);
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.08);
}

.feature-card__icon--amber {
  background: var(--clr-amber-bg);
  color: var(--clr-amber);
}

.feature-card__icon--green {
  background: var(--clr-green-bg);
  color: var(--clr-green);
}

.feature-card__icon--rose {
  background: var(--clr-rose-bg);
  color: var(--clr-rose);
}

.feature-card__title {
  font-size: var(--fs-15);
  font-weight: 700;
  margin-bottom: var(--sp-8);
  letter-spacing: -0.01em;
}

.feature-card__text {
  font-size: var(--fs-13);
  color: var(--clr-text-secondary);
  line-height: 1.6;
}

/* ================================================================
   PROMO BANNER
   ================================================================ */
.promo {
  padding: 0 0 var(--sp-96);
}

.promo__card {
  position: relative;
  display: flex;
  align-items: stretch;
  background: var(--clr-bg-dark);
  border-radius: var(--r-32);
  overflow: hidden;
  min-height: 340px;
}

.promo__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.2) 0%, transparent 60%);
  top: -200px;
  left: -100px;
  pointer-events: none;
}

.promo__content {
  flex: 1;
  padding: var(--sp-56);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.promo__eyebrow {
  font-size: var(--fs-11);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-16);
}

.promo__title {
  font-size: clamp(var(--fs-28), 3.5vw, var(--fs-40));
  font-weight: 800;
  color: var(--clr-text-inverse);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: var(--sp-12);
}

.promo__desc {
  font-size: var(--fs-14);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  max-width: 340px;
  margin-bottom: var(--sp-32);
}

.promo__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-8);
  padding: var(--sp-12) var(--sp-28, 1.75rem);
  background: var(--clr-accent);
  color: #fff;
  font-size: var(--fs-14);
  font-weight: 600;
  border-radius: var(--r-12);
  width: fit-content;
  transition: all var(--dur-fast) var(--ease-spring);
}

.promo__btn:hover {
  background: var(--clr-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.promo__btn svg {
  transition: transform var(--dur-fast);
}

.promo__btn:hover svg {
  transform: translateX(3px);
}

.promo__visual {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.promo__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease-out);
}

.promo__card:hover .promo__image {
  transform: scale(1.04);
}

.promo__badge {
  position: absolute;
  right: var(--sp-32);
  bottom: var(--sp-32);
  background: linear-gradient(135deg, var(--clr-accent), #991b1b);
  color: #fff;
  border-radius: var(--r-20);
  padding: var(--sp-24) var(--sp-32);
  text-align: center;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.35);
  animation: badgeFloat 4s ease-in-out infinite;
}

.promo__badge-percent {
  display: block;
  font-size: var(--fs-48);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.promo__badge-percent sup {
  font-size: 0.5em;
  font-weight: 700;
  vertical-align: super;
}

.promo__badge-text {
  display: block;
  font-size: var(--fs-11);
  font-weight: 500;
  margin-top: var(--sp-6);
  opacity: 0.75;
  line-height: 1.3;
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ================================================================
   HOW IT WORKS Ã¢â‚¬â€ 3 Steps
   ================================================================ */
.how-it-works {
  padding: var(--sp-80) 0 var(--sp-96);
}

.steps__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-24);
}

.step-card {
  text-align: center;
  padding: var(--sp-40) var(--sp-32);
  border-radius: var(--r-24);
  border: 1px solid var(--clr-border);
  background: var(--clr-surface);
  flex: 1;
  max-width: 320px;
  position: relative;
  transition: all var(--dur-med) var(--ease-out);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--clr-border-hover);
}

.step-card__number {
  font-size: var(--fs-48);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--clr-accent), rgba(220, 38, 38, 0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--sp-16);
}

.step-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--sp-20);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-16);
  background: var(--clr-accent-light);
  color: var(--clr-accent);
  transition: transform var(--dur-med) var(--ease-spring);
}

.step-card:hover .step-card__icon {
  transform: scale(1.1);
}

.step-card__icon--amber {
  background: var(--clr-amber-bg);
  color: var(--clr-amber);
}

.step-card__icon--green {
  background: var(--clr-green-bg);
  color: var(--clr-green);
}

.step-card__title {
  font-size: var(--fs-18);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-8);
}

.step-card__text {
  font-size: var(--fs-13);
  color: var(--clr-text-secondary);
  line-height: 1.65;
}

.step-card__connector {
  display: flex;
  align-items: center;
  color: var(--clr-text-tertiary);
  flex-shrink: 0;
}

/* ================================================================
   CUSTOMER REVIEWS
   ================================================================ */
.reviews {
  padding: var(--sp-80) 0 var(--sp-96);
  background: var(--clr-bg-subtle);
  position: relative;
}

.reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-24);
}

.review-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-24);
  padding: var(--sp-32);
  display: flex;
  flex-direction: column;
  gap: var(--sp-20);
  transition: all var(--dur-med) var(--ease-out);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--clr-border-hover);
}

.review-card__stars {
  display: flex;
  gap: var(--sp-4);
  font-size: var(--fs-18);
  color: var(--clr-amber);
}

.review-card__stars .star--half {
  opacity: 0.4;
}

.review-card__text {
  font-size: var(--fs-14);
  color: var(--clr-text-secondary);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  padding-top: var(--sp-16);
  border-top: 1px solid var(--clr-border);
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-bg-dark);
  color: var(--clr-text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.review-card__name {
  font-size: var(--fs-14);
  font-weight: 600;
  color: var(--clr-text);
}

.review-card__location {
  font-size: var(--fs-12);
  color: var(--clr-text-tertiary);
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--clr-bg-dark);
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

/* Footer CTA */
.footer__top {
  padding: var(--sp-80) 0 var(--sp-64);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__cta {
  text-align: center;
}

.footer__cta-title {
  font-size: clamp(var(--fs-28), 4vw, var(--fs-48));
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--clr-text-inverse);
  margin-bottom: var(--sp-16);
}

.footer__cta-text {
  font-size: var(--fs-15);
  color: rgba(255, 255, 255, 0.4);
  max-width: 440px;
  margin: 0 auto var(--sp-32);
  line-height: 1.6;
}

.footer__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-8);
  padding: var(--sp-16) var(--sp-40);
  background: var(--clr-accent);
  color: #fff;
  font-size: var(--fs-15);
  font-weight: 600;
  border-radius: var(--r-full);
  transition: all var(--dur-fast) var(--ease-spring);
}

.footer__cta-btn:hover {
  background: var(--clr-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(220, 38, 38, 0.4);
}

.footer__cta-btn svg {
  transition: transform var(--dur-fast);
}

.footer__cta-btn:hover svg {
  transform: translateX(4px);
}

/* Footer Grid */
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-48);
  padding: var(--sp-64) 0;
}

.footer__logo {
  margin-bottom: var(--sp-16);
  display: inline-flex;
}

.footer__brand-text {
  font-size: var(--fs-13);
  margin-bottom: var(--sp-16);
  color: rgba(255, 255, 255, 0.35);
}

.footer__newsletter {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--r-full);
  padding: var(--sp-4);
  padding-left: var(--sp-20);
  max-width: 280px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color var(--dur-med);
}

.footer__newsletter:focus-within {
  border-color: var(--clr-accent);
}

.footer__newsletter-input {
  flex: 1;
  font-size: var(--fs-13);
  color: var(--clr-text-inverse);
  min-width: 0;
}

.footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.footer__newsletter-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: background var(--dur-fast), transform var(--dur-fast) var(--ease-spring);
}

.footer__newsletter-btn:hover {
  background: var(--clr-accent-hover);
  transform: scale(1.08);
}

.footer__links-title {
  font-size: var(--fs-13);
  font-weight: 600;
  color: var(--clr-text-inverse);
  margin-bottom: var(--sp-20);
  letter-spacing: -0.01em;
}

.footer__links-list li {
  margin-bottom: var(--sp-10);
}

.footer__links-list a {
  font-size: var(--fs-13);
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--dur-fast), transform var(--dur-fast);
  display: inline-block;
}

.footer__links-list a:hover {
  color: rgba(255, 255, 255, 0.85);
  transform: translateX(4px);
}

/* Footer bottom */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-24) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__copyright {
  font-size: var(--fs-12);
  color: rgba(255, 255, 255, 0.25);
}

.footer__legal {
  display: flex;
  gap: var(--sp-24);
}

.footer__legal a {
  font-size: var(--fs-12);
  color: rgba(255, 255, 255, 0.25);
  transition: color var(--dur-fast);
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ================================================================
   SCROLL REVEAL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-reveal) var(--ease-out), transform var(--dur-reveal) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   TOAST NOTIFICATION (injected via JS)
   ================================================================ */
/* Handled inline by JS for portability */

/* ================================================================
   RESPONSIVE Ã¢â‚¬â€ TABLET (Ã¢â€°Â¤ 1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .hero__text {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-16);
  }

  .hero__subtitle {
    text-align: left;
    max-width: 480px;
  }

  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps__grid {
    flex-wrap: wrap;
  }

  .step-card__connector {
    display: none;
  }

  .step-card {
    max-width: none;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-32);
  }
}

/* ================================================================
   RESPONSIVE Ã¢â‚¬â€ MOBILE (Ã¢â€°Â¤ 768px)
   ================================================================ */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--sp-20);
  }

  .section__title {
    font-size: var(--fs-28);
  }

  /* Navbar mobile */
  .navbar__hamburger {
    display: flex;
  }

  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: var(--clr-bg-dark-2);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right var(--dur-slow) var(--ease-out);
    z-index: 1100;
    /* Higher than navbar and hamburger to be safe */
  }

  .navbar__menu.open {
    right: 0;
  }

  .navbar__list {
    flex-direction: column;
    align-items: center;
    gap: var(--sp-32);
  }

  .navbar__link {
    font-size: var(--fs-20);
    color: rgba(255, 255, 255, 0.7);
  }

  /* Hero Ã¢â‚¬â€ Fix overlap with navbar */
  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: var(--sp-48);
    align-items: flex-start;
  }

  .hero__text {
    margin-bottom: var(--sp-40);
    text-align: left;
    width: 100%;
  }

  .hero__eyebrow {
    margin-bottom: var(--sp-12);
  }

  .hero__title {
    font-size: var(--fs-32);
    line-height: 1.1;
  }

  .hero__subtitle {
    text-align: left;
    max-width: 100%;
    margin-top: var(--sp-16);
  }

  .hero__scroll {
    display: none;
  }

  /* Categories */
  .categories {
    padding: var(--sp-64) 0;
  }

  .categories__grid {
    gap: var(--sp-12);
  }

  .category-card {
    aspect-ratio: 3/4;
  }

  /* Trending */
  /* Features */
  .features {
    padding: var(--sp-64) 0;
  }

  .features__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
  }

  /* Promo */
  .promo {
    padding: 0 0 var(--sp-64);
  }

  .promo__card {
    flex-direction: column;
    min-height: auto;
  }

  .promo__content {
    padding: var(--sp-32);
  }

  .promo__badge {
    right: var(--sp-16);
    bottom: var(--sp-16);
    padding: var(--sp-16) var(--sp-20);
  }

  .promo__badge-percent {
    font-size: var(--fs-32);
  }

  .promo__image {
    height: 240px;
  }

  /* FAQ */
  .faq {
    padding: var(--sp-64) 0;
  }

  /* How it works */
  .how-it-works {
    padding: var(--sp-64) 0;
  }

  .step-card__connector {
    display: none;
  }

  .steps__grid {
    flex-direction: column;
    gap: var(--sp-16);
  }

  .step-card {
    max-width: none;
    width: 100%;
  }

  /* Reviews */
  .reviews {
    padding: var(--sp-64) 0;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-16);
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-32);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--sp-16);
    text-align: center;
  }

  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer__cta-title {
    font-size: var(--fs-32);
  }
}

/* ================================================================
   RESPONSIVE Ã¢â‚¬â€ SMALL MOBILE (Ã¢â€°Â¤ 480px)
   ================================================================ */
@media (max-width: 480px) {
  .categories__grid {
    grid-template-columns: 1fr;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: var(--fs-28);
  }

  .feature-card {
    padding: var(--sp-24) var(--sp-16);
  }
}

/* ================================================================
   SKELETONS — Loading Placeholders
   ================================================================ */
.skeleton {
  background: linear-gradient(90deg, #ececec 25%, #dddddd 50%, #ececec 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
  border-radius: 4px;
  min-height: 20px;
}

@keyframes skeletonShimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ================================================================
   NOS VOITURES — PREMIUM MERCEDES DESIGN
   ================================================================ */
.nos-voitures {
  padding: var(--sp-96) 0 var(--sp-80);
  background: var(--clr-bg);
}

.luxury-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--sp-32);
}

.luxury-card {
  position: relative;
  background: var(--clr-surface);
  border-radius: var(--r-24);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: all var(--dur-med) var(--ease-out);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.luxury-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.06);
}

.luxury-card__img-box {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: var(--clr-bg-subtle);
}

.luxury-card__img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.luxury-card:hover .luxury-card__img-box img {
  transform: scale(1.06);
}

.luxury-card__content {
  padding: var(--sp-24);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.luxury-card__brand {
  font-size: var(--fs-12);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-text-secondary);
  margin-bottom: var(--sp-4);
}

.luxury-card__title {
  font-size: var(--fs-24);
  font-weight: 800;
  color: var(--clr-text);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-20);
  line-height: 1.2;
}

.luxury-card__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-12);
  margin-top: auto;
  margin-bottom: var(--sp-24);
  padding-bottom: var(--sp-20);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.luxury-card__spec {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  font-size: var(--fs-13);
  font-weight: 500;
  color: var(--clr-text-secondary);
}

.luxury-card__spec i {
  font-size: 16px;
  color: var(--clr-accent);
}

.luxury-card__spec--clean {
  background: transparent;
  padding: 0;
}

.luxury-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-20);
  margin-top: auto;
}

.luxury-card__price-box {
  display: flex;
  flex-direction: column;
}

.luxury-card__price-label {
  font-size: 9px;
  color: var(--clr-text-tertiary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.luxury-card__price {
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-text);
  line-height: 1;
  margin-top: 2px;
}

.luxury-card__price span {
  font-size: 11px;
  font-weight: 500;
  color: var(--clr-text-tertiary);
}

.luxury-card__actions {
  display: flex;
  gap: 8px;
}

.luxury-btn {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  transition: all var(--dur-fast);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.luxury-btn--secondary {
  background: var(--clr-bg-subtle);
  color: var(--clr-text);
}

.luxury-btn--secondary:hover {
  background: var(--clr-border);
}

.luxury-btn--primary {
  background: var(--clr-text);
  color: var(--clr-text-inverse);
}

.luxury-btn--primary:hover {
  background: var(--clr-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

/* Loading Skeletons */
.skeleton-bg {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
}

.skeleton-text {
  height: 16px;
  margin-bottom: 12px;
  border-radius: 4px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
}

.skeleton-text--title {
  width: 60%;
  height: 28px;
  margin-bottom: 16px;
}

.skeleton-text--sm {
  width: 80%;
}

.skeleton-text--price {
  width: 40%;
  margin-top: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .luxury-grid {
    grid-template-columns: 1fr !important;
    gap: var(--sp-24);
  }
}

/* ================================================================
   SINGLE CAR DETAILS PAGE
   ================================================================ */
.scar-body {
  background: var(--clr-bg);
  color: var(--clr-text);
  overflow-x: hidden;
}

.scar-main {
  padding: 32px 0 60px;
}

.scar-main .container {
  max-width: 80%;
  width: 100%;
}

.scar-grid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 350px);
  gap: 32px;
  max-width: none;
  margin: 0 auto;
  align-items: start;
}

@media (max-width: 1400px) {
  .scar-main .container {
    max-width: 90%;
  }
}

@media (max-width: 992px) {
  .scar-main .container {
    max-width: 95%;
  }
  .scar-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .scar-main .container {
    max-width: 100%;
    padding: 0 5%;
  }
}

/* Gallery */
.scar-main-img {
  width: 100%;
  height: 420px;
  border-radius: var(--r-20);
  overflow: hidden;
  background: var(--clr-bg-subtle);
  margin-bottom: 12px;
}

.scar-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.scar-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scar-thumbs::-webkit-scrollbar {
  display: none;
}

.scar-thumb {
  width: 84px;
  height: 56px;
  border-radius: var(--r-8);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: all var(--dur-fast);
  flex-shrink: 0;
}

.scar-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scar-thumb.active,
.scar-thumb:hover {
  opacity: 1;
}

.scar-thumb.active {
  border-color: var(--clr-text);
}

/* Sections */
.scar-section {
  margin-top: 40px;
}

.scar-section-title {
  font-size: var(--fs-20);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.scar-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.scar-spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--clr-surface);
  border-radius: var(--r-12);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
  transition: all var(--dur-fast);
}

.scar-spec-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.scar-spec-item i {
  font-size: 20px;
  color: #D90429;
}

.scar-spec-item div {
  display: flex;
  flex-direction: column;
}

.scar-spec-item span {
  font-size: 11px;
  color: var(--clr-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 2px;
}

.scar-spec-item strong {
  font-size: var(--fs-14);
  font-weight: 700;
  color: var(--clr-text);
}

.scar-options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.scar-opt-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--clr-surface);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--r-12);
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text);
}

.scar-opt-badge i {
  color: #D90429;
  font-size: 16px;
}

/* Sidebar Info Card */
.scar-sidebar {
  position: relative;
}

.scar-sticky-box {
  position: sticky;
  top: 100px;
  background: var(--clr-surface);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-top: 3px solid #D90429;
  border-radius: var(--r-20);
  padding: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.scar-header-mobile {
  display: none;
  margin-bottom: 24px;
}

@media (max-width: 992px) {
  .scar-header-mobile {
    display: block;
  }
  .scar-header-desktop {
    display: none;
  }
}

.scar-brand {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-tertiary);
  margin-bottom: 6px;
}

.scar-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.scar-year {
  color: var(--clr-text-secondary);
  font-weight: 600;
  font-size: 22px;
}

.scar-cat {
  display: inline-block;
  padding: 4px 12px;
  background: var(--clr-bg-subtle);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-text-secondary);
  margin-bottom: 24px;
}

/* Pricing Section */
.scar-price-huge {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.scar-price-huge .scar-price-val {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--clr-text);
}

.scar-price-huge small {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-text-secondary);
}

.scar-price-huge .scar-price-unit {
  display: block;
  font-size: 13px;
  color: var(--clr-text-tertiary);
  font-weight: 600;
  margin-top: 2px;
}

.scar-pricing-list {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scar-pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.scar-pricing-row span {
  color: var(--clr-text-secondary);
}

.scar-pricing-row strong {
  font-weight: 700;
  color: var(--clr-text);
}

.scar-pricing-caution {
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

/* Reserve Action */
.scar-reserve-btn {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--r-12);
  margin-bottom: 12px;
  background: linear-gradient(135deg, #E63946 0%, #D90429 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(217, 4, 41, 0.2);
  transition: all var(--dur-fast);
}

.scar-reserve-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 4, 41, 0.35);
  color: #fff;
}

.scar-assurance-text {
  text-align: center;
  font-size: 12px;
  color: var(--clr-text-secondary);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.scar-assurance-text i {
  color: var(--clr-green);
  font-size: 14px;
}

/* ================================================================
   RESERVATION WIZARD PAGE
   ================================================================ */
.res-body {
  background: var(--clr-bg);
  color: var(--clr-text);
}

.res-main {
  padding: 40px 0 80px;
}

.res-main.container {
  max-width: 80%;
  width: 100%;
}

.res-container {
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 1400px) {
  .res-main.container {
    max-width: 90%;
  }
}

@media (max-width: 992px) {
  .res-main.container {
    max-width: 95%;
  }
  .res-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .res-main.container {
    max-width: 100%;
    padding: 0 5%;
  }
}

/* Stepper */
.res-stepper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}
.res-stepper::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(0,0,0,0.06);
  z-index: 1;
}
.res-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--clr-text-secondary);
}
.res-step-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--clr-surface);
  border: 2px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  transition: all var(--dur-fast);
}
.res-step.active .res-step-circle, .res-step.completed .res-step-circle {
  background: #D90429;
  border-color: #D90429;
  color: #fff;
}
.res-step.active .res-step-label { color: #D90429; font-weight: 800; }
.res-step-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; transition: all var(--dur-fast); }

/* Panels */
.res-panel {
  background: var(--clr-surface);
  border-radius: var(--r-24);
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 10px 40px rgba(0,0,0,0.02);
  display: none;
}
.res-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.res-panel-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.res-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.res-form-grid.single {
  grid-template-columns: 1fr;
}
@media (max-width: 768px) {
  .res-form-grid { grid-template-columns: 1fr; }
}

.res-form-group {
  margin-bottom: 20px;
}
.res-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--clr-text-secondary);
}
.res-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r-12);
  border: 1px solid rgba(0,0,0,0.1);
  font-size: 15px;
  font-family: inherit;
  transition: all var(--dur-fast);
  background: #fdfdfd;
}
.res-input:focus {
  outline: none;
  border-color: #D90429;
  box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.1);
}
.res-checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--clr-bg-subtle);
  border-radius: var(--r-12);
  margin-bottom: 20px;
  cursor: pointer;
}
.res-checkbox-group input { width: 20px; height: 20px; accent-color: #D90429; }
.res-checkbox-group span { font-size: 14px; font-weight: 600; }

/* Summary */
.res-summary {
  position: sticky;
  top: 100px;
  background: var(--clr-surface);
  border: 1px solid rgba(0,0,0,0.06);
  border-top: 3px solid #D90429;
  border-radius: var(--r-24);
  padding: 32px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.04);
}
.res-summary h3 { font-size: 18px; font-weight: 800; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid rgba(0,0,0,0.05); }
.res-sum-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 14px; }
.res-sum-row span { color: var(--clr-text-secondary); }
.res-sum-row strong { color: var(--clr-text); font-weight: 700; text-align: right; }
.res-sum-total { margin-top: 24px; padding-top: 24px; border-top: 1px dashed rgba(0,0,0,0.1); display: flex; justify-content: space-between; align-items: center; }
.res-sum-total span { font-weight: 700; font-size: 16px; }
.res-sum-total strong { font-size: 28px; font-weight: 900; color: #D90429; }

/* Buttons */
.res-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.res-btn {
  padding: 14px 28px;
  border-radius: var(--r-12);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--dur-fast);
  border: none;
}
.res-btn-back { background: transparent; color: var(--clr-text-secondary); padding-left: 0; }
.res-btn-back:hover { color: var(--clr-text); }
.res-btn-next { background: linear-gradient(135deg, #E63946 0%, #D90429 100%); color: #fff; box-shadow: 0 4px 15px rgba(217, 4, 41, 0.2); }
.res-btn-next:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(217, 4, 41, 0.35); }
.res-btn-next:disabled { background: #ccc; cursor: not-allowed; box-shadow: none; transform: none; }

/* Toast Notification */
.res-toast {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: var(--clr-surface);
  border-left: 4px solid #D90429;
  padding: 20px 24px;
  border-radius: var(--r-12);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 9999;
}
.res-toast.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.res-toast i {
  font-size: 24px;
  color: #D90429;
}
.res-toast div {
  display: flex;
  flex-direction: column;
}
.res-toast strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 4px;
}
.res-toast span {
  font-size: 13px;
  color: var(--clr-text-secondary);
  font-weight: 500;
}
@media (max-width: 768px) {
  .res-toast {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }
}

/* ================================================================
   WHATSAPP FLOATING BUTTON
   ================================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff !important;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 0 1px rgba(0,0,0,0.05);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.5;
  z-index: -1;
  animation: whatsappPulse 2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 28px;
  }
}


/* Footer Map */
.footer__map {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: var(--r-24);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__map iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

@media (max-width: 992px) {
  .footer__grid {
    grid-template-columns: 1fr !important;
    gap: var(--sp-32) !important;
  }
}

