/* =========================================================
   Global Pro Business — Parc Automobile
   Feuille de style principale
   ========================================================= */

:root {
  --navy-950: #060b1a;
  --navy-900: #081027;
  --navy-800: #0b1938;
  --navy-700: #102249;
  --navy-600: #16305f;
  --cyan-400: #22d3ee;
  --cyan-300: #67e8f9;
  --cyan-glow: rgba(34, 211, 238, 0.35);
  --silver-200: #e2e8f0;
  --silver-400: #94a3b8;
  --white: #ffffff;
  --off-white: #f4f7fb;
  --success: #22c55e;
  --whatsapp: #25d366;

  --font-heading: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --shadow-soft: 0 10px 40px rgba(6, 11, 26, 0.12);
  --shadow-strong: 0 20px 60px rgba(6, 11, 26, 0.35);

  --container-w: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--navy-900);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy-950);
  line-height: 1.15;
  font-weight: 600;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-400);
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  padding: 6px 16px;
  border-radius: 999px;
}

.eyebrow.dark {
  color: var(--navy-800);
  background: rgba(11, 25, 56, 0.06);
  border-color: rgba(11, 25, 56, 0.15);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 14px 0 12px;
}

.section-head p {
  color: var(--silver-400);
  font-size: 1.05rem;
}

.section-pad {
  padding: 90px 0;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan-400), #0ea5c4);
  color: var(--navy-950);
  box-shadow: 0 12px 30px var(--cyan-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px var(--cyan-glow);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--navy-950);
  color: var(--white);
}

.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.btn-outline {
  background: transparent;
  color: var(--navy-950);
  border: 1.5px solid rgba(11, 25, 56, 0.25);
}

.btn-outline:hover {
  border-color: var(--navy-950);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(37, 211, 102, 0.4);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 11px 22px;
  font-size: 0.85rem;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 18px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header.solid {
  background: rgba(6, 11, 26, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 8px 30px rgba(6, 11, 26, 0.25);
}

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

.brand img {
  height: 42px;
  width: auto;
}

.brand-text {
  font-family: var(--font-heading);
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.brand-text span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-300);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: var(--silver-200);
  font-weight: 500;
  font-size: 0.94rem;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--cyan-400);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  z-index: 600;
}

.nav-toggle span {
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ---------- Hero Slider ---------- */

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--navy-950);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 7s ease;
}

.hero-slide.active img {
  transform: scale(1);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 11, 26, 0.55) 0%, rgba(6, 11, 26, 0.35) 35%, rgba(6, 11, 26, 0.85) 100%),
    linear-gradient(90deg, rgba(6, 11, 26, 0.92) 0%, rgba(6, 11, 26, 0.35) 55%, rgba(6, 11, 26, 0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 60px;
}

.hero-text {
  max-width: 620px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease 0.35s, transform 0.8s ease 0.35s;
}

.hero-slide.active .hero-text {
  opacity: 1;
  transform: translateY(0);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-950);
  background: var(--cyan-400);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero-text h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-text .hero-sub {
  color: var(--silver-200);
  font-size: 1.15rem;
  margin: 20px 0 34px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-specs {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-specs div {
  color: var(--white);
}

.hero-specs strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--cyan-300);
}

.hero-specs span {
  font-size: 0.8rem;
  color: var(--silver-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-nav {
  position: absolute;
  z-index: 20;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%) scale(1.06);
}

.hero-nav.prev { left: 28px; }
.hero-nav.next { right: 28px; }

.hero-dots {
  position: absolute;
  z-index: 20;
  bottom: 40px;
  right: 6%;
  display: flex;
  gap: 12px;
}

.hero-dots button {
  width: 46px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.hero-dots button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cyan-400);
  transform: scaleX(0);
  transform-origin: left;
}

.hero-dots button.active::before {
  animation: dotfill 6.2s linear forwards;
}

@keyframes dotfill {
  to { transform: scaleX(1); }
}

.hero-scroll {
  position: absolute;
  z-index: 20;
  bottom: 42px;
  left: 6%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--silver-200);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-scroll .line {
  width: 32px;
  height: 1px;
  background: var(--silver-400);
}

/* ---------- Trust bar ---------- */

.trust-bar {
  background: var(--navy-950);
  padding: 34px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.trust-item .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
  flex-shrink: 0;
}

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

.trust-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.trust-item p {
  font-size: 0.8rem;
  color: var(--silver-400);
}

/* ---------- Catalogue ---------- */

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

.car-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

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

.car-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy-900);
}

.car-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.car-card:hover .car-card-media img {
  transform: scale(1.08);
}

.car-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--cyan-400);
  color: var(--navy-950);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  z-index: 5;
}

.car-card-body {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.car-card-body .brand-line {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan-400);
}

