/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

body.body-no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
}

:root {
  --primary: #e8722a;
  --primary-dark: #c25a18;
  --accent: #e8722a;
  --light: #faf8f5;
  --dark: #1b2a4a;
  --dark-2: #243558;
  --dark-3: #111827;
  --gray: #6b7280;
  --white: #ffffff;
  --border: #e5e0d8;
  --shadow: 0 4px 20px rgba(27, 42, 74, 0.12);
  --radius: 10px;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

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

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

/* ===== NAVBAR ===== */
header {
  background-color: var(--dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  color: var(--white);
  line-height: 1;
}

.logo-sub {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo-word1 {
  color: var(--white);
}

.logo-word2 {
  color: var(--primary);
}

.logo-main {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  border-bottom: none;
  transition:
    color 0.2s,
    background-color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.07);
}

.nav-links a.active {
  color: var(--white);
  background-color: rgba(232, 114, 42, 0.18);
  font-weight: 600;
}

.nav-login {
  color: var(--primary) !important;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-login:hover {
  color: var(--primary-dark) !important;
}

.nav-cta {
  background-color: var(--primary) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px;
  transition:
    background-color 0.2s,
    transform 0.1s !important;
  margin-left: 8px;
  display: inline-flex !important;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.nav-cta:hover {
  background-color: var(--primary-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px;
  width: 44px;
  height: 44px;
  transition: background 0.25s ease;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hamburger.is-open {
  background: rgba(232, 114, 42, 0.15);
  border-color: rgba(232, 114, 42, 0.3);
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  background:
    linear-gradient(
      135deg,
      rgba(17, 26, 46, 0.92) 0%,
      rgba(27, 42, 74, 0.82) 60%,
      rgba(17, 26, 46, 0.9) 100%
    ),
    url("https://images.unsplash.com/photo-1494976388531-d1058494cdd8?w=1600&q=80")
      center/cover no-repeat;
  min-height: 620px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(232, 114, 42, 0.15) 0%,
    transparent 65%
  );
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 30px;
  display: grid;
  grid-template-columns: 1fr minmax(0, 420px);
  gap: 60px;
  align-items: center;
  width: 100%;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 114, 42, 0.12);
  border: 1px solid rgba(232, 114, 42, 0.3);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
  max-width: 520px;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.75;
}

/* Hero card (right side) */
.hero-card {
  background: rgba(17, 26, 46, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(250, 248, 245, 0.07),
    0 -2px 32px rgba(250, 248, 245, 0.06),
    0 4px 40px rgba(250, 248, 245, 0.05);
  width: 100%;
}

.hero-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--primary);
}

.hero-card-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.hero-card-field label {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
}

.hero-card-field input,
.hero-card-field select {
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--white);
  font-family: inherit;
  background: rgba(255, 255, 255, 0.06);
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  width: 100%;
}

.hero-card-field input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.hero-card-field select option {
  background: var(--dark);
  color: var(--white);
}

.hero-card-field input:focus,
.hero-card-field select:focus {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* Time select */
.hero-card-time {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 8px;
}

.hero-card-time label {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.time-label-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}

.time-icon-wrap {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Date fields side by side */
.hero-card-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-card-btn {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 15px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  letter-spacing: 0.3px;
  transition:
    background-color 0.2s,
    transform 0.1s;
}

.hero-card-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.hero-card-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 14px;
}

/* Hero trust stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 4px;
  align-self: stretch;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 32px 0 0;
  gap: 5px;
}

.hero-stat strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.hero-stat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.3;
  text-align: center;
}

.hero-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 32px 0 0;
  flex-shrink: 0;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--dark);
  padding: 14px 30px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition:
    background-color 0.2s,
    transform 0.1s;
  display: inline-block;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  padding: 14px 30px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition:
    border-color 0.2s,
    background-color 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--white);
  background-color: rgba(255, 255, 255, 0.08);
}

.search-box {
  max-width: 1100px;
  margin: 0 auto;
}

.search-box h2 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 700;
}

.search-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--dark);
  background-color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
}

.btn-search {
  background-color: var(--primary);
  color: var(--white);
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family: inherit;
  white-space: nowrap;
}

.btn-search:hover {
  background-color: var(--primary-dark);
}

/* ===== SECTION COMMON ===== */
section {
  padding: 70px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.section-line {
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
  margin: 14px auto 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== HERO WAVE SEPARATOR ===== */
.hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--dark);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  z-index: -1;
  pointer-events: none;
}

/* ===== FEATURES ===== */
.features {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}

.features-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.features .section-header h2 {
  color: var(--white);
}

.features .section-header p {
  color: rgba(255, 255, 255, 0.55);
}

.features .section-line {
  background: var(--white);
}

.section-header h2 span {
  color: var(--primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    box-shadow 0.3s,
    transform 0.3s,
    border-color 0.3s;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--white));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  transform: translateY(-5px);
  border-color: rgba(232, 114, 42, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

.feature-card--accent {
  background: rgba(232, 114, 42, 0.12);
  border-color: rgba(232, 114, 42, 0.25);
}

.feature-card--accent:hover {
  background: rgba(232, 114, 42, 0.18);
  border-color: rgba(232, 114, 42, 0.4);
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-emoji {
  font-size: 1.6rem;
  line-height: 1;
}

.feature-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.feature-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}

.feature-card h3 span {
  color: var(--primary);
}

.feature-card p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0;
}

.feature-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(232, 114, 42, 0.12);
  border: 1px solid rgba(232, 114, 42, 0.25);
  padding: 3px 10px;
  border-radius: 20px;
  align-self: flex-start;
  margin-top: 4px;
}

/* ===== VEHICLES SECTION ===== */
.vehicles-section {
  background-color: #edeae4;
}

.vehicles-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto 48px;
  gap: 24px;
}

.vehicles-section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin: 8px 0 6px;
  line-height: 1.2;
}

.vehicles-section-header h2 span {
  color: var(--primary);
}

.vehicles-section-header .features-eyebrow {
  color: var(--primary);
}

.vehicles-section-header p {
  font-size: 0.95rem;
  color: var(--gray);
  margin: 0;
}

.btn-outline-dark {
  display: inline-block;
  padding: 11px 24px;
  border: 1.5px solid var(--dark);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s,
    color 0.2s;
  flex-shrink: 0;
}

.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

.vehicles-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.vehicle-card--featured {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(232, 114, 42, 0.18);
  transform: translateY(-8px);
}

.vehicle-card--featured:hover {
  box-shadow: 0 20px 52px rgba(232, 114, 42, 0.28);
  transform: translateY(-14px);
}

/* Vehicle card image zone */
.vc-img-wrap {
  position: relative;
  width: 100%;
  height: 170px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border-radius: 18px 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vc-img-featured {
  background: linear-gradient(
    135deg,
    #1a1f35 0%,
    var(--dark) 50%,
    #2a1a0a 100%
  );
}

.vc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.vehicle-card:hover .vc-img {
  transform: scale(1.05);
}

/* ===== DACIA SANDERO SHOWCASE CARD ===== */
.vehicle-card--sandero {
  background: #ffffff;
  border: 1.5px solid #ede9e1;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(27, 42, 74, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Hero zone */
.sandero-hero {
  position: relative;
  background: linear-gradient(160deg, #f5f2ec 0%, #ede8dc 100%);
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

/* Availability pill */
.sandero-availability {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  padding: 6px;
  border-radius: 50%;
  border: 1px solid rgba(21, 128, 61, 0.2);
  z-index: 4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sandero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: sandero-pulse 2s infinite;
}

@keyframes sandero-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
  }
}

/* Image */
.sandero-img-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff8f0;
}

.sandero-img {
  width: 88%;
  height: 155px;
  object-fit: contain;
  transition:
    transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.45s ease;
  transform: translateY(4px);
}

.sandero-img-stage:hover .sandero-img {
  animation: sandero-slide-left 1.8s ease-in-out 1 forwards;
}

@keyframes sandero-slide-left {
  0% {
    transform: translateY(4px) translateX(0);
  }
  50% {
    transform: translateY(4px) translateX(-14px);
  }
  100% {
    transform: translateY(4px) translateX(0);
  }
}

/* Hero footer: stars + popular tag */
.sandero-hero-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: linear-gradient(
    to top,
    rgba(237, 232, 220, 0.95) 0%,
    transparent 100%
  );
  z-index: 3;
}

.sandero-highlight {
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  border: 1px solid rgba(232, 114, 42, 0.25);
  backdrop-filter: blur(6px);
  white-space: nowrap;
}

/* Content zone */
.sandero-content {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
  background: #fff8f0;
}

.sandero-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 12px;
}

.sandero-title-group {
  flex: 1;
  min-width: 0;
}

.sandero-category {
  font-size: 0.7rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 3px;
  display: block;
}

.sandero-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
  line-height: 1.2;
  word-break: break-word;
}

/* Price block */
.sandero-price-group {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.sandero-price-row {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.sandero-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -0.5px;
}

.sandero-price-unit {
  font-size: 0.65rem;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.2px;
}

.sandero-price-note {
  font-size: 0.6rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* Features grid */
.sandero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-bottom: 18px;
  padding: 14px;
  background: #faf9f7;
  border-radius: 12px;
  border: 1px solid #ede9e1;
}

.sandero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
}

.sandero-feature-icon {
  font-size: 1rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  line-height: 1;
}

.sandero-feature-text {
  font-size: 0.8rem;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.2;
}

/* Description snippet on front */
.sandero-desc-snippet {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0 0 14px;
  max-height: 3em;
  overflow: hidden;
  text-align: left;
  word-break: break-word;
  position: relative;
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

/* Action buttons */
.sandero-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.sandero-btn-primary {
  flex: 1;
  background: var(--primary);
  color: var(--white);
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(232, 114, 42, 0.3);
  letter-spacing: 0.2px;
}

.sandero-btn-primary:hover:not(.nav-driving) {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 114, 42, 0.45);
}

/* Ensure normal background during animation */
.sandero-btn-primary.nav-driving {
  background: var(--primary) !important;
}

.sandero-btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 13px 14px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sandero-btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===== SANDERO FLIP ANIMATION ===== */
.sandero-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vehicle-card--sandero {
  perspective: 1000px;
}

