/* =========================================================
   DEFI AUTOS 42 — Stylesheet
   Aesthetic: editorial automotive, bold typography, dark mode
   ========================================================= */

:root {
  --navy: #0a1733;
  --navy-deep: #050d20;
  --navy-soft: #11214a;
  --red: #e1162b;
  --red-deep: #b30f22;
  --white: #ffffff;
  --grey-100: #f4f5f7;
  --grey-300: #c9ccd4;
  --grey-500: #6b7180;
  --grey-700: #2c3142;
  --grey-900: #15192a;
  --radius: 4px;
  --radius-lg: 14px;
  --container: 1280px;
  --transition: 320ms cubic-bezier(.2,.7,.3,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy-deep);
  color: var(--white);
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }

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

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(5, 13, 32, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo img {
  height: 52px;
  width: auto;
  transition: transform var(--transition);
}
.nav-logo:hover img { transform: scale(1.05); }
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--red);
  color: var(--white);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-cta:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(225,22,43,0.35);
}
.nav-cta .dot {
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span {
  width: 26px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(225,22,43,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(17,33,74,1) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-300);
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease;
}
.hero-tag .pulse {
  width: 8px; height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(46,204,113,0.6);
  animation: pulseGreen 2s infinite;
}
@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(46,204,113,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}
.hero-title {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin: 0 0 36px;
  text-transform: uppercase;
}
.hero-title .line {
  display: block;
  animation: fadeUp 0.9s cubic-bezier(.2,.7,.3,1) both;
}
.hero-title .line:nth-child(1) { animation-delay: 0.05s; }
.hero-title .line:nth-child(2) { animation-delay: 0.18s; }
.hero-title .line:nth-child(3) { animation-delay: 0.31s; }
.hero-title .line:nth-child(4) { animation-delay: 0.44s; }
.hero-title .red {
  color: var(--red);
  font-style: italic;
  padding-left: 0.6em;
}
.hero-title .accent {
  position: relative;
  padding-left: 1.2em;
}
.hero-title .accent::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.9em;
  height: 6px;
  background: var(--red);
  transform: translateY(-50%);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  max-width: 560px;
  font-size: 18px;
  color: var(--grey-300);
  margin: 0 0 44px;
  animation: fadeUp 0.9s ease 0.55s both;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
  animation: fadeUp 0.9s ease 0.65s both;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(225,22,43,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-full { width: 100%; justify-content: center; }
.btn-small { padding: 10px 18px; font-size: 12px; }
.btn-danger { background: var(--red-deep); color: var(--white); }
.btn-danger:hover { background: #8a0816; }

.hero-stats {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp 0.9s ease 0.75s both;
}
.hero-stats > div {
  display: flex;
  flex-direction: column;
}
.hero-stats strong {
  font-family: 'Anton', sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero-stats span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-500);
  margin-top: 6px;
}
.stat-rating {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition);
  cursor: pointer;
}
.stat-rating:hover { transform: translateY(-4px); }
.stat-rating:hover span { color: var(--white); }
.stat-rating strong {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.stat-rating .star {
  font-family: 'Archivo', sans-serif;
  font-size: 36px;
  color: #ffb800;
  font-weight: 400;
}
.hero-marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--red);
  padding: 14px 0;
  overflow: hidden;
  z-index: 3;
  transform: rotate(-1deg) translateY(20px);
  margin: 0 -40px;
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: var(--white);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SECTION HEAD ============ */
.section-head {
  margin-bottom: 72px;
  max-width: 720px;
}
.eyebrow {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.section-head h2 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.section-head h2 em {
  font-style: italic;
  color: var(--red);
  font-weight: 400;
}
.section-lead {
  font-size: 17px;
  color: var(--grey-300);
  margin: 0;
}

/* ============ SERVICES ============ */
.services {
  padding: 140px 0;
  background: var(--navy-deep);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--navy);
  padding: 48px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(.2,.7,.3,1);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225,22,43,0.3);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: linear-gradient(135deg, var(--navy-soft) 0%, var(--navy) 100%);
  border-color: rgba(225,22,43,0.2);
}
.service-num {
  font-family: 'Anton', sans-serif;
  font-size: 80px;
  line-height: 1;
  color: rgba(225,22,43,0.15);
  margin-bottom: 24px;
}
.service-card h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 42px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.service-card p {
  color: var(--grey-300);
  margin: 0 0 24px;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-card li {
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  color: var(--grey-300);
  position: relative;
  padding-left: 24px;
}
.service-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: bold;
}

/* ============ VEHICULES ============ */
.vehicules {
  padding: 140px 0;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}
.filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.filter-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey-300);
  transition: all var(--transition);
}
.chip:hover { border-color: var(--white); color: var(--white); }
.chip.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.filter-sort select {
  padding: 10px 16px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.vehicle-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.vehicle-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225,22,43,0.4);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.vehicle-photo {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--grey-900);
  overflow: hidden;
}
.vehicle-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.7,.3,1);
}
.vehicle-card:hover .vehicle-photo img { transform: scale(1.06); }
.vehicle-photo-empty {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 60px;
  color: rgba(255,255,255,0.08);
}
.vehicle-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 12px;
  background: var(--red);
  color: var(--white);
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.vehicle-info { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.vehicle-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.vehicle-sub {
  font-size: 13px;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.vehicle-specs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 0 20px;
  font-size: 13px;
  color: var(--grey-300);
}
.vehicle-specs span { display: flex; align-items: center; gap: 6px; }
.vehicle-specs span::before { content: '•'; color: var(--red); }
.vehicle-price {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  color: var(--red);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--grey-500);
  font-size: 18px;
}

/* ============ A PROPOS ============ */
.apropos {
  padding: 140px 0;
  background: var(--navy);
  position: relative;
}
.apropos-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.apropos-text h2 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  margin: 0 0 28px;
}
.apropos-text h2 em { font-style: italic; color: var(--red); }
.apropos-text p {
  font-size: 17px;
  color: var(--grey-300);
  margin: 0 0 20px;
}
.apropos-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.apropos-points > div {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  background: var(--navy-deep);
  border-radius: var(--radius);
  font-size: 14px;
}
.apropos-points strong { color: var(--red); font-size: 18px; }
.apropos-card {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  padding: 48px 36px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.card-stripe {
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.08);
  transform: rotate(45deg);
}
.apropos-card h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 42px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  line-height: 0.95;
}
.apropos-card p { margin: 0 0 28px; font-size: 16px; }
.apropos-card .btn {
  background: var(--navy-deep);
  color: var(--white);
}
.apropos-card .btn:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ============ REPRISE FORMULAIRE ============ */
.reprise {
  padding: 140px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  position: relative;
}
.reprise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.reprise-intro .eyebrow { margin-bottom: 20px; }
.reprise-intro h2 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
}
.reprise-intro h2 em { font-style: italic; color: var(--red); }
.reprise-intro > p {
  font-size: 17px;
  color: var(--grey-300);
  margin: 0 0 36px;
}
.reprise-intro > p strong { color: var(--white); }
.reprise-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.rs {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  background: var(--navy);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.rs strong {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  color: var(--red);
  line-height: 1;
}
.rs span { font-size: 15px; color: var(--grey-300); }
.reprise-direct {
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
}
.reprise-direct p {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.reprise-direct-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.reprise-direct-btns .btn { padding: 12px 18px; font-size: 13px; }

.reprise-form {
  background: var(--navy);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 100px;
}
.reprise-form h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.reprise-form label {
  display: block;
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  font-weight: 600;
}
.reprise-form input,
.reprise-form select,
.reprise-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 13px 16px;
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  transition: border-color var(--transition);
}
.reprise-form input:focus,
.reprise-form select:focus,
.reprise-form textarea:focus {
  outline: none;
  border-color: var(--red);
}
.reprise-form textarea { resize: vertical; min-height: 90px; }
.reprise-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-note {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--grey-500);
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
}

