/* ═══════════════════════════════════════
   FALAM — CSS Production-Grade
   Fédération des Agences de Location
   d'Automobiles au Maroc
   ═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* FALAM Brand Colors — bleu fédéral + or */
  --navy:      #0a1628;
  --navy2:     #071020;
  --navy3:     #0f2040;
  --blue:      #1a3a6c;
  --blue2:     #1e4585;
  --blue-l:    #e8f0fb;
  --gold:      #f7931e;
  --gold2:     #e8820a;
  --gold-l:    #fff4e8;
  --silver:    #94a3b8;
  --white:     #ffffff;
  --bg:        #f4f6fa;
  --border:    #dde3ed;
  --muted:     #64748b;
  --text:      #0f172a;
  --shadow:    0 4px 20px rgba(10,22,40,.1);
  --shadow-lg: 0 16px 48px rgba(10,22,40,.14);
  --radius:    14px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: 'Poppins', sans-serif; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ANIMATIONS */
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes pulse  { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.85)} }
@keyframes float  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes shine  {
  0%   { transform: translateX(-100%) skewX(-20deg); }
  100% { transform: translateX(300%) skewX(-20deg); }
}

.afu { animation: fadeUp .75s cubic-bezier(.22,1,.36,1) both; }
.d1  { animation-delay: .1s; }
.d2  { animation-delay: .2s; }
.d3  { animation-delay: .3s; }
.d4  { animation-delay: .4s; }

.aos {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.aos.visible { opacity: 1; transform: translateY(0); }

/* TOPBAR */
.topbar {
  background: var(--navy2);
  color: #4a7ab5;
  font-size: 12px;
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: .2px;
}
.topbar a { color: #4a7ab5; margin-left: 16px; transition: color .2s; font-weight: 500; }
.topbar a:hover { color: var(--gold); }
.topbar-contact { display: flex; align-items: center; gap: 16px; }
.topbar-contact span { display: flex; align-items: center; gap: 6px; }

/* NAVBAR */
.navbar {
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 1000;
  backdrop-filter: blur(14px);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(10,22,40,.12); }
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  height: 76px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-brand-logo {
  display: flex; align-items: center; gap: 10px;
}
.brand-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 900; font-size: 18px; color: var(--gold);
  letter-spacing: -1px;
  box-shadow: 0 2px 10px rgba(10,22,40,.25);
}
.brand-text { line-height: 1.1; }
.brand-name { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 900; color: var(--navy); letter-spacing: -.5px; }
.brand-sub  { font-size: 10px; color: var(--muted); font-weight: 500; letter-spacing: .3px; }
.nav-separator { width: 1px; height: 32px; background: var(--border); }
.nav-partner { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); font-weight: 500; }
.nav-partner img { height: 28px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 14px; color: var(--muted);
  padding: 7px 13px; border-radius: var(--radius-sm);
  font-weight: 500; transition: all .2s;
}
.nav-links a:hover { color: var(--navy); background: var(--bg); }
.nav-links a.active { color: var(--gold); background: var(--gold-l); font-weight: 600; }
.nav-links .nav-dropdown { position: relative; }
.nav-links .nav-drop-trigger {
  font-size: 14px; color: var(--muted);
  padding: 7px 13px; border-radius: var(--radius-sm);
  font-weight: 500; cursor: pointer;
  display: flex; align-items: center; gap: 5px;
  transition: all .2s; user-select: none;
}
.nav-links .nav-drop-trigger:hover { color: var(--navy); background: var(--bg); }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 8px; min-width: 220px;
  box-shadow: var(--shadow-lg); z-index: 200; animation: fadeIn .15s;
}
.nav-links .nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 10px 14px; font-size: 13px;
  border-radius: var(--radius-sm); color: #374151;
  transition: all .15s;
}
.dropdown-menu a:hover { background: var(--gold-l); color: var(--gold2); padding-left: 18px; }

.nav-actions { display: flex; gap: 10px; align-items: center; }
.btn {
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px;
  padding: 9px 20px; border-radius: var(--radius-sm); cursor: pointer;
  border: none; display: inline-flex; align-items: center; gap: 7px;
  transition: all .2s cubic-bezier(.22,1,.36,1); letter-spacing: .1px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(247,147,30,.3);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(247,147,30,.4); }