.sandero-flip-inner.is-flipping {
  transform: rotateX(180deg);
}

.sandero-flip-front,
.sandero-flip-back {
  width: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

.sandero-flip-front {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  transform: rotateX(0deg);
}

.sandero-flip-back {
  position: absolute;
  inset: 0;
  z-index: 1;
  transform: rotateX(180deg);
  background: linear-gradient(145deg, #edeae4 0%, #e4e0d8 100%);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px 24px;
  text-align: center;
}

.sandero-flip-back-icon {
  font-size: 4.5rem;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
  animation: sandero-bob 1.2s ease-in-out infinite alternate;
}

@keyframes sandero-bob {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-8px);
  }
}

.sandero-flip-back-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
}

.sandero-flip-back-desc {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.55;
  margin: 0;
  width: 100%;
  text-align: left;
  word-break: break-word;
  white-space: normal;
  overflow-wrap: break-word;
}

.sandero-flip-back-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  width: 100%;
  max-width: 240px;
}

.sandero-flip-back-actions .sandero-btn-primary,
.sandero-flip-back-actions .sandero-btn-secondary {
  flex: 1;
  padding: 11px 14px;
  font-size: 0.85rem;
  text-align: center;
}

.sandero-flip-back-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0;
  transform: translateY(6px);
  animation: sandero-arrow-in 0.35s 0.4s ease forwards;
}

.vback-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  align-items: center;
  margin: 8px 0 6px;
}

.vback-badge {
  background: rgba(0, 0, 0, 0.06);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

@keyframes sandero-arrow-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vc-img-emoji {
  font-size: 5rem;
  line-height: 1;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}

.vehicle-card:hover .vc-img-emoji {
  transform: scale(1.1) translateY(-4px);
}

.vc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: var(--primary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.vc-badge--premium {
  background: linear-gradient(135deg, #c25a18, var(--primary));
  box-shadow: 0 2px 8px rgba(232, 114, 42, 0.4);
}

.vc-featured-label {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Card header: name + price */
.vc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.vc-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
}

.vc-price span {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray);
  display: block;
}

.vc-price--featured {
  font-size: 1.45rem;
}

.vehicle-info-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.vehicle-info-top .price {
  text-align: right;
  flex-shrink: 0;
}

.btn-reserve-full {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--primary);
  color: var(--white);
  padding: 11px 0;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 16px;
  transition:
    background 0.2s,
    transform 0.2s;
  box-sizing: border-box;
}

.btn-reserve-full:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.vehicle-card--featured .btn-reserve-full {
  background: var(--primary);
  box-shadow: 0 4px 16px rgba(232, 114, 42, 0.3);
}

.vehicle-card {
  background: var(--white);
  border-radius: 18px;
  overflow: visible;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  margin-top: 44px;
}

.vehicle-card:not(.vehicle-card--sandero):hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  transform: translateY(-6px);
}

.vehicle-card.vehicle-card--sandero {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 0;
}

.vehicle-img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.6);
}

.vehicle-img-light {
  object-fit: contain;
  background: transparent;
  width: 100%;
  height: 200px;
  margin-top: -54px;
  position: relative;
  z-index: 2;
  transform: perspective(700px) rotateY(-6deg) rotateX(4deg) scale(1.05);
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
  filter: drop-shadow(0px 18px 16px rgba(100, 100, 110, 0.5))
    drop-shadow(0px 6px 6px rgba(100, 100, 110, 0.28));
}

.vehicle-card:hover .vehicle-img-light {
  transform: perspective(700px) rotateY(-2deg) rotateX(2deg) scale(1.1);
  filter: drop-shadow(0px 24px 20px rgba(100, 100, 110, 0.62))
    drop-shadow(0px 8px 8px rgba(100, 100, 110, 0.36));
}

.vehicle-img-placeholder {
  width: 100%;
  height: 195px;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--accent);
}

.vehicle-badge {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(232, 114, 42, 0.3);
  margin-bottom: 6px;
}

.card-relative {
  position: relative;
}

.vehicle-info {
  padding: 14px 20px 20px;
}

.vehicle-info h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.vehicle-category {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.vehicle-specs {
  display: flex;
  gap: 8px 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: var(--gray);
}

.spec-icon {
  font-size: 1rem;
}

.vehicle-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
}

.price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
}

.price span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray);
}

.btn-reserve {
  background-color: var(--primary);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition:
    background-color 0.2s,
    transform 0.1s;
  display: inline-block;
}

.btn-reserve:hover:not(.nav-driving) {
  background-color: #7a2826;
  transform: translateY(-1px);
}

/* Ensure normal background during animation */
.btn-reserve.nav-driving {
  background-color: var(--primary) !important;
}

.section-more {
  text-align: center;
  margin-top: 44px;
}

/* ===== BRANDS SCROLLING BANNER ===== */
.brands-section {
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark) 100%);
  padding: 36px 0;
  overflow: hidden;
  border-bottom: 4px solid var(--primary);
}

.brands-title {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.brands-track-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: brands-scroll 14s linear infinite;
  will-change: transform;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 160px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.brand-item:hover {
  opacity: 1;
}

.brand-item img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(56%) sepia(60%) saturate(700%)
    hue-rotate(348deg) brightness(98%) contrast(95%);
}

/* 5 logos × 160px = 800px = 1/6 of 30 logos × 160px = 4800px */
@keyframes brands-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-160px * 5));
  }
}

@media (max-width: 768px) {
  .brand-item {
    width: 120px;
  }

  .brand-item img {
    height: 36px;
  }

  @keyframes brands-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-120px * 5));
    }
  }
}

@media (max-width: 480px) {
  .brand-item {
    width: 100px;
  }

  .brand-item img {
    height: 28px;
  }

  @keyframes brands-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-100px * 5));
    }
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(
    180deg,
    rgba(232, 114, 42, 0.03) 0%,
    transparent 100%
  );
  pointer-events: none;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 114, 42, 0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(232, 114, 42, 0.2);
}

.testimonials-badge svg {
  flex-shrink: 0;
}

.testimonials-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.testimonials-header p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.6;
}

.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 60px;
}