.brand-logo {
  height: 22px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.car-card-body h3 {
  font-size: 1.35rem;
}

.car-card-body p.desc {
  color: var(--silver-400);
  font-size: 0.92rem;
  flex: 1;
}

.spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 6px;
}

.spec-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy-800);
  background: var(--off-white);
  border: 1px solid rgba(11, 25, 56, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.spec-tags svg {
  width: 13px;
  height: 13px;
  color: var(--cyan-400);
}

.car-card-actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

/* ---------- Why us ---------- */

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

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.why-media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.why-media-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(6, 11, 26, 0.75);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 16px;
}

.why-media-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--cyan-300);
}

.why-media-badge span {
  font-size: 0.78rem;
  color: var(--silver-200);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 30px;
}

.why-list li {
  display: flex;
  gap: 18px;
}

.why-list .num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy-950);
  color: var(--cyan-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
}

.why-list h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.why-list p {
  color: var(--silver-400);
  font-size: 0.92rem;
}

/* ---------- CTA banner ---------- */

.cta-banner {
  position: relative;
  background: linear-gradient(120deg, var(--navy-950), var(--navy-700));
  border-radius: var(--radius-lg);
  padding: 64px 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--cyan-glow), transparent 70%);
  top: -160px;
  right: -100px;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  max-width: 520px;
  position: relative;
  z-index: 2;
}

.cta-banner p {
  color: var(--silver-300, var(--silver-200));
  margin-top: 10px;
  max-width: 460px;
  position: relative;
  z-index: 2;
}

.cta-banner .cta-actions {
  display: flex;
  gap: 14px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-950);
  color: var(--silver-200);
  padding: 70px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  height: 44px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--silver-400);
  font-size: 0.9rem;
  max-width: 280px;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-row a:hover {
  background: var(--cyan-400);
  color: var(--navy-950);
  transform: translateY(-3px);
}

.social-row svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

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

.footer-col a, .footer-col span {
  color: var(--silver-400);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--cyan-300);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  color: var(--cyan-400);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--silver-400);
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.08); }
}

/* ---------- Modal (contact / order) ---------- */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(6, 11, 26, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 36px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
}

.modal-box h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  padding-right: 30px;
}

.modal-box .modal-sub {
  color: var(--silver-400);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.modal-vehicle {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 22px;
}

.modal-vehicle img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
}

.modal-vehicle strong {
  font-size: 0.92rem;
  display: block;
}

.modal-vehicle span {
  font-size: 0.78rem;
  color: var(--silver-400);
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy-800);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 10px;
  border: 1.5px solid #e1e6ee;
  font-family: inherit;
  font-size: 0.92rem;
  background: var(--off-white);
  transition: border-color 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan-400);
  background: var(--white);
}

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

.form-note {
  font-size: 0.76rem;
  color: var(--silver-400);
  text-align: center;
  margin-top: 12px;
}

.privacy-note{
  font-size: 0.72rem;
  color: var(--silver-400);
  margin-top: -6px;
  margin-bottom: 16px;
}

/* ---------- Vehicle detail page ---------- */

.breadcrumb {
  padding: 130px 0 20px;
  font-size: 0.85rem;
  color: var(--silver-400);
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: var(--navy-800);
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--cyan-400);
}

.detail-wrap {
  padding: 20px 0 90px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: flex-start;
}

.gallery-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--navy-900);
  box-shadow: var(--shadow-soft);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  inset: 0;
  transition: opacity 0.4s ease;
}

.gallery-main img.active {
  opacity: 1;
  position: relative;
}

.gallery-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 5;
  background: var(--cyan-400);
  color: var(--navy-950);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
}

.gallery-count {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 5;
  background: rgba(6, 11, 26, 0.6);
  color: var(--white);
  font-size: 0.78rem;
  padding: 6px 13px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.gallery-illustration-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 5;
  align-items: center;
  background: rgba(6, 11, 26, 0.6);
  color: var(--silver-200);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.gallery-thumbs button {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.gallery-thumbs button.active {
  opacity: 1;
  border-color: var(--cyan-400);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info .brand-line {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-400);
  margin-bottom: 8px;
  display: block;
}

.brand-logo-lg {
  height: 34px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 14px;
}

.detail-info h1 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin-bottom: 14px;
}

.detail-info .tagline {
  color: var(--silver-400);
  font-size: 1rem;
  margin-bottom: 24px;
}

.availability-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #16a34a;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.availability-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulseDot 1.6s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.detail-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.specs-table {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 6px 24px;
  margin-bottom: 28px;
}

.specs-table .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #eef1f6;
  font-size: 0.92rem;
}

.specs-table .row:last-child {
  border-bottom: none;
}

.specs-table .row .label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--silver-400);
}

.specs-table .row .label svg {
  width: 16px;
  height: 16px;
  color: var(--cyan-400);
}

.specs-table .row .value {
  font-weight: 600;
  color: var(--navy-900);
}