.btn-navy {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 2px 10px rgba(10,22,40,.2);
}
.btn-navy:hover { transform: translateY(-1px); background: var(--blue); box-shadow: 0 6px 20px rgba(10,22,40,.3); }
.btn-ghost {
  background: transparent; border: 1.5px solid var(--border); color: var(--muted);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-l); }
.btn-lg { font-size: 15px; padding: 13px 28px; border-radius: 10px; }
.btn-block { width: 100%; justify-content: center; }
.btn-outline-white {
  background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3);
  font-family: 'Inter', sans-serif; font-weight: 500;
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

/* HAMBURGER */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s cubic-bezier(.22,1,.36,1); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* HERO */
.hero {
  background: linear-gradient(150deg, var(--navy2) 0%, var(--navy) 40%, var(--blue) 100%);
  min-height: 620px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero-glow {
  position: absolute; pointer-events: none;
  top: -100px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(247,147,30,.1) 0%, transparent 60%);
}
.hero-glow2 {
  position: absolute; pointer-events: none;
  bottom: -60px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,58,108,.4) 0%, transparent 60%);
}

.hero-body {
  flex: 1;
  display: grid; grid-template-columns: 1fr 520px;
  gap: 48px; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 80px 40px 60px;
  position: relative; z-index: 2; width: 100%;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(247,147,30,.12); border: 1px solid rgba(247,147,30,.25);
  color: #fbbf5a; font-size: 12px; font-weight: 700;
  padding: 7px 16px; border-radius: 20px; margin-bottom: 22px;
  letter-spacing: .5px; text-transform: uppercase;
}
.hero-kicker-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
.hero h1 {
  font-size: 54px; font-weight: 900; color: #fff;
  line-height: 1.06; letter-spacing: -1.5px; margin-bottom: 20px;
}
.hero h1 span { color: var(--gold); }
.hero-p { font-size: 16px; color: #7fa8cc; line-height: 1.75; max-width: 480px; margin-bottom: 36px; font-weight: 400; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

/* Hero car showcase */
.hero-car-showcase {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-car-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(12px);
  width: 100%;
}
.hero-car-card-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.hero-car-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: #fbbf5a;
  background: rgba(247,147,30,.12); border: 1px solid rgba(247,147,30,.2);
  padding: 4px 10px; border-radius: 6px;
}
.hero-car-count { font-size: 12px; color: #4a6a8a; font-weight: 500; }
.car-carousel {
  position: relative; overflow: hidden;
  border-radius: 12px; background: rgba(0,0,0,.2);
  height: 200px; margin-bottom: 16px;
}
.car-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .5s ease;
}
.car-slide.active { opacity: 1; }
.car-slide img {
  max-height: 170px; max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.4));
  animation: float 4s ease-in-out infinite;
}
.car-slide-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; color: rgba(255,255,255,.3);
}
.car-slide-placeholder .car-icon { font-size: 64px; margin-bottom: 8px; }
.car-slide-placeholder span { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.6); }
.car-dots {
  display: flex; justify-content: center; gap: 6px; margin-bottom: 16px;
}
.car-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.2); cursor: pointer;
  transition: all .2s;
}
.car-dot.active { background: var(--gold); width: 20px; border-radius: 3px; }