.testimonial-stat {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.testimonial-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(232, 114, 42, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.stat-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
  color: #fbbf24;
  height: 18px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 500;
  margin-top: 4px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: rgba(232, 114, 42, 0.3);
}

.testimonial-quote {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(232, 114, 42, 0.15);
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-quote {
  color: rgba(232, 114, 42, 0.25);
  transform: scale(1.1);
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
  color: #fbbf24;
}

.rating-value {
  margin-left: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

.testimonial-text {
  font-size: 0.98rem;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 24px;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #d96428 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(232, 114, 42, 0.3);
  transition: transform 0.3s ease;
}

.testimonial-card:hover .author-avatar {
  transform: scale(1.1);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.author-info strong {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 700;
}

.author-info span {
  font-size: 0.88rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
}

.author-info span svg {
  flex-shrink: 0;
  opacity: 0.7;
}

/* ===== TESTIMONIALS RESPONSIVE ===== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .testimonials-container {
    max-width: 1500px;
  }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
  .testimonials-grid {
    max-width: 1100px;
  }
}

/* Tablette Large (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .testimonials {
    padding: 70px 0;
  }

  .testimonials-header h2 {
    font-size: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* Tablette (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }

  .testimonials-container {
    padding: 0 20px;
  }

  .testimonials-header {
    margin-bottom: 40px;
  }

  .testimonials-header h2 {
    font-size: 1.9rem;
  }

  .testimonials-stats {
    gap: 16px;
    margin-bottom: 50px;
  }

  .testimonial-stat {
    padding: 20px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 550px;
    margin: 0 auto;
  }

  .testimonial-card {
    padding: 28px;
  }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  .testimonials {
    padding: 50px 0;
  }

  .testimonials-container {
    padding: 0 16px;
  }

  .testimonials-header {
    margin-bottom: 36px;
  }

  .testimonials-header h2 {
    font-size: 1.7rem;
  }

  .testimonials-header p {
    font-size: 0.95rem;
  }

  .testimonials-stats {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 40px;
  }

  .testimonial-stat {
    padding: 18px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-quote svg {
    width: 28px;
    height: 28px;
  }
}

/* Mobile (jusqu'à 575px) */
@media (max-width: 575px) {
  .testimonials {
    padding: 40px 0;
  }

  .testimonials-container {
    padding: 0 16px;
  }

  .testimonials-header {
    margin-bottom: 32px;
  }

  .testimonials-badge {
    font-size: 0.8rem;
    padding: 6px 14px;
  }

  .testimonials-badge svg {
    width: 16px;
    height: 16px;
  }

  .testimonials-header h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .testimonials-header p {
    font-size: 0.9rem;
  }

  .testimonials-stats {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 36px;
  }

  .testimonial-stat {
    padding: 16px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-stars svg {
    width: 16px;
    height: 16px;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card {
    padding: 22px;
    border-radius: 16px;
  }

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

  .testimonial-quote {
    top: 18px;
    right: 18px;
  }

  .testimonial-quote svg {
    width: 26px;
    height: 26px;
  }

  .testimonial-rating {
    margin-bottom: 14px;
  }

  .testimonial-rating svg {
    width: 14px;
    height: 14px;
  }

  .rating-value {
    font-size: 0.85rem;
  }

  .testimonial-text {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .testimonial-author {
    padding-top: 16px;
  }

  .author-avatar {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }

  .author-info strong {
    font-size: 0.95rem;
  }

  .author-info span {
    font-size: 0.85rem;
  }

  .author-info span svg {
    width: 12px;
    height: 12px;
  }
}

/* Très petit mobile (jusqu'à 390px) */
@media (max-width: 390px) {
  .testimonials {
    padding: 36px 0;
  }

  .testimonials-container {
    padding: 0 12px;
  }

  .testimonials-header h2 {
    font-size: 1.4rem;
  }

  .testimonials-header p {
    font-size: 0.88rem;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .author-avatar {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

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

  .author-info span {
    font-size: 0.82rem;
  }
}

/* ===== TIMELINE ===== */
.timeline-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.timeline-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(232, 114, 42, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.timeline-header {
  text-align: center;
  margin-bottom: 60px;
}

.timeline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 114, 42, 0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(232, 114, 42, 0.2);
}

.timeline-badge svg {
  flex-shrink: 0;
}

.timeline-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.timeline-header h2 .highlight {
  color: var(--primary);
}

.timeline-header p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.6;
}

.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    var(--primary) 0%,
    rgba(232, 114, 42, 0.3) 100%
  );
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  gap: 40px;
  margin-bottom: 50px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item:nth-child(odd) .timeline-content {
  grid-column: 1;
  text-align: right;
}

.timeline-item:nth-child(odd) .timeline-marker {
  grid-column: 2;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 3;
  text-align: left;
}

.timeline-item:nth-child(even) .timeline-marker {
  grid-column: 2;
}

.timeline-marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 30px;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--primary);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 4px rgba(232, 114, 42, 0.1);
}

.timeline-dot.active {
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow:
    0 0 0 6px rgba(232, 114, 42, 0.2),
    0 4px 12px rgba(232, 114, 42, 0.4);
  animation: pulse-timeline 2s infinite;
}

@keyframes pulse-timeline {
  0%,
  100% {
    box-shadow:
      0 0 0 6px rgba(232, 114, 42, 0.2),
      0 4px 12px rgba(232, 114, 42, 0.4);
  }
  50% {
    box-shadow:
      0 0 0 10px rgba(232, 114, 42, 0.1),
      0 4px 16px rgba(232, 114, 42, 0.5);
  }
}

.timeline-line {
  display: none;
}

.timeline-content {
  position: relative;
}

.timeline-year {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, #d96428 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(232, 114, 42, 0.3);
}

.timeline-item:nth-child(odd) .timeline-year {
  margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-year {
  margin-right: auto;
}

.timeline-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: rgba(232, 114, 42, 0.3);
}

.timeline-card.active {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(232, 114, 42, 0.15);
}

.timeline-card.active:hover {
  box-shadow: 0 12px 32px rgba(232, 114, 42, 0.25);
}

.timeline-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    rgba(232, 114, 42, 0.1) 0%,
    rgba(217, 100, 40, 0.1) 100%
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.timeline-card:hover .timeline-icon {
  background: linear-gradient(135deg, var(--primary) 0%, #d96428 100%);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.timeline-card.active .timeline-icon {
  background: linear-gradient(135deg, var(--primary) 0%, #d96428 100%);
  color: white;
}

.timeline-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.timeline-card p {
  font-size: 0.98rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.timeline-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.timeline-item:nth-child(odd) .timeline-stats {
  justify-content: flex-end;
}

.timeline-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.timeline-stat strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.timeline-stat span {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
}

/* ===== TIMELINE RESPONSIVE ===== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .timeline-container {
    max-width: 1300px;
  }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
  .timeline-container {
    max-width: 1100px;
  }
}

/* Tablette Large (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .timeline-section {
    padding: 70px 0;
  }

  .timeline-header h2 {
    font-size: 2rem;
  }

  .timeline-item {
    grid-template-columns: 1fr 100px 1fr;
    gap: 32px;
  }

  .timeline-card {
    padding: 28px;
  }
}

/* Tablette (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .timeline-section {
    padding: 60px 0;
  }

  .timeline-container {
    padding: 0 20px;
  }

  .timeline-header {
    margin-bottom: 50px;
  }

  .timeline-header h2 {
    font-size: 1.9rem;
  }

  .timeline::before {
    left: 40px;
  }

  .timeline-item {
    grid-template-columns: 80px 1fr;
    gap: 28px;
    margin-bottom: 40px;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 2;
    text-align: left;
  }

  .timeline-item:nth-child(odd) .timeline-marker,
  .timeline-item:nth-child(even) .timeline-marker {
    grid-column: 1;
  }

  .timeline-item:nth-child(odd) .timeline-year,
  .timeline-item:nth-child(even) .timeline-year {
    margin-left: 0;
    margin-right: auto;
  }

  .timeline-item:nth-child(odd) .timeline-stats {
    justify-content: flex-start;
  }

  .timeline-card {
    padding: 26px;
  }

  .timeline-icon {
    width: 52px;
    height: 52px;
  }

  .timeline-card h3 {
    font-size: 1.3rem;
  }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  .timeline-section {
    padding: 50px 0;
  }

  .timeline-container {
    padding: 0 16px;
  }

  .timeline-header {
    margin-bottom: 40px;
  }

  .timeline-header h2 {
    font-size: 1.7rem;
  }

  .timeline-header p {
    font-size: 0.95rem;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    grid-template-columns: 60px 1fr;
    gap: 20px;
    margin-bottom: 36px;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 2;
    text-align: left;
  }

  .timeline-item:nth-child(odd) .timeline-marker,
  .timeline-item:nth-child(even) .timeline-marker {
    grid-column: 1;
  }

  .timeline-item:nth-child(odd) .timeline-year,
  .timeline-item:nth-child(even) .timeline-year {
    margin-left: 0;
    margin-right: auto;
  }

  .timeline-item:nth-child(odd) .timeline-stats {
    justify-content: flex-start;
  }

  .timeline-dot {
    width: 16px;
    height: 16px;
    border-width: 3px;
  }

  .timeline-dot.active {
    width: 22px;
    height: 22px;
  }

  .timeline-line {
    width: 2px;
  }

  .timeline-year {
    font-size: 0.85rem;
    padding: 5px 14px;
  }

  .timeline-card {
    padding: 24px;
  }

  .timeline-icon {
    width: 48px;
    height: 48px;
  }

  .timeline-icon svg {
    width: 24px;
    height: 24px;
  }

  .timeline-card h3 {
    font-size: 1.2rem;
  }

  .timeline-card p {
    font-size: 0.95rem;
  }

  .timeline-stat strong {
    font-size: 1.3rem;
  }
}

/* Mobile (jusqu'à 575px) */
@media (max-width: 575px) {
  .timeline-section {
    padding: 40px 0;
  }

  .timeline-container {
    padding: 0 16px;
  }

  .timeline-header {
    margin-bottom: 36px;
  }

  .timeline-badge {
    font-size: 0.8rem;
    padding: 6px 14px;
  }

  .timeline-badge svg {
    width: 16px;
    height: 16px;
  }

  .timeline-header h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .timeline-header p {
    font-size: 0.9rem;
  }

  .timeline::before {
    left: 25px;
  }

  .timeline-item {
    grid-template-columns: 50px 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 2;
    text-align: left;
  }

  .timeline-item:nth-child(odd) .timeline-marker,
  .timeline-item:nth-child(even) .timeline-marker {
    grid-column: 1;
  }

  .timeline-item:nth-child(odd) .timeline-year,
  .timeline-item:nth-child(even) .timeline-year {
    margin-left: 0;
    margin-right: auto;
  }

  .timeline-item:nth-child(odd) .timeline-stats {
    justify-content: flex-start;
  }

  .timeline-dot {
    width: 14px;
    height: 14px;
    border-width: 3px;
  }

  .timeline-dot.active {
    width: 20px;
    height: 20px;
  }

  .timeline-year {
    font-size: 0.8rem;
    padding: 4px 12px;
    margin-bottom: 12px;
  }

  .timeline-card {
    padding: 20px;
    border-radius: 16px;
  }

  .timeline-card:hover {
    transform: translateY(-2px);
  }

  .timeline-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin-bottom: 16px;
  }

  .timeline-icon svg {
    width: 22px;
    height: 22px;
  }

  .timeline-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .timeline-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .timeline-stats {
    gap: 16px;
  }

  .timeline-stat strong {
    font-size: 1.2rem;
  }

  .timeline-stat span {
    font-size: 0.8rem;
  }
}

/* Très petit mobile (jusqu'à 390px) */
@media (max-width: 390px) {
  .timeline-section {
    padding: 36px 0;
  }

  .timeline-container {
    padding: 0 12px;
  }

  .timeline-header h2 {
    font-size: 1.4rem;
  }

  .timeline-header p {
    font-size: 0.88rem;
  }

  .timeline::before {
    left: 22px;
  }

  .timeline-item {
    grid-template-columns: 45px 1fr;
    gap: 14px;
  }

  .timeline-card {
    padding: 18px;
  }

  .timeline-icon {
    width: 40px;
    height: 40px;
  }

  .timeline-icon svg {
    width: 20px;
    height: 20px;
  }

  .timeline-card h3 {
    font-size: 1.05rem;
  }

  .timeline-card p {
    font-size: 0.9rem;
  }

  .timeline-stat strong {
    font-size: 1.1rem;
  }

  .timeline-stat span {
    font-size: 0.78rem;
  }
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(180deg, #0d1526 0%, #0a0f1a 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 20px 24px;
  border-top: 1px solid rgba(232, 114, 42, 0.1);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand .logo {
  font-size: 1.4rem;
  margin-bottom: 4px;
  display: flex;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.footer-brand .logo:hover {
  opacity: 0.8;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li {
  position: relative;
  padding-left: 0;
  transition: padding-left 0.3s ease;
}

.footer-col ul li:hover {
  padding-left: 8px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-col address {
  font-style: normal;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
}

.footer-col address a,
.footer-col ul li a[href^="tel"],
.footer-col ul li a[href*="google.com/maps"] {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col address a:hover,
.footer-col ul li a[href^="tel"]:hover,
.footer-col ul li a[href*="google.com/maps"]:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== FOOTER RESPONSIVE ===== */

/* Tablette (768px - 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
  footer {
    padding: 50px 20px 20px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 35px;
  }

  .footer-brand p {
    max-width: 280px;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
  }
}

/* Mobile (jusqu'à 767px) */
@media (max-width: 767px) {
  footer {
    padding: 40px 16px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 30px;
  }

  .footer-brand {
    text-align: center;
    align-items: center;
  }

  .footer-brand .logo {
    justify-content: center;
    font-size: 1.3rem;
  }

  .footer-brand p {
    max-width: 100%;
    text-align: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col h4 {
    margin-bottom: 16px;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-col ul {
    align-items: center;
    gap: 10px;
  }

  .footer-col ul li:hover {
    padding-left: 0;
  }

  .footer-col address {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    margin: 24px auto 0;
  }
}

/* Très petit mobile (jusqu'à 390px) */
@media (max-width: 390px) {
  footer {
    padding: 35px 12px 16px;
  }

  .footer-grid {
    gap: 28px;
    padding-bottom: 25px;
  }

  .footer-brand .logo {
    font-size: 1.2rem;
  }

  .footer-brand p {
    font-size: 0.85rem;
  }

  .footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 14px;
  }

  .footer-col ul li a {
    font-size: 0.85rem;
  }

  .footer-col address {
    font-size: 0.85rem;
  }

  .footer-bottom {
    font-size: 0.78rem;
  }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(
    160deg,
    var(--dark-3) 0%,
    var(--dark) 60%,
    var(--dark-2) 100%
  );
  border-bottom: 3px solid var(--primary);
  padding: 60px 20px;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--primary-light, #f5a623);
}

/* Vehicles page hero variant */
.page-hero--vehicles {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.page-hero--vehicles::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(232, 114, 42, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.page-hero--vehicles::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(232, 114, 42, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 24px 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.page-hero--vehicles .breadcrumb {
  margin-bottom: 8px;
}

.page-hero--vehicles h1 {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin: 0;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.85) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 480px;
  margin: 0;
}

.page-hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

.page-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.page-hero-stat-value {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.page-hero-stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.page-hero-stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
  .page-hero--vehicles h1 {
    font-size: 2rem;
  }
  .page-hero-subtitle {
    font-size: 0.92rem;
  }
  .page-hero-inner {
    padding: 36px 20px 40px;
    gap: 12px;
  }
  .page-hero-stats {
    gap: 16px;
    padding: 12px 20px;
  }
  .page-hero-stat-value {
    font-size: 1.15rem;
  }
}

/* ===== FILTERS (vehicules page) ===== */
.filters-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 36px;
  padding: 5px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.filter-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--gray);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  white-space: nowrap;
}

.filter-tab-count {
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.05);
  padding: 2px 7px;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.filter-tab:hover {
  color: var(--dark);
  background: #f8f7f5;
}

.filter-tab.active {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.filter-tab.active .filter-tab-count {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

@media (max-width: 480px) {
  .filters-tabs {
    gap: 6px;
    padding: 5px;
    flex-wrap: wrap;
  }
  .filter-tab {
    flex: 1 1 calc(50% - 6px);
    padding: 10px 8px;
    font-size: 0.8rem;
    gap: 5px;
    white-space: normal;
    text-align: center;
  }
  .filter-tab-count {
    font-size: 0.65rem;
    padding: 1px 5px;
  }
}

/* ===== RESERVATION FORM ===== */
.reservation-section {
  padding: 60px 20px;
  background: var(--light);
}

.reservation-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  align-items: start;
}

.res-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.res-form-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--primary);
}

.res-step-header {
  margin-bottom: 32px;
}

.res-step-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.res-step-desc {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 400;
}

.res-step-nav {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.res-btn-next,
.res-btn-back {
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.res-btn-next {
  background: var(--primary);
  color: var(--white);
}

.res-btn-next:hover {
  background: #d96625;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 114, 42, 0.3);
}

.res-btn-back {
  background: var(--light);
  color: var(--dark);
  border: 1px solid var(--border);
}

.res-btn-back:hover {
  background: #e8eaed;
}

.btn-text-short {
  display: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-full {
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.input-icon-wrap {
  position: relative;
  width: 100%;
}

.input-icon-wrap input {
  padding-left: 42px;
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  opacity: 0.5;
  pointer-events: none;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #dde1e9;
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--dark);
  background-color: #fafafa;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  font-family: inherit;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0b8c8;
  font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 114, 42, 0.1);
}

/* Custom select */
.form-group select {
  width: 100%;
  padding: 12px 42px 12px 14px;
  border: 1.5px solid #dde1e9;
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--dark);
  background-color: #fafafa;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23e8722a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background-color 0.2s;
  font-family: inherit;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.form-group select:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 114, 42, 0.1);
}

.form-group select option {
  color: var(--dark);
  background: var(--white);
  font-weight: 500;
}

.form-group select optgroup {
  font-weight: 700;
  color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}

.btn-submit {
  width: 100%;
  background-color: var(--primary);
  color: var(--white);
  padding: 15px;
  border: none;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 0.2s,
    transform 0.1s;
  font-family: inherit;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-submit:hover {
  background-color: #7a2826;
  transform: translateY(-1px);
}

/* Override hover during animation with higher specificity */
.btn-submit.nav-trigger.nav-driving {
  background-color: var(--primary) !important;
  transform: none !important;
}

.btn-submit.nav-trigger.nav-driving:hover {
  background-color: var(--primary) !important;
  transform: none !important;
}

.summary-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 90px;
}

.summary-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--primary);
}

.summary-vehicle {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.summary-vehicle-img-wrap {
  width: 100%;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.summary-vehicle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.summary-vehicle-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.summary-vehicle-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
}

.summary-vehicle-cat {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px dashed var(--border);
}

.summary-row:last-of-type {
  border-bottom: none;
}

.summary-row span:first-child {
  color: var(--gray);
  display: flex;
  align-items: center;
}

.summary-row span:last-child {
  font-weight: 600;
  color: var(--dark);
}

.summary-total {
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--dark);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-total span:first-child {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

.summary-total span:last-child {
  font-weight: 800;
  color: var(--primary);
  font-size: 1.4rem;
}

.info-box {
  margin-top: 20px;
  padding: 14px;
  background: rgba(232, 114, 42, 0.06);
  border-left: 4px solid var(--primary);
  border-radius: 0 8px 8px 0;
  font-size: 0.85rem;
  color: var(--dark);
  line-height: 1.6;
}

/* ===== RESERVATION PAGE — NEW STRUCTURE ===== */

/* Hero reservation */
.page-hero--reservation {
  background:
    linear-gradient(
      135deg,
      rgba(17, 26, 46, 0.93) 0%,
      rgba(27, 42, 74, 0.88) 100%
    ),
    url("https://images.unsplash.com/photo-1494976388531-d1058494cdd8?w=1200&q=80")
      center / cover no-repeat;
  padding: 70px 20px 60px;
  text-align: center;
}

.res-hero-content {
  max-width: 620px;
  margin: 0 auto;
}

.res-hero-badge {
  display: inline-block;
  background: rgba(232, 114, 42, 0.18);
  color: var(--primary);
  border: 1px solid rgba(232, 114, 42, 0.35);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-hero--reservation h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.15;
}

.page-hero--reservation p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  margin-bottom: 32px;
}

.res-hero-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.res-hero-step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 600;
}

.res-hero-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.res-hero-step-line {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 10px;
}

/* Steps bar inside form card */
.res-steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1.5px solid var(--border);
}

.res-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--gray);
  font-size: 0.8rem;
  font-weight: 600;
  transition: color 0.2s;
}

.res-step-item.active {
  color: var(--dark);
}

.res-step-item.done {
  color: var(--primary);
}

.res-step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f0f0;
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.res-step-item.active .res-step-circle {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.res-step-item.done .res-step-circle {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.res-step-connector {
  flex: 1;
  min-width: 40px;
  height: 2px;
  background: #e5e7eb;
  margin: 0 8px;
  margin-bottom: 22px;
  transition: background 0.3s;
}

.res-step-connector.done {
  background: var(--primary);
}

/* Step panel header */
.res-step-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid rgba(232, 114, 42, 0.12);
}

.res-step-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(232, 114, 42, 0.15) 0%,
    rgba(232, 114, 42, 0.06) 100%
  );
  border: 1.5px solid rgba(232, 114, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.res-step-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 4px;
  letter-spacing: -0.2px;
}

.res-step-desc {
  font-size: 0.86rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.5;
}

/* Navigation buttons */
.res-step-nav {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1.5px solid var(--border);
}

.res-step-nav--between {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.res-step-nav .btn-submit,
.res-step-nav .res-btn-back {
  flex: 1;
  text-align: center;
  justify-content: center;
}

.res-step-nav .btn-submit {
  width: auto;
  margin-top: 0;
  padding: 13px 24px;
  font-size: 0.95rem;
}

.btn-text-short {
  display: none;
}
.btn-text-long {
  display: inline;
}

.res-btn-next {
  background: var(--dark);
  color: var(--white);
  padding: 13px 28px;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background 0.2s,
    transform 0.1s;
}

.res-btn-next:hover {
  background: var(--primary);
  transform: translateY(-1px);
}

.res-btn-back {
  background: transparent;
  color: var(--gray);
  padding: 13px 20px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.res-btn-back:hover {
  border-color: var(--dark);
  color: var(--dark);
}

/* Full-width form group */
.form-group--full {
  grid-column: 1 / -1;
}

/* Options cards grid — sandero style */
.res-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 8px;
}

.res-option-card {
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
  position: relative;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.res-option-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(232, 114, 42, 0.15);
  border-color: var(--primary);
}

.res-option-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.res-option-card:has(input:checked) {
  border-color: var(--primary);
  box-shadow:
    0 0 0 3px rgba(232, 114, 42, 0.15),
    0 8px 24px rgba(232, 114, 42, 0.1);
}

/* Check badge — visible only when checked */
.res-option-check-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity 0.25s,
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.res-option-check-badge img {
  width: 18px;
  height: 18px;
  display: block;
}

.res-option-card:has(input:checked) .res-option-check-badge {
  opacity: 1;
  transform: scale(1);
}

/* Content zone */
.res-option-content {
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.res-option-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.res-option-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
  letter-spacing: -0.1px;
}

.res-option-desc {
  font-size: 0.78rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.45;
}

.res-option-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 6px;
}

.res-option-amount {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.res-option-unit {
  font-size: 0.65rem;
  color: var(--gray);
  font-weight: 500;
}

/* Payment notice */
.res-payment-notice {
  background: rgba(232, 114, 42, 0.06);
  border: 1px solid rgba(232, 114, 42, 0.2);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 20px 0 0;
}

.res-payment-notice strong {
  display: block;
  font-size: 0.92rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.res-payment-notice p {
  font-size: 0.83rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.55;
}

/* Summary improvements */
.summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--primary);
}

.summary-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.summary-live-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.summary-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}

.summary-row--highlight {
  background: rgba(232, 114, 42, 0.06);
  border-radius: 6px;
  padding: 8px 10px;
  margin: 4px 0;
  border-bottom: none !important;
}

.summary-row--highlight span:first-child {
  color: var(--dark) !important;
  font-weight: 600;
}

.summary-guarantee {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.summary-guarantee-item {
  font-size: 0.82rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Input type date custom */
.form-group input[type="date"] {
  padding: 11px 14px;
  color-scheme: light;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.6;
  cursor: pointer;
  filter: invert(45%) sepia(80%) saturate(600%) hue-rotate(1deg) brightness(98%);
}

/* Input with icon wrapper */
.input-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-wrap .input-icon {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 16px;
  pointer-events: none;
  opacity: 0.7;
  flex-shrink: 0;
}

.input-icon-wrap input {
  padding-left: 38px !important;
  width: 100%;
}

/* ===== FORM CUSTOM SELECT (light theme override) ===== */
.form-group .sc-select {
  position: relative;
  user-select: none;
}

.form-group .sc-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid #dde1e9;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.95rem;
  color: var(--dark);
  background: #fafafa;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}

.form-group .sc-select-trigger:hover {
  border-color: var(--primary);
  background: var(--white);
}

.form-group .sc-select.sc-open .sc-select-trigger {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 114, 42, 0.1);
}

.sc-select-time-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  flex-shrink: 0;
}

.sc-select-time-icon .st0 {
  fill: var(--primary);
}

.form-group .sc-select-trigger {
  display: flex;
  align-items: center;
}

.form-group .sc-select-dropdown {
  background: var(--white);
  border: 1px solid rgba(232, 114, 42, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.form-group .sc-select-dropdown li {
  color: var(--dark);
  padding: 10px 16px;
}

.form-group .sc-select-dropdown li:hover {
  background: rgba(232, 114, 42, 0.08);
  color: var(--primary);
}

.form-group .sc-select-dropdown li.sc-select-active {
  background: var(--primary);
  color: var(--white);
}

/* Validation error messages - Desktop styles */
.validation-error {
  margin: 0 0 24px 0;
}

.validation-error div {
  background: #fff5f5;
  border-left: 4px solid #f44336;
  color: #c62828;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  box-shadow: 0 2px 6px rgba(244, 67, 54, 0.08);
}

.validation-error strong {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  color: #b71c1c;
}

.validation-error ul {
  display: block;
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}

.validation-error li {
  display: list-item;
  margin-bottom: 6px;
  line-height: 1.5;
  font-weight: 500;
}

.validation-error li:last-child {
  margin-bottom: 0;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-group .sc-select-arrow {
  font-size: 1.2rem;
  color: var(--primary);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
  flex-shrink: 0;
}

.form-group .sc-select.sc-open .sc-select-arrow {
  transform: rotate(90deg);
}

.form-group .sc-select-value {
  color: var(--dark);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.form-group .sc-select-value.sc-placeholder {
  color: #b0b8c8;
  font-weight: 400;
}

.form-group .sc-select-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1.5px solid #dde1e9;
  border-radius: 14px;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(17, 26, 46, 0.13);
  overflow: hidden;
  animation: scDropdownIn 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 6px;
}

@keyframes scDropdownIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-group .sc-select.sc-open .sc-select-dropdown {
  display: block;
}

.form-group .sc-optgroup-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--primary);
  padding: 8px 12px 4px;
  pointer-events: none;
}

.form-group .sc-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
  gap: 8px;
}

.form-group .sc-option:hover {
  background: rgba(232, 114, 42, 0.07);
}

.form-group .sc-option.sc-selected {
  background: rgba(232, 114, 42, 0.1);
}

.form-group .sc-option.sc-selected .sc-option-name {
  color: var(--primary);
  font-weight: 700;
}

.form-group .sc-option-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  flex: 1;
}

.form-group .sc-option-price {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(232, 114, 42, 0.08);
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== FORM CUSTOM DATEPICKER ===== */
.dp-wrap {
  position: relative;
  user-select: none;
}

.dp-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #dde1e9;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.95rem;
  color: var(--dark);
  background: #fafafa;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}

.dp-trigger:hover {
  border-color: var(--primary);
  background: var(--white);
}

.dp-wrap.dp-open .dp-trigger {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 114, 42, 0.1);
}

.dp-icon {
  font-size: 1rem;
  flex-shrink: 0;
  line-height: 1;
}

.dp-icon img {
  width: 18px;
  height: 18px;
  display: block;
}

.dp-value {
  flex: 1;
  font-weight: 600;
  color: var(--dark);
}

.dp-value.dp-placeholder {
  color: #b0b8c8;
  font-weight: 400;
}

.dp-arrow {
  font-size: 1.2rem;
  color: var(--primary);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
  flex-shrink: 0;
}

.dp-wrap.dp-open .dp-arrow {
  transform: rotate(90deg);
}

.dp-calendar {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  min-width: 280px;
  background: var(--white);
  border: 1.5px solid #dde1e9;
  border-radius: 14px;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(17, 26, 46, 0.13);
  padding: 16px;
  animation: scDropdownIn 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.dp-wrap.dp-open .dp-calendar {
  display: block;
}

.dp-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.dp-month-label {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
  text-transform: capitalize;
}

.dp-nav {
  width: 30px;
  height: 30px;
  border: 1.5px solid #dde1e9;
  border-radius: 8px;
  background: var(--white);
  color: var(--dark);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  font-family: inherit;
  padding: 0;
}

.dp-nav:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(232, 114, 42, 0.06);
}

.dp-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
}

.dp-weekdays span {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray);
  padding: 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.dp-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.dp-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
  border: none;
  background: none;
  font-family: inherit;
}

.dp-day:hover:not(.dp-disabled):not(.dp-selected) {
  background: rgba(232, 114, 42, 0.1);
  color: var(--primary);
}

.dp-day.dp-selected {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
}

.dp-day.dp-today:not(.dp-selected) {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
}

.dp-day.dp-disabled {
  color: #cdd0d8;
  cursor: not-allowed;
}

.dp-day.dp-empty {
  pointer-events: none;
}

.dp-day.dp-in-range:not(.dp-selected) {
  background: rgba(232, 114, 42, 0.08);
  border-radius: 0;
}

/* ============================
   Responsive — reservation page
   Consolidated: 2 breakpoints only
   ============================ */

/* All mobiles ≤ 650px */
@media (max-width: 650px) {
  .page-hero--reservation h1 {
    font-size: 1.7rem;
    white-space: nowrap;
  }

  .res-step-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Fix layout to prevent overlap */
  .reservation-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .summary-card {
    position: static;
    order: 2;
  }

  .res-form-card {
    padding: 24px 16px;
    order: 1;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .form-group {
    margin-bottom: 0;
  }

  .form-group label {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.9rem;
    padding: 12px 14px;
  }

  /* Input icon wrapper responsive */
  .input-icon-wrap {
    position: relative;
  }

  .input-icon-wrap input {
    padding-left: 40px;
  }

  .input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    opacity: 0.6;
  }

  /* Custom select responsive */
  .form-group .sc-select-trigger {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .form-group .sc-select-dropdown {
    font-size: 0.9rem;
  }

  /* Validation error messages responsive */
  .validation-error {
    margin: 0 -16px 20px -16px !important;
  }

  .validation-error div {
    padding: 12px 14px !important;
    font-size: 0.85rem !important;
    border-radius: 6px !important;
  }

  .validation-error strong {
    margin-bottom: 8px !important;
  }

  .validation-error ul {
    margin: 0 !important;
    padding-left: 18px !important;
  }

  .validation-error li {
    margin-bottom: 5px !important;
    line-height: 1.4 !important;
  }

  .validation-error li:last-child {
    margin-bottom: 0 !important;
  }

  .res-step-title {
    font-size: 1rem;
  }

  .res-step-desc {
    font-size: 0.82rem;
  }

  .res-step-icon {
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
  }

  .res-hero-steps {
    gap: 0;
    justify-content: center;
    align-items: center;
  }

  .res-hero-step {
    font-size: 0.65rem;
    gap: 5px;
  }

  .res-hero-step-num {
    width: 26px;
    height: 26px;
    font-size: 0.72rem;
  }

  .res-hero-step-line {
    width: 18px;
    margin: 0 4px;
  }

  .res-steps-bar {
    gap: 0;
  }

  .res-step-item span {
    font-size: 0.68rem;
  }

  .res-step-circle {
    width: 28px;
    height: 28px;
    font-size: 0.78rem;
  }

  .res-step-connector {
    min-width: 20px;
  }

  .res-step-nav {
    gap: 10px;
  }

  .res-btn-next {
    width: 100%;
    justify-content: center;
    font-size: 0.82rem;
    padding: 13px 12px;
    white-space: nowrap;
  }

  .res-btn-back {
    font-size: 0.82rem;
    padding: 13px 12px;
    white-space: nowrap;
  }

  .res-step-nav--between {
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
  }

  .res-step-nav--between .res-btn-back {
    width: auto;
    flex: 1;
    text-align: center;
  }

  .res-step-nav--between .res-btn-next {
    flex: 1;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.88rem;
    padding: 11px 14px;
  }

  .res-options-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .res-option-content {
    padding: 18px 16px;
  }

  .res-option-hero {
    padding: 20px 14px 16px;
    min-height: 85px;
  }

  .res-option-hero-icon {
    font-size: 2.8rem;
  }

  .res-option-title {
    font-size: 0.88rem;
  }

  .res-option-desc {
    font-size: 0.75rem;
  }

  .res-option-amount {
    font-size: 1.1rem;
  }

  .nav-btn-text {
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .btn-submit {
    font-size: 0.75rem;
    padding: 13px 8px;
    white-space: nowrap;
  }

  .btn-submit .nav-btn-text {
    font-size: 0.7rem;
    white-space: nowrap;
    letter-spacing: -0.2px;
  }

  .btn-text-short {
    display: inline;
  }

  .btn-text-long {
    display: none;
  }

  .hero-card-btn {
    font-size: 0.82rem;
    padding: 12px 10px;
  }

  .sandero-btn-primary {
    font-size: 0.8rem;
    padding: 11px 12px;
    letter-spacing: 0.1px;
  }
}

/* Small mobiles ≤ 390px — overrides only */
@media (max-width: 390px) {
  .reservation-section {
    padding: 20px 8px;
  }

  .res-form-card {
    padding: 16px 12px;
    margin: 0 4px;
  }

  /* Form improvements for very small screens */
  .form-row {
    gap: 12px;
    margin-bottom: 12px;
  }

  .form-group label {
    font-size: 0.82rem;
    margin-bottom: 5px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.85rem;
    padding: 10px 12px;
  }

  /* Input icons for small screens */
  .input-icon-wrap input {
    padding-left: 36px;
  }

  .input-icon {
    left: 10px;
    width: 14px;
    height: 14px;
  }

  /* Custom select for small screens */
  .form-group .sc-select-trigger {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .sc-select-time-icon {
    width: 14px;
    height: 14px;
    margin-right: 6px;
  }

  /* Navigation buttons responsive */
  .res-step-nav {
    margin-top: 16px;
    gap: 8px;
  }

  .res-btn-next,
  .res-btn-back {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .btn-text-long {
    display: none;
  }

  .btn-text-short {
    display: inline;
  }

  /* Validation errors for very small screens */
  .validation-error {
    margin: 0 -12px 16px -12px !important;
  }

  .validation-error div {
    padding: 10px 12px !important;
    font-size: 0.8rem !important;
  }

  .validation-error strong {
    margin-bottom: 6px !important;
  }

  .validation-error ul {
    margin: 0 !important;
    padding-left: 16px !important;
  }

  .validation-error li {
    margin-bottom: 4px !important;
    line-height: 1.3 !important;
  }

  .validation-error li:last-child {
    margin-bottom: 0 !important;
  }

  .page-hero--reservation h1 {
    font-size: 1.4rem;
  }

  .res-step-title {
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .res-step-desc {
    font-size: 0.78rem;
  }

  .res-hero-step {
    font-size: 0.55rem;
    gap: 4px;
  }

  .res-hero-step-num {
    width: 22px;
    height: 22px;
    font-size: 0.64rem;
  }

  .res-hero-step-line {
    width: 12px;
    margin: 0 3px;
  }

  .res-btn-next {
    font-size: 0.75rem;
    padding: 11px 18px;
  }

  .res-btn-back {
    font-size: 0.75rem;
    padding: 11px 18px;
  }

  .res-step-circle {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }

  .res-step-item span {
    font-size: 0.62rem;
  }

  .form-group label {
    font-size: 0.82rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.85rem;
    padding: 10px 12px;
  }

  .nav-btn-text {
    font-size: 0.68rem;
  }

  .btn-submit .nav-btn-text {
    font-size: 0.68rem;
  }
}

/* Medium screens - tablets */
@media (min-width: 651px) and (max-width: 1024px) {
  .res-step-nav--between {
    gap: 20px;
  }
}

/* Large screens - desktop */
@media (min-width: 1025px) {
  .res-step-nav--between {
    gap: 24px;
  }
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #edeae4 100%);
  position: relative;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Info Section */
.contact-info {
  position: sticky;
  top: 100px;
}

.contact-info-header {
  margin-bottom: 32px;
}

.contact-info-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.contact-info-header p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}

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

.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--dark));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(232, 114, 42, 0.2);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, #d96428 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  transition: transform 0.3s ease;
}

.contact-icon svg {
  width: 26px;
  height: 26px;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-card-content {
  flex: 1;
}

.contact-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.contact-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

.contact-card a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form-header {
  margin-bottom: 36px;
}

.contact-form-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.contact-form-header p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: flex;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.form-icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  opacity: 0.6;
  filter: brightness(0) saturate(100%);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: all 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(232, 114, 42, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-checkbox {
  margin-bottom: 28px;
}

.checkbox-label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-text {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

.btn-submit {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--primary) 0%, #d96428 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(232, 114, 42, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 114, 42, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit svg {
  transition: transform 0.3s ease;
}

.btn-submit:hover svg {
  transform: translateX(4px) rotate(-10deg);
}

/* ===== CONTACT PAGE RESPONSIVE ===== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .contact-container {
    max-width: 1500px;
  }

  .contact-layout {
    grid-template-columns: 450px 1fr;
    gap: 80px;
  }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
  .contact-layout {
    grid-template-columns: 400px 1fr;
    gap: 50px;
  }
}

/* Tablette Large (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-layout {
    grid-template-columns: 380px 1fr;
    gap: 40px;
  }

  .contact-info {
    position: static;
  }

  .contact-form-card {
    padding: 40px;
  }

  .contact-form-header h2 {
    font-size: 1.8rem;
  }
}

/* Tablette (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .contact-section {
    padding: 50px 0;
  }

  .contact-container {
    padding: 0 20px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    position: static;
  }

  .contact-info-header h3 {
    font-size: 1.6rem;
  }

  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
  }

  .contact-icon svg {
    width: 24px;
    height: 24px;
  }

  .contact-form-card {
    padding: 36px;
  }

  .contact-form-header h2 {
    font-size: 1.7rem;
  }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  .contact-section {
    padding: 40px 0;
  }

  .contact-container {
    padding: 0 16px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-info {
    position: static;
  }

  .contact-info-header h3 {
    font-size: 1.5rem;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-card {
    padding: 18px;
    gap: 16px;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
  }

  .contact-icon svg {
    width: 22px;
    height: 22px;
  }

  .contact-card h4 {
    font-size: 1rem;
  }

  .contact-card p {
    font-size: 0.9rem;
  }

  .contact-form-card {
    padding: 28px;
    border-radius: 16px;
  }

  .contact-form-header h2 {
    font-size: 1.5rem;
  }

  .contact-form-header p {
    font-size: 0.9rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .btn-submit {
    padding: 14px 28px;
  }
}

/* Mobile (jusqu'à 575px) */
@media (max-width: 575px) {
  .contact-section {
    padding: 32px 0;
  }

  .contact-container {
    padding: 0 16px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-info {
    position: static;
  }

  .contact-info-header {
    margin-bottom: 24px;
  }

  .contact-info-header h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }

  .contact-info-header p {
    font-size: 0.88rem;
  }

  .contact-cards-grid {
    gap: 12px;
  }

  .contact-card {
    padding: 16px;
    gap: 14px;
    border-radius: 12px;
  }

  .contact-card:hover {
    transform: translateX(2px);
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .contact-icon svg {
    width: 20px;
    height: 20px;
  }

  .contact-card h4 {
    font-size: 0.95rem;
  }

  .contact-card p {
    font-size: 0.88rem;
  }

  .contact-form-card {
    padding: 24px;
    border-radius: 14px;
  }

  .contact-form-header {
    margin-bottom: 28px;
  }

  .contact-form-header h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }

  .contact-form-header p {
    font-size: 0.88rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .form-icon {
    width: 16px;
    height: 16px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.92rem;
    border-radius: 10px;
  }

  .form-group textarea {
    min-height: 120px;
  }

  .checkbox-text {
    font-size: 0.85rem;
  }

  .btn-submit {
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .success-msg {
    padding: 16px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .success-msg strong {
    font-size: 0.95rem;
  }

  .success-msg p {
    font-size: 0.85rem;
  }
}

/* Très petit mobile (jusqu'à 390px) */
@media (max-width: 390px) {
  .contact-section {
    padding: 28px 0;
  }

  .contact-container {
    padding: 0 12px;
  }

  .contact-layout {
    gap: 24px;
  }

  .contact-info-header h3 {
    font-size: 1.3rem;
  }

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

  .contact-card {
    padding: 14px;
    gap: 12px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }

  .contact-icon svg {
    width: 18px;
    height: 18px;
  }

  .contact-card h4 {
    font-size: 0.9rem;
  }

  .contact-card p {
    font-size: 0.85rem;
  }

  .contact-form-card {
    padding: 20px;
  }

  .contact-form-header h2 {
    font-size: 1.3rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 11px 12px;
    font-size: 0.9rem;
  }

  .btn-submit {
    padding: 13px 20px;
    font-size: 0.92rem;
  }
}

/* ===== SUCCESS MESSAGE ===== */
.success-msg {
  display: none;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 2px solid #10b981;
  border-radius: 14px;
  padding: 20px 24px;
  margin-top: 24px;
  align-items: center;
  gap: 16px;
  animation: slideDown 0.4s ease-out;
}

.success-msg.show {
  display: flex;
}

.success-msg svg {
  flex-shrink: 0;
  color: #10b981;
}

.success-msg strong {
  display: block;
  color: #065f46;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.success-msg p {
  color: #047857;
  font-size: 0.9rem;
  margin: 0;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  height: 200px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 2.5rem;
  margin-top: 22px;
  border: 1px solid var(--border);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  width: 50px;
  height: 50px;
  border-radius: 20%;
  background-color: var(--primary);
  border: none;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px double #e9e9e9;
  border-radius: 15px;
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

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

.back-to-top-icon {
  width: 12px;
  transition-duration: 0.3s;
}

.back-to-top-icon path {
  fill: #e9e9e9;
}

.back-to-top.clicked .back-to-top-icon {
  transition-duration: 0.3s;
  transform: translateY(-200%);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero {
    background:
      linear-gradient(
        135deg,
        rgba(17, 26, 46, 0.9) 0%,
        rgba(27, 42, 74, 0.85) 60%,
        rgba(17, 26, 46, 0.92) 100%
      ),
      url("https://images.unsplash.com/photo-1494976388531-d1058494cdd8?w=1200&q=80")
        center/cover no-repeat;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 20px 52px;
  }

  .hero-left {
    align-items: center;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-desc {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-stats {
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
  }

  .hero-stat {
    padding: 0 16px 0 0;
  }

  .hero-stat-sep {
    margin: 0 16px 0 0;
  }

  .hero-right {
    justify-content: center;
    width: 100%;
  }

  .hero-card {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .cat-pills {
    grid-template-columns: repeat(3, 1fr);
  }

  .cat-pill {
    padding: 9px 10px;
    font-size: 0.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .feature-card {
    padding: 28px 24px;
  }

  .vehicles-section-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
  }

  .vehicles-highlight-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
    gap: 60px;
  }

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

  .reservation-layout {
    grid-template-columns: 1fr;
  }

  .summary-card {
    position: static;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 4px;
    right: 4px;
    height: auto;
    max-height: calc(100vh - 88px);
    flex-direction: column;
    background: var(--dark);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 24px 16px;
    gap: 6px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links li {
    opacity: 0;
    transform: translateX(-16px);
    transition: all 0.3s ease;
  }

  .nav-links.open li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links.open li:nth-child(1) {
    transition-delay: 0.08s;
  }
  .nav-links.open li:nth-child(2) {
    transition-delay: 0.14s;
  }
  .nav-links.open li:nth-child(3) {
    transition-delay: 0.2s;
  }
  .nav-links.open li:nth-child(4) {
    transition-delay: 0.26s;
  }
  .nav-links.open li:nth-child(5) {
    transition-delay: 0.32s;
  }

  .nav-links a {
    display: block;
    padding: 16px 18px;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    transition: all 0.2s ease;
    text-align: center;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }

  .nav-links a.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }

  .nav-links .nav-cta {
    margin-top: 12px;
    text-align: center;
    padding: 16px 32px;
    font-size: 1rem;
    border-radius: 12px;
    background: var(--primary) !important;
    color: var(--white) !important;
    justify-content: center;
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 100;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(
        to bottom,
        rgba(17, 26, 46, 0.92) 0%,
        rgba(27, 42, 74, 0.88) 50%,
        rgba(17, 26, 46, 0.95) 100%
      ),
      url("https://images.unsplash.com/photo-1494976388531-d1058494cdd8?w=900&q=80")
        center 40% / cover no-repeat;
  }

  .hero-content {
    padding: 32px 14px 48px;
    gap: 22px;
  }

  .hero-right {
    width: 100%;
    justify-content: center;
  }

  .hero-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 20px 16px;
  }

  .hero-card h3 {
    font-size: 1.05rem;
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .hero-card-field {
    margin-bottom: 10px;
  }

  .hero-card-dates {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  /* Date fields: date input + time select side by side */
  .hero-card-dates .hero-card-field {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    column-gap: 6px;
    row-gap: 6px;
    align-items: start;
  }

  .hero-card-dates .hero-card-field > label:first-child {
    grid-column: 1 / 3;
  }

  .hero-card-dates .hero-card-field .datepicker-wrap {
    grid-column: 1;
    min-width: 0;
  }

  .hero-card-dates .hero-card-field input {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .hero-card-dates .hero-card-time {
    grid-column: 2;
    margin-top: 0;
  }

  .hero-card-dates .hero-card-time label {
    display: none;
  }

  /* Category field: normal flex, pills wrap freely */
  .hero-card-field:not(.hero-card-dates .hero-card-field) {
    display: flex;
    flex-direction: column;
  }

  .cat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .cat-pill {
    flex: 1 1 calc(33% - 6px);
    padding: 7px 6px;
    font-size: 0.75rem;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 24px 20px;
    gap: 12px;
  }

  .feature-icon {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }

  .vehicles-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
  }

  .vehicles-section-header h2 {
    font-size: 1.5rem;
  }

  .vehicles-highlight-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .btn-outline-dark {
    width: 100%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .hero-desc {
    font-size: 0.92rem;
    margin-bottom: 20px;
  }

  .hero-card {
    padding: 22px 16px;
  }

  .hero-card-dates {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-card-dates .hero-card-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .hero-card-dates .hero-card-field .datepicker-wrap,
  .hero-card-dates .hero-card-time {
    width: 100%;
  }

  .hero-card-dates .hero-card-field input,
  .hero-card-dates .hero-card-time .sc-select {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .hero-stat {
    padding: 0 14px 0 0;
  }

  .hero-stat strong {
    font-size: 1.25rem;
  }

  .hero-stat span {
    font-size: 0.7rem;
  }

  .hero-stat-sep {
    margin: 0 14px 0 0;
  }

  .sc-picker {
    width: 260px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .section-header h2 {
    font-size: 1.7rem;
  }

  .stat-item h3 {
    font-size: 2.2rem;
  }
}

/* ===== CUSTOM SELECT ===== */
.sc-select {
  position: relative;
  user-select: none;
}

.sc-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.sc-select-trigger:hover,
.sc-select.sc-open .sc-select-trigger {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
}

.sc-select-arrow {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.2s;
  line-height: 1;
}

.sc-select.sc-open .sc-select-arrow {
  transform: rotate(90deg);
}

.sc-dropdown-up {
  top: auto !important;
  bottom: calc(100% + 6px) !important;
  max-height: 200px;
  overflow-y: auto;
}

.sc-select-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: visible;
  z-index: 9999;
  box-shadow: none;
  animation: pickerFadeIn 0.15s ease;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sc-select.sc-open .sc-select-dropdown {
  display: block;
}

/* Time dropdown — opens down with custom scrollbar */
.sc-time-dropdown {
  max-height: 180px;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 12px;
  padding: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) rgba(255, 255, 255, 0.04);
}

.sc-time-dropdown::-webkit-scrollbar {
  width: 4px;
}

.sc-time-dropdown::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  margin: 6px 0;
}

.sc-time-dropdown::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

/* Category pills */
.cat-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 4px;
}

.cat-pill {
  padding: 8px 10px;
  border-radius: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}

.cat-pill:hover {
  background: rgba(232, 114, 42, 0.15);
  border-color: rgba(232, 114, 42, 0.5);
  color: var(--white);
}

.cat-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.sc-select-dropdown li {
  padding: 8px 12px;
  margin: 2px 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
}

.sc-select-dropdown li:hover {
  background: rgba(232, 114, 42, 0.15);
  color: var(--white);
}

.sc-select-dropdown li.sc-select-active {
  color: var(--primary);
  font-weight: 600;
  background: rgba(232, 114, 42, 0.1);
}

/* ===== CUSTOM DATEPICKER ===== */
.datepicker-wrap {
  position: relative;
}

.datepicker-wrap input {
  cursor: pointer;
  user-select: none;
}

.sc-picker {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 9999;
  width: 280px;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 16px;
  box-shadow: none;
  animation: pickerFadeIn 0.15s ease;
}

.sc-picker.sc-open {
  display: block;
}

@keyframes pickerFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sc-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.sc-month-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  text-transform: capitalize;
}

.sc-nav {
  background: rgba(255, 255, 255, 0.07);
  border: none;
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  line-height: 1;
}

.sc-nav:hover {
  background: rgba(255, 255, 255, 0.14);
}

.sc-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}

.sc-days-header span {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  padding: 4px 0;
}

.sc-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.sc-empty {
  visibility: hidden;
}

.sc-day {
  background: none;
  border: none;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
  font-family: inherit;
}

.sc-day:hover:not(.sc-past) {
  background: rgba(232, 114, 42, 0.2);
  color: var(--white);
}

.sc-day.sc-today {
  color: var(--primary);
  font-weight: 700;
}

.sc-day.sc-past {
  color: rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
}

.sc-day.sc-selected {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
}

.sc-day.sc-start {
  border-radius: 8px 0 0 8px;
}

.sc-day.sc-end {
  border-radius: 0 8px 8px 0;
}

.sc-day.sc-in-range {
  background: rgba(232, 114, 42, 0.18);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.85);
}

/* ===== ROAD STEP SVG ICONS ===== */
.road-step-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 114, 42, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  flex-shrink: 0;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.road-step:hover .road-step-icon {
  background: rgba(232, 114, 42, 0.08);
  border-color: rgba(232, 114, 42, 0.5);
}

.step-svg {
  width: 48px;
  height: 48px;
  overflow: visible;
}

/* --- Step 01 : Browse — cursor drifts toward car then clicks --- */
.step-svg--browse .step-cursor {
  animation: step-cursor-move 2.4s ease-in-out infinite;
  transform-origin: 40px 40px;
}
@keyframes step-cursor-move {
  0% {
    transform: translate(0px, 0px) scale(1);
    opacity: 1;
  }
  40% {
    transform: translate(-6px, -5px) scale(1);
    opacity: 1;
  }
  55% {
    transform: translate(-6px, -5px) scale(0.85);
    opacity: 1;
  }
  70% {
    transform: translate(-6px, -5px) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(0px, 0px) scale(1);
    opacity: 1;
  }
}

.step-svg--browse .step-screen-car {
  animation: step-screen-car-glow 2.4s ease-in-out infinite;
}
@keyframes step-screen-car-glow {
  0%,
  100% {
    opacity: 0.85;
  }
  55% {
    opacity: 1;
    filter: drop-shadow(0 0 4px rgba(232, 114, 42, 0.7));
  }
  70% {
    opacity: 1;
    filter: drop-shadow(0 0 4px rgba(232, 114, 42, 0.7));
  }
  80% {
    opacity: 0.85;
    filter: none;
  }
}

/* --- Step 02 : Form — check draws itself then fades, loops --- */
.step-svg--form .step-form-check {
  stroke-dasharray: 22;
  stroke-dashoffset: 22;
  animation: step-check-draw 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes step-check-draw {
  0% {
    stroke-dashoffset: 22;
    opacity: 1;
  }
  45% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  70% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  85% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
  100% {
    stroke-dashoffset: 22;
    opacity: 0;
  }
}

.step-svg--form .step-form-ring {
  animation: step-ring-pop 2s ease-in-out infinite;
  transform-origin: 42px 44px;
}
@keyframes step-ring-pop {
  0%,
  40% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  60% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

/* --- Step 03 : Go — dashes scroll up like the main road, car floats --- */
.step-svg--go .step-go-dash--1 {
  animation: step-go-scroll 1.4s linear 0s infinite;
}
.step-svg--go .step-go-dash--2 {
  animation: step-go-scroll 1.4s linear 0.35s infinite;
}
.step-svg--go .step-go-dash--3 {
  animation: step-go-scroll 1.4s linear 0.7s infinite;
}
.step-svg--go .step-go-dash--4 {
  animation: step-go-scroll 1.4s linear 1.05s infinite;
}

@keyframes step-go-scroll {
  0% {
    transform: translateY(0);
    opacity: 0.7;
  }
  80% {
    transform: translateY(-12px);
    opacity: 0;
  }
  100% {
    transform: translateY(-12px);
    opacity: 0;
  }
}

.step-svg--go .step-go-car {
  animation: step-go-car-drive 2.2s ease-in-out infinite;
  transform-origin: 28px 35px;
}
@keyframes step-go-car-drive {
  0% {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(4px);
  }
}

/* ===== CIRCUIT ROAD STEP 03 ===== */

/*
  SVG viewBox = 240 x 300
  Road center path (rx=20): M20,10 H220 Q240,10 240,30 V270 Q240,290 220,290 H20 Q0,290 0,270 V30 Q0,10 20,10 Z
  Card pixel size: width=240px, height=300px — same visual weight as other cards
*/

/* Route SVG overlay — positionée par-dessus la carte */
.circuit-road {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Contenu au-dessus du SVG */
.road-step--circuit
  > *:not(.circuit-road):not(.circuit-car-anim):not(.circuit-car-desktop) {
  position: relative;
  z-index: 2;
}

/* Badge parking P */
.parking-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #f59e0b;
  border: none;
  background: none;
}

/* Voiture animée desktop — par-dessus la route */
.circuit-car-desktop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}

/* Voiture animée autour de la carte — cachée sur desktop */
.circuit-car-anim {
  display: none;
  position: absolute;
  inset: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  pointer-events: none;
  z-index: 3;
  overflow: visible;
}

/* ===== NAV TRIGGER BUTTON ANIMATION ===== */
.nav-trigger {
  position: relative;
  overflow: hidden;
}

.nav-btn-text {
  display: inline-block;
  opacity: 1;
  transform: translateX(0);
  transition: none;
}

.nav-btn-arrow {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  vertical-align: text-top;
  display: inline-block;
  transition: transform 0.3s ease;
}

.nav-btn-car {
  position: absolute;
  left: -48px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  width: 28px;
  opacity: 0;
  transition: none;
  pointer-events: none;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
  z-index: 10;
}

/* When clicked - text with better contrast */
.nav-trigger.nav-driving .nav-btn-text {
  animation: text-contrast-cycle 1.5s ease forwards;
}

@keyframes text-contrast-cycle {
  0% {
    opacity: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    filter: none;
    transform: translateY(0);
  }
  15% {
    opacity: 1;
    text-shadow:
      0 0 6px rgba(255, 255, 255, 0.9),
      0 0 12px rgba(255, 255, 255, 0.7),
      0 0 18px rgba(255, 255, 255, 0.4),
      0 2px 6px rgba(0, 0, 0, 0.6);
    filter: contrast(1.15) brightness(1.08) saturate(1.1);
    transform: translateY(-1px);
  }
  50% {
    opacity: 1;
    text-shadow:
      0 0 8px rgba(255, 255, 255, 1),
      0 0 16px rgba(255, 255, 255, 0.8),
      0 0 24px rgba(255, 255, 255, 0.5),
      0 3px 8px rgba(0, 0, 0, 0.7);
    filter: contrast(1.2) brightness(1.12) saturate(1.15);
    transform: translateY(-1px);
  }
  85% {
    opacity: 1;
    text-shadow:
      0 0 6px rgba(255, 255, 255, 0.9),
      0 0 12px rgba(255, 255, 255, 0.7),
      0 0 18px rgba(255, 255, 255, 0.4),
      0 2px 6px rgba(0, 0, 0, 0.6);
    filter: contrast(1.15) brightness(1.08) saturate(1.1);
    transform: translateY(-1px);
  }
  100% {
    opacity: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    filter: none;
    transform: translateY(0);
  }
}

.nav-trigger.nav-driving .nav-btn-car {
  animation: btn-car-drive 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes btn-car-drive {
  0% {
    left: -48px;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    left: calc(100% + 50px);
    opacity: 0;
  }
}

/* ===== NAV LOADING OVERLAY ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay--active {
  opacity: 1;
  pointer-events: all;
}

/* Road strip */
.nav-overlay-road {
  position: relative;
  width: 80px;
  height: 260px;
  background: #1e2535;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-overlay-line--left,
.nav-overlay-line--right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #f59e0b;
  border-radius: 2px;
}
.nav-overlay-line--left {
  left: 12px;
}
.nav-overlay-line--right {
  right: 12px;
}

/* Scrolling dashes */
.nav-overlay-dashes {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.3) 0px,
    rgba(255, 255, 255, 0.3) 18px,
    transparent 18px,
    transparent 30px
  );
  animation: overlay-road-scroll 0.9s linear infinite;
}

@keyframes overlay-road-scroll {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 30px;
  }
}

/* Car driving up */
.nav-overlay-car {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.5));
  animation: overlay-car-drive 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.nav-overlay-car img {
  width: 42px;
  display: block;
}

@keyframes overlay-car-drive {
  0% {
    top: 85%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    top: -10%;
    opacity: 1;
  }
}

/* Text below */
.nav-overlay-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
  animation: overlay-text-pulse 1s ease-in-out infinite alternate;
}

@keyframes overlay-text-pulse {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 0.9;
  }
}

/* ===== ROAD SECTION ===== */
.road-section {
  padding: 80px 20px;
  background: var(--dark);
  overflow: hidden;
}

.road-header {
  text-align: center;
  margin-bottom: 56px;
}

.road-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: rgba(232, 114, 42, 0.12);
  border: 1px solid rgba(232, 114, 42, 0.25);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 14px;
}

.road-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.2;
}

.road-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* ---- Steps grid ---- */
.road-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Each step card */
.road-step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 114, 42, 0.15);
  border-radius: 20px;
}

/* Circuit card: route SVG remplace la bordure sur desktop */
.road-step.road-step--circuit {
  position: relative;
  overflow: visible;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
}

/* Arrow connector between cards */
.road-connector {
  flex-shrink: 0;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  margin: 0 8px;
}

.road-connector svg {
  width: 40px;
  height: 16px;
  overflow: visible;
}

/* Icon box */
.road-step-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 114, 42, 0.25);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
  flex-shrink: 0;
}

/* Hide background/border on circuit card icon - road SVG replaces it */
.road-step--circuit .road-step-icon,
.road-step--circuit:hover .road-step-icon,
.road-step--circuit.active .road-step-icon,
.road-step--circuit .road-step-icon:hover {
  background: none !important;
  border: none !important;
  border-color: transparent !important;
}

.road-step-num {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.8;
}

.road-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}

.road-step-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.6;
  margin: 0;
}

/* ---- Road section responsive ---- */

/* Tablette : connecteurs verticaux, cartes empilées */
@media (max-width: 900px) {
  .road-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 24px;
  }

  .road-step {
    width: 100%;
    max-width: 480px;
    flex: none;
    margin: 0 auto;
  }

  .road-step--circuit .circuit-road,
  .road-step--circuit .circuit-car-desktop {
    display: none;
  }

  .road-step--circuit .circuit-car-anim {
    display: block;
  }

  .road-step.road-step--circuit {
    border-color: rgba(232, 114, 42, 0.15);
  }

  /* Connecteurs : flèche vers le bas */
  .road-connector {
    width: auto;
    height: 40px;
    transform: rotate(90deg);
    margin: 8px 0;
  }
}