.price-note {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--off-white);
  border: 1px dashed #c7d0dd;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-size: 0.86rem;
  color: var(--navy-800);
}

.price-note svg {
  width: 20px;
  height: 20px;
  color: var(--cyan-400);
  flex-shrink: 0;
}

.description-block {
  margin-top: 60px;
  max-width: 780px;
}

.description-block h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.description-block p {
  color: var(--silver-400);
  margin-bottom: 14px;
}

.equip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.equip-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--navy-800);
}

.equip-grid svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
}

.other-vehicles {
  margin-top: 80px;
}

.other-vehicles h2 {
  font-size: 1.5rem;
  margin-bottom: 28px;
}

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

/* ---------- Page banner (sous-pages) ---------- */

.page-banner {
  position: relative;
  background: linear-gradient(120deg, var(--navy-950), var(--navy-700));
  padding: 150px 0 70px;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--cyan-glow), transparent 70%);
  top: -220px;
  right: -120px;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 14px;
}

.page-banner p {
  color: var(--silver-200);
  max-width: 560px;
  margin-top: 14px;
  font-size: 1.05rem;
}

/* ---------- Coming soon cards (accessoires) ---------- */

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

.soon-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.soon-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.soon-card .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
  margin: 0 auto 20px;
}

.soon-card .icon svg {
  width: 30px;
  height: 30px;
}

.soon-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.soon-card p {
  color: var(--silver-400);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.soon-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--off-white);
  border: 1px solid rgba(11, 25, 56, 0.1);
  color: var(--navy-800);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

/* ---------- Chatbot conseiller virtuel ---------- */

.gpb-chat-toggle {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 400;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-400), #0ea5c4);
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px var(--cyan-glow);
  transition: transform 0.25s ease;
}

.gpb-chat-toggle:hover {
  transform: translateY(-3px);
}

.gpb-chat-toggle svg {
  width: 28px;
  height: 28px;
}

.gpb-chat-toggle.open svg {
  display: none;
}

.gpb-chat-toggle.open::after {
  content: "";
  width: 16px;
  height: 16px;
  background: none;
  border-left: 2.5px solid var(--navy-950);
  border-top: 2.5px solid var(--navy-950);
  transform: rotate(-135deg);
  position: absolute;
}

.gpb-chat-ping {
  position: absolute;
  top: -3px;
  left: -3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ef4444;
  border: 2px solid var(--white);
  animation: floatPulse 2s ease-in-out infinite;
}

.gpb-chat-panel {
  position: fixed;
  bottom: 100px;
  right: 26px;
  z-index: 400;
  width: 360px;
  max-width: calc(100vw - 40px);
  height: 520px;
  max-height: calc(100vh - 140px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.gpb-chat-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.gpb-chat-header {
  background: var(--navy-950);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.gpb-chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.15);
  color: var(--cyan-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gpb-chat-avatar svg {
  width: 20px;
  height: 20px;
}

.gpb-chat-title {
  flex: 1;
  min-width: 0;
}

.gpb-chat-title strong {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.92rem;
}

.gpb-chat-title span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--silver-400);
  font-size: 0.75rem;
  margin-top: 2px;
}

.gpb-chat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
}

.gpb-chat-close {
  color: var(--silver-200);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gpb-chat-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.gpb-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--off-white);
}

.gpb-bubble {
  max-width: 85%;
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 0.87rem;
  line-height: 1.45;
}

.gpb-bubble.bot {
  background: var(--white);
  color: var(--navy-900);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(11, 25, 56, 0.06);
}

.gpb-bubble.user {
  background: var(--navy-950);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.gpb-chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid #eef1f6;
  flex-shrink: 0;
}

.gpb-chat-quick button {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--off-white);
  border: 1px solid rgba(11, 25, 56, 0.1);
  color: var(--navy-800);
  transition: background 0.2s ease, color 0.2s ease;
}

.gpb-chat-quick button:hover {
  background: var(--navy-950);
  color: var(--white);
}

.gpb-chat-quick button.highlight {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}

.gpb-chat-form {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid #eef1f6;
  flex-shrink: 0;
}

.gpb-chat-form input {
  flex: 1;
  border: 1.5px solid #e1e6ee;
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 0.85rem;
  font-family: inherit;
  background: var(--off-white);
}

.gpb-chat-form input:focus {
  outline: none;
  border-color: var(--cyan-400);
  background: var(--white);
}

.gpb-chat-form button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gpb-chat-form button svg {
  width: 18px;
  height: 18px;
}