.car-info-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 10px;
}
.car-info-item {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07);
  border-radius: 9px; padding: 10px 12px; text-align: center;
}
.car-info-val { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; color: #fff; line-height: 1; }
.car-info-val span { color: var(--gold); font-size: 12px; }
.car-info-lbl { font-size: 10px; color: #4a6a8a; margin-top: 3px; font-weight: 500; text-transform: uppercase; letter-spacing: .4px; }

/* HERO STRIP */
.hero-strip {
  background: rgba(0,0,0,.25);
  border-top: 1px solid rgba(255,255,255,.06);
  position: relative; z-index: 2;
}
.hero-strip-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.hs-item {
  text-align: center; padding: 22px 16px;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background .2s;
}
.hs-item:hover { background: rgba(255,255,255,.03); }
.hs-item:last-child { border-right: none; }
.hs-num { font-family: 'Poppins', sans-serif; font-size: 26px; font-weight: 800; color: #fff; line-height: 1; }
.hs-num em { color: var(--gold); font-style: normal; font-size: 16px; }
.hs-lbl  { font-size: 11px; color: #3a5a7a; margin-top: 4px; font-weight: 500; text-transform: uppercase; letter-spacing: .4px; }

/* SECTIONS */
.section { padding: 88px 0; }
.section-alt { background: var(--bg); }
.section-dark { background: var(--navy); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--gold); border-radius: 1px; }
.section-h2 { font-size: 36px; font-weight: 800; color: var(--navy); letter-spacing: -.5px; line-height: 1.12; margin-bottom: 14px; }
.section-sub { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 540px; }
.section-hdr { margin-bottom: 52px; }
.section-hdr.center { text-align: center; }
.section-hdr.center .section-sub { margin: 0 auto; }
.section-dark .section-h2 { color: #fff; }
.section-dark .section-sub { color: #4a6a8a; }
.section-dark .eyebrow::before { background: var(--gold); }

/* AVANTAGES */
.avantages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.avantage-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: all .3s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
}
.avantage-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0); transition: transform .3s cubic-bezier(.22,1,.36,1);
  transform-origin: left;
}
.avantage-card:hover { border-color: rgba(247,147,30,.3); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.avantage-card:hover::after { transform: scaleX(1); }
.av-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--gold-l); border: 1px solid rgba(247,147,30,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
}
.avantage-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.avantage-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; }
.av-highlight { font-size: 20px; font-weight: 800; color: var(--gold); font-family: 'Poppins', sans-serif; margin-bottom: 6px; }

/* CATALOGUE */
.catalogue-filters {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px;
}
.cf-btn {
  font-size: 13px; font-weight: 600; padding: 8px 18px;
  border-radius: 20px; border: 1.5px solid var(--border);
  background: #fff; color: var(--muted);
  cursor: pointer; transition: all .2s; font-family: 'Inter', sans-serif;
}
.cf-btn:hover { border-color: var(--gold); color: var(--gold); }
.cf-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }

.voitures-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.voiture-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all .3s cubic-bezier(.22,1,.36,1);
  cursor: pointer;
}
.voiture-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.voiture-card:hover .vc-img img { transform: scale(1.05); }
.vc-img {
  height: 180px; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.vc-img img {
  max-height: 140px; max-width: 90%;
  object-fit: contain; transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.vc-img .vc-placeholder { font-size: 64px; }
.vc-brand {
  position: absolute; top: 12px; left: 12px;
  background: #fff; border-radius: 6px; padding: 4px 8px;
  font-size: 10px; font-weight: 700; color: var(--navy);
  text-transform: uppercase; letter-spacing: .5px;
  box-shadow: var(--shadow);
}
.vc-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: #fff;
  font-size: 10px; font-weight: 700; padding: 4px 10px;
  border-radius: 6px; letter-spacing: .3px;
}
.vc-body { padding: 20px; }
.vc-name { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.vc-specs {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px;
}
.vc-spec {
  font-size: 12px; color: var(--muted); font-weight: 500;
  display: flex; align-items: center; gap: 4px;
  background: var(--bg); padding: 3px 8px; border-radius: 5px;
}
.vc-price-row { display: flex; justify-content: space-between; align-items: center; }
.vc-price { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 800; color: var(--navy); }
.vc-price span { font-size: 12px; color: var(--muted); font-weight: 400; }
.vc-remise { font-size: 12px; font-weight: 700; color: var(--gold); background: var(--gold-l); padding: 3px 8px; border-radius: 6px; }

/* RESERVATION FORM */
.resa-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.resa-form { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 36px; box-shadow: var(--shadow); }
.resa-aside { position: sticky; top: 90px; }
.resa-summary {
  background: var(--navy); border-radius: var(--radius); padding: 28px;
  color: #fff;
}
.rs-title { font-size: 14px; font-weight: 600; color: #7fa8cc; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .8px; }
.rs-car { display: flex; gap: 14px; align-items: center; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.08); }
.rs-car-img { width: 80px; height: 54px; background: rgba(255,255,255,.05); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
.rs-car-name { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.rs-car-sub  { font-size: 12px; color: #4a6a8a; }
.rs-row { display: flex; justify-content: space-between; font-size: 13px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.rs-row:last-child { border-bottom: none; }
.rs-label { color: #4a6a8a; }
.rs-value { color: #fff; font-weight: 600; }
.rs-total { display: flex; justify-content: space-between; font-size: 15px; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); }
.rs-total-label { color: #7fa8cc; font-weight: 600; }
.rs-total-val { color: var(--gold); font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 800; }

/* FORM */
.form-section-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); font-family: 'Poppins', sans-serif; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; color: #374151; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; font-family: 'Inter', sans-serif;
  color: var(--text); background: #fff; transition: all .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(247,147,30,.1);
}
.form-group textarea { resize: none; }

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 50%, var(--blue) 100%);
  padding: 80px 40px;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  border: 1px solid rgba(247,147,30,.08);
}
.cta-band-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 28px; position: relative; z-index: 1;
}
.cta-band h2 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.cta-band p  { font-size: 15px; color: #4a6a8a; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 60%, var(--blue) 100%);
  padding: 64px 0; color: #fff; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: 38px; font-weight: 800; color: #fff; margin-bottom: 10px; letter-spacing: -.4px; }
.page-hero p { font-size: 15px; color: #4a6a8a; }
.breadcrumb { font-size: 13px; color: #2d4a6a; margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.breadcrumb a { color: #4a6a8a; transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }

/* FOOTER */
.footer { background: var(--navy2); color: #cbd5e1; padding: 64px 0 24px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-brand .brand-logo-footer {
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.brand-icon-footer {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 900; font-size: 18px; color: var(--gold);
}
.brand-name-footer { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 900; color: #fff; }
.brand-sub-footer { font-size: 11px; color: #2d4a6a; }
.footer-brand p { font-size: 13px; color: #2d4a6a; line-height: 1.7; max-width: 240px; margin-bottom: 18px; }
.footer-col h4 { font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 700; color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: #2d4a6a; transition: all .2s; display: inline-block; }
.footer-col ul li a:hover { color: var(--gold); transform: translateX(4px); }
.footer-contact p { font-size: 13px; color: #2d4a6a; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.social-pill { font-size: 12px; font-weight: 600; background: rgba(255,255,255,.05); color: #2d4a6a; padding: 7px 14px; border-radius: 6px; transition: all .2s; border: 1px solid transparent; }
.social-pill:hover { background: rgba(247,147,30,.12); color: var(--gold); border-color: rgba(247,147,30,.2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #1a2d40; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: #1a2d40; transition: color .2s; margin-left: 16px; }
.footer-bottom a:hover { color: var(--gold); }
.footer-partner { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #1a2d40; }
.footer-partner img { height: 24px; filter: brightness(0) invert(1) opacity(.2); }

/* WA FAB */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 999; transition: all .3s cubic-bezier(.22,1,.36,1);
}
.wa-fab:hover { transform: scale(1.12) translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.5); }

/* TABLE */
table { width: 100%; border-collapse: collapse; font-size: 13px; }
thead th {
  text-align: left; padding: 10px 14px;
  font-size: 11px; color: var(--muted); font-weight: 700;
  letter-spacing: .6px; text-transform: uppercase;
  border-bottom: 1.5px solid var(--border); background: var(--bg);
}
tbody td { padding: 13px 14px; border-bottom: 1px solid #f0f4f9; vertical-align: middle; }
tbody tr:hover td { background: #fafbfc; }
tbody tr:last-child td { border-bottom: none; }

/* STATUS */
.status-pill { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 6px; letter-spacing: .3px; }
.s-active  { background: #d1fae5; color: #065f46; }
.s-pending { background: #fef3c7; color: #92400e; }

/* DASH SHARED */
.dash-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.sidebar { background: var(--navy); display: flex; flex-direction: column; }
.sb-brand { padding: 20px; border-bottom: 1px solid rgba(255,255,255,.07); display: flex; align-items: center; gap: 10px; }
.sb-brand-icon { width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%); display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-weight: 900; font-size: 16px; color: var(--gold); }
.sb-brand-text { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 900; color: #fff; }
.sb-brand-sub { font-size: 10px; color: #2d4a6a; }
.sb-user { padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.07); display: flex; align-items: center; gap: 10px; }
.sb-ava { width: 38px; height: 38px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0; font-family: 'Poppins', sans-serif; }
.sb-uname { font-size: 13px; font-weight: 600; color: #fff; }
.sb-urole  { font-size: 11px; color: #2d4a6a; }
.sb-status { font-size: 10px; background: var(--green,#3aaa35); color: #fff; padding: 2px 8px; border-radius: 5px; font-weight: 700; margin-left: auto; }
.sb-nav { padding: 14px 12px; flex: 1; }
.sb-section-title { font-size: 10px; letter-spacing: 1.3px; text-transform: uppercase; color: rgba(255,255,255,.2); padding: 10px 8px 4px; font-weight: 700; }
.sb-link { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: var(--radius-sm); font-size: 13px; color: rgba(255,255,255,.5); cursor: pointer; transition: all .2s; margin-bottom: 2px; text-decoration: none; font-weight: 500; border-left: 2px solid transparent; }
.sb-link:hover { background: rgba(255,255,255,.07); color: rgba(255,255,255,.9); }
.sb-link.active { background: rgba(247,147,30,.15); color: #fff; border-left-color: var(--gold); }
.sb-link .sb-ico { font-size: 16px; width: 20px; text-align: center; }
.sb-badge { margin-left: auto; background: var(--gold); color: #fff; font-size: 10px; padding: 2px 7px; border-radius: 10px; font-weight: 700; }
.sb-footer { padding: 16px 20px; border-top: 1px solid rgba(255,255,255,.07); }
.sb-footer a { font-size: 12px; color: #1a2d40; display: block; margin-bottom: 5px; transition: color .2s; }
.sb-footer a:hover { color: var(--gold); }
.dash-main { background: var(--bg); display: flex; flex-direction: column; }
.dash-topbar { background: #fff; border-bottom: 1px solid var(--border); padding: 0 28px; height: 58px; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 1px 4px rgba(0,0,0,.04); }
.dash-title { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); }
.dash-tb-right { display: flex; align-items: center; gap: 12px; }
.notif-btn { width: 38px; height: 38px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: #fff; display: flex; align-items: center; justify-content: center; font-size: 17px; cursor: pointer; position: relative; transition: all .2s; }
.notif-btn:hover { border-color: var(--gold); }
.notif-dot { position: absolute; top: 5px; right: 5px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); border: 2px solid #fff; }
.dash-ava { width: 38px; height: 38px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; cursor: pointer; font-family: 'Poppins', sans-serif; }
.dash-content { padding: 28px; flex: 1; }
.metric-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-bottom: 24px; }
.metric-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; transition: all .25s; }
.metric-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.metric-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.metric-label { font-size: 11px; color: var(--muted); margin-bottom: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.metric-value { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 800; color: var(--navy); line-height: 1; }
.metric-value em { font-style: normal; color: var(--gold); font-size: 16px; }
.metric-delta { font-size: 12px; margin-top: 6px; font-weight: 500; }
.delta-up   { color: #3aaa35; }
.delta-down { color: #c0392b; }
.dash-grid-2 { display: grid; grid-template-columns: 1fr 360px; gap: 20px; margin-bottom: 20px; }
.dash-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.dash-card-hdr { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.dash-card-hdr h3 { font-size: 15px; font-weight: 700; color: var(--navy); font-family: 'Poppins', sans-serif; }
.dash-card-link { font-size: 12px; color: var(--gold); font-weight: 600; cursor: pointer; }

/* RESPONSIVE */
@media (max-width:1024px) {
  .hero-body { grid-template-columns: 1fr; }
  .hero-car-showcase { display: none; }
  .voitures-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .dash-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .metric-row { grid-template-columns: repeat(2,1fr); }
  .avantages-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width:768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 16px 20px; gap: 4px; box-shadow: var(--shadow-lg); z-index: 999; }
  .nav-actions.open { display: flex; padding: 0 20px 16px; background: #fff; gap: 10px; }
  .hero-body { padding: 60px 20px 48px; }
  .hero h1 { font-size: 34px; }
  .hero-strip-inner { grid-template-columns: repeat(2,1fr); }
  .container { padding: 0 20px; }
  .section { padding: 60px 0; }
  .voitures-grid, .avantages-grid { grid-template-columns: 1fr; }
  .resa-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .topbar { padding: 7px 20px; font-size: 11px; }
  .topbar-contact { display: none; }
}
@media (max-width:480px) {
  .hero h1 { font-size: 28px; }
  .hero-strip-inner { grid-template-columns: repeat(2,1fr); }
  .metric-row { grid-template-columns: 1fr 1fr; }
}