/* ============ CONTACT ============ */
.contact {
  padding: 140px 0;
  background: var(--navy-deep);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
}
.contact-lead {
  font-size: 17px;
  color: var(--grey-300);
  margin: 0 0 40px;
}
.contact-block {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.contact-label {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 8px;
}
.contact-value {
  font-family: 'Archivo', sans-serif;
  font-size: 18px;
  font-weight: 500;
}
.contact-value a:hover { color: var(--red); }
.contact-map {
  position: relative;
  height: 540px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.contact-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.3) contrast(0.9);
}
.map-link {
  position: absolute;
  bottom: 20px; right: 20px;
  padding: 12px 18px;
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.map-link:hover {
  background: var(--red);
  color: var(--white);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 60px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand img { height: 80px; margin-bottom: 16px; }
.footer-brand p { color: var(--grey-500); font-size: 14px; margin: 0; }
.footer-col h4 {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin: 0 0 16px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 14px;
  color: var(--grey-300);
  padding: 6px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--red); cursor: pointer; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 32px;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--grey-500);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============ MODAL ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,13,32,0.85);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-content {
  position: relative;
  background: var(--navy);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  border: 1px solid rgba(255,255,255,0.1);
  animation: modalIn 0.4s cubic-bezier(.2,.7,.3,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  z-index: 10;
  transition: all var(--transition);
}
.modal-close:hover {
  background: var(--red);
  transform: rotate(90deg);
}

/* Modal vehicle detail */
.vd-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  background: var(--navy-deep);
}
.vd-main-photo {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--grey-900);
}
.vd-main-photo img { width: 100%; height: 100%; object-fit: cover; }
.vd-thumbs {
  display: flex;
  gap: 6px;
  padding: 6px;
  overflow-x: auto;
}
.vd-thumbs img {
  width: 90px; height: 60px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition);
}
.vd-thumbs img.active, .vd-thumbs img:hover { opacity: 1; }
.vd-body { padding: 36px; }
.vd-body h2 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.vd-price {
  font-family: 'Anton', sans-serif;
  font-size: 48px;
  color: var(--red);
  margin: 20px 0;
}
.vd-specs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
  margin: 24px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.vd-spec-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 4px;
}
.vd-spec-value { font-size: 16px; font-weight: 600; }
.vd-description {
  color: var(--grey-300);
  line-height: 1.7;
  margin: 20px 0;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.vd-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ============ ADMIN ============ */
.admin-modal .modal-content { max-width: 1000px; }
.admin-content { padding: 0; }
.admin-section { padding: 40px; }
.admin-section h2 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 36px;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.admin-section > p { color: var(--grey-300); margin: 0 0 24px; }
.admin-hint {
  margin-top: 16px;
  font-size: 13px;
  color: var(--grey-500);
}
.admin-hint code {
  background: var(--navy-deep);
  padding: 3px 8px;
  border-radius: 4px;
  color: var(--red);
}
#admin-pwd {
  width: 100%;
  padding: 14px 18px;
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 16px;
  margin-bottom: 16px;
}
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-header h2 { margin: 0; }
.admin-tabs {
  display: flex;
  gap: 0;
  padding: 0 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-tab {
  padding: 16px 22px;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-500);
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}
.admin-tab:hover { color: var(--white); }
.admin-tab.active {
  color: var(--white);
  border-bottom-color: var(--red);
}
.admin-tab-content { padding: 32px 36px; }
.admin-tab-content[hidden] { display: none; }

#admin-vehicle-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.admin-vehicle-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  background: var(--navy-deep);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
}
.admin-vehicle-row img {
  width: 80px; height: 60px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--grey-900);
}
.avr-info strong {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}
.avr-info span { font-size: 13px; color: var(--grey-500); }
.avr-actions { display: flex; gap: 8px; }
.avr-actions button {
  padding: 8px 14px;
  background: var(--navy);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.avr-actions button:hover { background: var(--red); }

/* Form */
#vehicle-form label {
  display: block;
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  font-weight: 600;
}
#vehicle-form input,
#vehicle-form select,
#vehicle-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 16px;
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
#vehicle-form textarea { resize: vertical; min-height: 80px; }
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}
.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.file-upload {
  display: block;
  padding: 18px;
  background: var(--navy-deep);
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: 16px;
}
.file-upload:hover {
  border-color: var(--red);
  background: rgba(225,22,43,0.05);
}
.file-upload span {
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--grey-300);
}
.file-upload input { display: none; }
.photo-preview {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.photo-preview .pp-item {
  position: relative;
  width: 80px; height: 60px;
}
.photo-preview .pp-uploading {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 4px;
  font-size: 22px;
  animation: pulse-upload 1.5s infinite;
}
@keyframes pulse-upload {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.photo-preview img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.photo-preview .pp-remove {
  position: absolute;
  top: -6px; right: -6px;
  width: 22px; height: 22px;
  background: var(--red);
  border-radius: 50%;
  color: var(--white);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: 1fr; }
  .apropos-grid, .contact-grid, .reprise-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .apropos-card, .reprise-form { position: static; }
}
@media (max-width: 768px) {
  .container, .nav-inner, .hero-content { padding: 0 20px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  body.menu-open .nav-links {
    display: flex;
    position: fixed;
    top: 88px; left: 0; right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-cta { padding: 10px 16px; font-size: 12px; }
  .nav-logo img { height: 42px; }
  .hero { padding: 120px 0 100px; }
  .hero-stats { gap: 30px; }
  .hero-stats strong { font-size: 42px; }
  .services, .vehicules, .apropos, .contact, .reprise { padding: 90px 0; }
  .reprise-form { padding: 28px 20px; }
  .reprise-form .form-row { grid-template-columns: 1fr; }
  .filters { flex-direction: column; align-items: stretch; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .apropos-points { grid-template-columns: 1fr; }
  .vd-body { padding: 24px; }
  .vd-body h2 { font-size: 32px; }
  .vd-price { font-size: 36px; }
  .admin-section, .admin-tab-content { padding: 24px 20px; }
  .admin-header { padding: 20px; }
  .admin-tabs { padding: 0 12px; overflow-x: auto; }
  .admin-tab { white-space: nowrap; font-size: 12px; padding: 14px 12px; }
}