.gpb-chat-teaser {
  position: fixed;
  bottom: 96px;
  right: 26px;
  z-index: 399;
  max-width: 230px;
  background: var(--white);
  color: var(--navy-900);
  padding: 12px 16px;
  border-radius: 16px;
  border-bottom-right-radius: 4px;
  box-shadow: var(--shadow-strong);
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.gpb-chat-teaser.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gpb-chat-teaser button {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gpb-chat-teaser button svg {
  width: 11px;
  height: 11px;
}

.gpb-typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 2px;
}

.gpb-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--silver-400);
  animation: typingBounce 1.1s ease-in-out infinite;
}

.gpb-typing span:nth-child(2) { animation-delay: 0.15s; }
.gpb-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* ---------- Preloader ---------- */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(34, 211, 238, 0.15);
  border-top-color: var(--cyan-400);
  animation: preloaderSpin 1s linear infinite;
}

.preloader-logo {
  width: 60px;
  height: 60px;
  animation: preloaderPulse 1.4s ease-in-out infinite;
  filter: drop-shadow(0 0 16px rgba(34, 211, 238, 0.55));
}

@keyframes preloaderSpin {
  to { transform: rotate(360deg); }
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}

@media (max-width: 620px) {
  .gpb-chat-toggle { right: 18px; bottom: 18px; }
  .gpb-chat-panel { right: 12px; bottom: 90px; width: calc(100vw - 24px); }
  .gpb-chat-teaser { right: 18px; bottom: 88px; }
  .soon-grid { grid-template-columns: 1fr; }
}

/* ---------- Simulateur de location ---------- */

.sim-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 44px 48px;
}

.sim-progress {
  height: 5px;
  background: var(--off-white);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
}

.sim-progress-bar {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--cyan-400), #0ea5c4);
  border-radius: 4px;
  transition: width 0.4s ease;
}

.sim-step-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-400);
  margin-bottom: 10px;
  display: block;
}

.sim-step h2 {
  font-size: 1.45rem;
  margin-bottom: 24px;
}

.sim-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.sim-budget {
  background: var(--off-white);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
}

.sim-budget-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 24px;
}

.sim-budget-value span {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--silver-400);
  margin-left: 6px;
}

.sim-budget input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--cyan-400), #0ea5c4);
  outline: none;
  cursor: pointer;
}

.sim-budget input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--cyan-400);
  box-shadow: 0 4px 10px rgba(6, 11, 26, 0.25);
  cursor: pointer;
}

.sim-budget input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--cyan-400);
  box-shadow: 0 4px 10px rgba(6, 11, 26, 0.25);
  cursor: pointer;
}

.sim-budget-bounds {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--silver-400);
  font-weight: 600;
}

.sim-option {
  background: var(--off-white);
  border: 1.5px solid transparent;
  border-radius: 14px;
  padding: 20px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.sim-option:hover {
  border-color: var(--cyan-400);
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.sim-option .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(34, 211, 238, 0.12);
  color: var(--cyan-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.sim-option strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy-900);
  margin-bottom: 3px;
}

.sim-option span {
  font-size: 0.78rem;
  color: var(--silver-400);
}

.sim-back {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--silver-400);
}

.sim-back svg {
  width: 15px;
  height: 15px;
}

.sim-back:hover {
  color: var(--navy-900);
}

.sim-result {
  text-align: center;
}

.sim-result .badge-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--cyan-400);
}

.sim-result .badge-icon svg {
  width: 40px;
  height: 40px;
}

.sim-result .eyebrow {
  margin-bottom: 14px;
}

.sim-result h2 {
  font-size: 1.6rem;
}

.sim-result .profile-desc {
  color: var(--silver-400);
  margin: 14px auto 28px;
  max-width: 480px;
}

.sim-recap {
  background: var(--off-white);
  border-radius: 14px;
  padding: 6px 22px;
  text-align: left;
  margin: 0 auto 30px;
  max-width: 460px;
}

.sim-recap .row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid #e5e9f0;
  font-size: 0.85rem;
}

.sim-recap .row:last-child {
  border-bottom: none;
}

.sim-recap .row .label {
  color: var(--silver-400);
}

.sim-recap .row .value {
  font-weight: 600;
  color: var(--navy-900);
  text-align: right;
}

.sim-result-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.sim-restart {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--silver-400);
}

.sim-restart:hover {
  color: var(--navy-900);
}

@media (max-width: 620px) {
  .sim-card { padding: 30px 22px; }
  .sim-options { grid-template-columns: 1fr; }
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--navy-950);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 550;
  }

  .nav-links.open a { font-size: 1.3rem; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; }
  .why-media img { height: 340px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .equip-grid { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 44px 28px; text-align: center; justify-content: center; }
  .cta-banner p { margin-left: auto; margin-right: auto; }
}

@media (max-width: 620px) {
  .hero-nav { width: 42px; height: 42px; }
  .hero-nav.prev { left: 14px; }
  .hero-nav.next { right: 14px; }
  .hero-scroll { display: none; }
  .hero-dots { right: 50%; transform: translateX(50%); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-pad { padding: 64px 0; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
}