/* Mobile */
@media (max-width: 650px) {
  .road-steps {
    padding: 0 16px;
    align-items: stretch;
  }

  .road-step {
    width: 100%;
    max-width: 100%;
    padding: 22px 16px;
    gap: 10px;
    margin: 0 auto;
  }

  .road-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  .road-step-icon .step-svg {
    width: 40px;
    height: 40px;
  }

  .road-step-title {
    font-size: 0.95rem;
  }

  .road-step-desc {
    font-size: 0.78rem;
  }

  .road-step--circuit .circuit-road,
  .road-step--circuit .circuit-car-desktop {
    display: none;
  }

  .road-step--circuit .circuit-car-anim {
    display: block;
  }

  .road-step.road-step--circuit {
    border-color: rgba(232, 114, 42, 0.15);
  }

  .road-connector {
    align-self: center;
    height: 32px;
    margin: 10px 0;
  }

  .circuit-inner {
    padding: 20px 28px;
    gap: 10px;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .sandero-title {
    font-size: 0.95rem;
  }
  .sandero-price {
    font-size: 1.15rem;
  }
  .sandero-price-unit {
    font-size: 0.55rem;
  }
  .sandero-category {
    font-size: 0.6rem;
  }
  .sandero-header {
    gap: 6px;
  }
}

@media (max-width: 420px) {
  .sandero-title {
    font-size: 0.95rem;
  }
  .sandero-price {
    font-size: 1.15rem;
  }
  .sandero-price-unit {
    font-size: 0.55rem;
  }
  .sandero-category {
    font-size: 0.6rem;
  }
  .sandero-header {
    gap: 6px;
  }
}

/* Desktop: time icon stays at 18px to match calendar icon */
@media (min-width: 901px) {
  .time-label-icon {
    width: 18px;
    height: 18px;
  }

  .time-icon-wrap {
    width: 18px;
    height: 18px;
  }

  .time-icon-overlay {
    font-size: 0.5rem;
  }
}

/* ===== RESERVATION CONFIRMATION MODAL ===== */
.res-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.res-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.res-modal-box {
  background: linear-gradient(145deg, #1b2a4a 0%, #111a2e 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 40px 32px;
  width: 100%;
  max-width: 460px;
  text-align: center;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.3s ease;
}

.res-modal-overlay.open .res-modal-box {
  transform: translateY(0) scale(1);
}

.res-modal-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
  animation: modal-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes modal-pop {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.res-modal-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 12px;
}

.res-modal-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 16px;
}

.res-modal-ref-section {
  margin-bottom: 24px;
}

.res-modal-ref-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.res-modal-ref-container {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 12px;
}

.res-modal-ref {
  background: rgba(232, 114, 42, 0.12);
  border: 1px solid rgba(232, 114, 42, 0.3);
  color: #e8722a;
  font-size: 0.9rem;
  font-family: monospace;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
  flex: 1;
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.res-modal-copy-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
}

.res-modal-copy-btn:hover {
  background: #d96625;
  transform: scale(1.05);
}

.res-modal-ref-warning {
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.4);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #ffb300;
  text-align: left;
  line-height: 1.4;
}

.res-modal-ref-warning strong {
  color: #ff8f00;
}

.res-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.res-modal-btn-primary {
  display: block;
  padding: 13px 20px;
  background: #e8722a;
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition:
    background 0.2s,
    transform 0.2s;
}

.res-modal-btn-primary:hover {
  background: #c85f1f;
  transform: translateY(-1px);
}

.res-modal-btn-secondary {
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.2s;
}

.res-modal-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 480px) {
  .res-modal-box {
    padding: 30px 20px;
  }

  .res-modal-title {
    font-size: 1.3rem;
  }
}
