/* ============================================================
   MAXI 2 ROUES — style.css
   Palette : #D32F2F (rouge), #121212 (noir), #FAFAFA (blanc)
   Police  : Barlow (Google Fonts)
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Barlow', sans-serif;
  background: #FAFAFA;
  color: #121212;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ---------- CSS Variables ---------- */
:root {
  --red:    #D32F2F;
  --red-dk: #B71C1C;
  --black:  #121212;
  --grey:   #1E1E1E;
  --mid:    #555;
  --light:  #F0F0F0;
  --white:  #FAFAFA;
  --radius: 10px;
  --shadow: 0 6px 28px rgba(0,0,0,.12);
  --trans:  .3s ease;
}

/* ---------- Fade-in Animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  box-shadow: 0 2px 18px rgba(0,0,0,.45);
}

.nav-wrapper {
  max-width: 1280px;
  margin: auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--white);
}
.logo span { color: var(--red); }
.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--red);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .1rem;
}

.nav-links a {
  color: #ccc;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: .45rem .8rem;
  border-radius: 6px;
  transition: color var(--trans), background var(--trans);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(211,47,47,.25);
}

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: 6px;
  padding: .45rem 1rem !important;
}
.nav-cta:hover { background: var(--red-dk) !important; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .4rem;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
#mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--grey);
  padding: 1rem 1.5rem 1.5rem;
  gap: .3rem;
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  color: #ccc;
  font-size: .95rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: .6rem .4rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
#mobile-nav a:last-child { border: none; }
#mobile-nav a:hover { color: var(--red); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(211,47,47,.18) 0%, transparent 65%),
    linear-gradient(135deg, #0a0a0a 0%, #1a0000 100%);
  will-change: transform;
}

/* Diagonal stripe decoration */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 60px,
    rgba(211,47,47,.04) 60px,
    rgba(211,47,47,.04) 61px
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: auto;
  padding: 5rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  flex: 1;
}

.hero-text .badge-top {
  display: inline-block;
  background: rgba(211,47,47,.2);
  border: 1px solid var(--red);
  color: var(--red);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 30px;
  margin-bottom: 1.2rem;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.3rem;
}
.hero-text h1 em {
  font-style: normal;
  color: var(--red);
}

.hero-text p {
  font-size: 1.1rem;
  color: #aaa;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .5px;
  padding: .85rem 1.8rem;
  border-radius: var(--radius);
  border: 2px solid var(--red);
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  box-shadow: 0 4px 18px rgba(211,47,47,.4);
}
.btn-primary:hover {
  background: var(--red-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(211,47,47,.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .5px;
  padding: .85rem 1.8rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,.3);
  transition: border-color var(--trans), background var(--trans);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

/* Hero visual — moto silhouette abstract */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-moto-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 2rem;
  width: 100%;
  max-width: 420px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.hero-moto-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211,47,47,.35), transparent 70%);
}

.hero-moto-emoji {
  font-size: 4.5rem;
  text-align: center;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 30px rgba(211,47,47,.5));
}

.hero-moto-name {
  color: var(--white);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: .3rem;
}
.hero-moto-price {
  color: var(--red);
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.hero-moto-tags {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.tag {
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .65rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.tag-red   { background: rgba(211,47,47,.2); color: var(--red); border: 1px solid rgba(211,47,47,.4); }
.tag-white { background: rgba(255,255,255,.1); color: #ddd; border: 1px solid rgba(255,255,255,.2); }

/* Hero stats bar */
.hero-stats {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(255,255,255,.05);
  border-top: 1px solid rgba(255,255,255,.07);
}
.hero-stats-inner {
  max-width: 1280px;
  margin: auto;
  padding: 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-item {
  text-align: center;
  color: var(--white);
}
.stat-item .num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  display: block;
}
.stat-item .label {
  font-size: .8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   SECTIONS COMMUNES
   ============================================================ */
.section {
  padding: 5.5rem 1.5rem;
}
.section-light { background: var(--white); }
.section-dark  { background: var(--black); }
.section-grey  { background: var(--light); }

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

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-head .eyebrow {
  display: inline-block;
  color: var(--red);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: .7rem;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: .8rem;
}
.section-dark .section-head h2 { color: var(--white); }
.section-head p {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 600px;
  margin: auto;
}
.section-dark .section-head p { color: #888; }

/* Divider line */
.divider {
  width: 56px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* ============================================================
   MOTO CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.8rem;
}

.moto-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
  border: 1px solid rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
}
.moto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 42px rgba(0,0,0,.15);
}

.card-thumb {
  position: relative;
  background: linear-gradient(135deg, #1a0000, #0a0a0a);
  height: 185px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  overflow: hidden;
}
.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(211,47,47,.15), transparent 70%);
  pointer-events: none;
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: .3rem .75rem;
  border-radius: 20px;
  z-index: 2;
}
.badge-new    { background: #1565C0; color: #fff; }
.badge-promo  { background: var(--red); color: #fff; }
.badge-occ    { background: #2E7D32; color: #fff; }
.badge-top    { background: #F57F17; color: #fff; }

.card-body {
  padding: 1.3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-brand {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  margin-bottom: .2rem;
}
.card-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: .3rem;
}
.card-desc {
  font-size: .85rem;
  color: var(--mid);
  flex: 1;
  margin-bottom: 1rem;
}
.card-meta {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}
.card-meta span {
  font-size: .75rem;
  font-weight: 600;
  background: var(--light);
  padding: .2rem .6rem;
  border-radius: 20px;
  color: #444;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-top: auto;
}
.card-price {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--black);
}
.card-price .old-price {
  font-size: .85rem;
  font-weight: 500;
  color: #999;
  text-decoration: line-through;
  display: block;
  margin-bottom: -.15rem;
}
.btn-card {
  background: var(--red);
  color: #fff;
  border: none;
  padding: .55rem 1.1rem;
  border-radius: 7px;
  font-weight: 700;
  font-size: .83rem;
  transition: background var(--trans);
}
.btn-card:hover { background: var(--red-dk); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.8rem;
}

.service-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: border-color var(--trans), background var(--trans);
  text-align: center;
}
.service-card:hover {
  border-color: var(--red);
  background: rgba(211,47,47,.06);
}
.service-icon {
  width: 62px;
  height: 62px;
  background: rgba(211,47,47,.15);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  margin: 0 auto 1.2rem;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .5rem;
}
.service-card p {
  font-size: .87rem;
  color: #888;
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--red);
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.review-stars { color: #F9A825; font-size: 1.1rem; letter-spacing: 2px; }
.review-text { font-size: .92rem; color: #333; line-height: 1.65; font-style: italic; }
.review-author {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-top: auto;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
}
.review-name { font-weight: 700; font-size: .9rem; }
.review-date { font-size: .75rem; color: #999; }

/* ============================================================
   FILTERS BAR
   ============================================================ */
.filters-bar {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  flex: 1;
  min-width: 150px;
}
.filter-group label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #777;
}
.filter-group select,
.filter-group input {
  padding: .55rem .9rem;
  border: 1.5px solid #ddd;
  border-radius: 7px;
  font-size: .9rem;
  font-family: inherit;
  background: #fff;
  color: var(--black);
  transition: border-color var(--trans);
  appearance: none;
}
.filter-group select:focus,
.filter-group input:focus {
  outline: none;
  border-color: var(--red);
}
.filter-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .8rem center;
  padding-right: 2rem;
}

.btn-reset {
  background: var(--light);
  color: var(--black);
  border: 1.5px solid #ddd;
  padding: .55rem 1.1rem;
  border-radius: 7px;
  font-weight: 600;
  font-size: .88rem;
  transition: background var(--trans), border-color var(--trans);
  align-self: flex-end;
}
.btn-reset:hover {
  background: #ddd;
  border-color: #bbb;
}

.no-results {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--mid);
  font-size: 1.1rem;
  display: none;
}
.no-results.show { display: block; }

/* ============================================================
   PAGE HERO (intérieure)
   ============================================================ */
.page-hero {
  background: var(--black);
  padding: 4rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211,47,47,.2), transparent 70%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: .6rem;
}
.page-hero h1 span { color: var(--red); }
.page-hero p {
  color: #999;
  font-size: 1.05rem;
  max-width: 580px;
}
.breadcrumb {
  display: flex;
  gap: .4rem;
  align-items: center;
  font-size: .8rem;
  color: #666;
  margin-bottom: .8rem;
}
.breadcrumb a { color: #888; transition: color var(--trans); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: #444; }

/* ============================================================
   SIMULATEUR CRÉDIT
   ============================================================ */
.simulator-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.sim-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow);
  border: 1px solid #e0e0e0;
}
.sim-form h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.8rem;
  color: var(--black);
}
.sim-field {
  margin-bottom: 1.5rem;
}
.sim-field label {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  font-weight: 700;
  color: #555;
  margin-bottom: .55rem;
}
.sim-field label strong {
  color: var(--red);
  font-size: 1rem;
}
.sim-field input[type="range"] {
  width: 100%;
  accent-color: var(--red);
  height: 5px;
  cursor: pointer;
}
.sim-field input[type="number"],
.sim-field select {
  width: 100%;
  padding: .65rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 7px;
  font-size: .95rem;
  font-family: inherit;
  transition: border-color var(--trans);
  appearance: none;
}
.sim-field input[type="number"]:focus,
.sim-field select:focus {
  outline: none;
  border-color: var(--red);
}

.sim-result {
  background: var(--black);
  border-radius: var(--radius);
  padding: 2.2rem;
  position: sticky;
  top: 90px;
}
.sim-result h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.sim-monthly {
  text-align: center;
  margin-bottom: 2rem;
}
.sim-monthly .amount {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.sim-monthly .per {
  color: #888;
  font-size: .9rem;
  margin-top: .2rem;
}
.sim-rows {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.sim-row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.sim-row .label { color: #999; }
.sim-row .val { color: var(--white); font-weight: 700; }
.sim-notice {
  font-size: .72rem;
  color: #666;
  margin-top: 1.5rem;
  line-height: 1.5;
  text-align: center;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.9rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.contact-info p {
  color: var(--mid);
  margin-bottom: 1.5rem;
  font-size: .95rem;
}
.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.3rem;
}
.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(211,47,47,.1);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.info-item h4 {
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #999;
  margin-bottom: .15rem;
}
.info-item p { color: var(--black); font-size: .95rem; margin: 0; }

.horaires-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  margin-top: .5rem;
}
.horaires-table tr td {
  padding: .35rem 0;
  border-bottom: 1px solid #eee;
}
.horaires-table td:first-child { color: #555; font-weight: 600; }
.horaires-table td:last-child { text-align: right; font-weight: 700; }
.horaires-table .closed { color: #aaa; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow);
  border: 1px solid #e0e0e0;
}
.contact-form-wrap h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1.1rem;
}
.form-group label {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #666;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .7rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 7px;
  font-size: .93rem;
  font-family: inherit;
  color: var(--black);
  transition: border-color var(--trans);
  background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  padding: .9rem;
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .5px;
  transition: background var(--trans), transform var(--trans);
  margin-top: .3rem;
}
.form-submit:hover {
  background: var(--red-dk);
  transform: translateY(-1px);
}

/* Map placeholder */
.map-placeholder {
  background: var(--light);
  border-radius: var(--radius);
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-top: 1.5rem;
  border: 1px solid #e0e0e0;
  flex-direction: column;
  gap: .5rem;
  color: var(--mid);
  font-size: .9rem;
  text-align: center;
}
.map-placeholder .pin-icon { font-size: 2.5rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.faq-item {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.2rem 1.5rem;
  font-size: .97rem;
  font-weight: 700;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--trans);
}
.faq-question:hover { background: var(--light); }
.faq-question.open { color: var(--red); }
.faq-icon { font-size: 1.2rem; flex-shrink: 0; color: var(--red); transition: transform var(--trans); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-answer.open {
  max-height: 400px;
  padding: 0 1.5rem 1.2rem;
}
.faq-answer p { font-size: .92rem; color: #555; line-height: 1.7; }

/* ============================================================
   AVIS PAGE
   ============================================================ */
.rating-summary {
  background: var(--black);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
.rating-big {
  text-align: center;
}
.rating-big .score {
  font-size: 5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.rating-big .stars { color: #F9A825; font-size: 1.4rem; letter-spacing: 3px; margin: .3rem 0; }
.rating-big .count { color: #888; font-size: .85rem; }
.rating-bars {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.rating-bar {
  display: flex;
  align-items: center;
  gap .8rem;
  gap: .8rem;
}
.rating-bar .bar-label { color: #999; font-size: .8rem; width: 40px; }
.bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,.1);
  border-radius: 4px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--red);
  border-radius: 4px;
}
.bar-pct { color: #888; font-size: .8rem; width: 36px; text-align: right; }

/* ============================================================
   OCCASION BADGES
   ============================================================ */
.saving-badge {
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #A5D6A7;
  font-size: .75rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 20px;
  display: inline-block;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--grey);
  color: #aaa;
  padding: 4rem 1.5rem 1.5rem;
}
.footer-grid {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .logo { margin-bottom: 1rem; font-size: 1.2rem; }
.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  color: var(--white);
  font-weight: 800;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.footer-col ul li {
  margin-bottom: .45rem;
}
.footer-col ul li a {
  color: #888;
  font-size: .87rem;
  transition: color var(--trans);
}
.footer-col ul li a:hover { color: var(--red); }
.footer-contact-item {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  margin-bottom: .7rem;
  font-size: .85rem;
}
.footer-contact-item .icon { font-size: 1rem; margin-top: .1rem; }
.footer-bottom {
  max-width: 1280px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem;
  color: #555;
}
.footer-bottom a { color: #666; transition: color var(--trans); }
.footer-bottom a:hover { color: var(--red); }

/* ============================================================
   404
   ============================================================ */
.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.page-404 .code {
  font-size: 8rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.page-404 h1 {
  font-size: 2rem;
  font-weight: 800;
  margin: .5rem 0 1rem;
}
.page-404 p { color: var(--mid); margin-bottom: 2rem; max-width: 400px; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-red { color: var(--red); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .simulator-wrap { grid-template-columns: 1fr; }
  .sim-result { position: static; }
}

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

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 3rem;
    gap: 2rem;
  }
  .hero-text { text-align: center; }
  .hero-text p { margin: 0 auto 2rem; }
  .hero-btns { justify-content: center; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .rating-summary { grid-template-columns: 1fr; gap: 1.5rem; }
  .rating-big { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section { padding: 3.5rem 1.2rem; }
  .page-hero { padding: 2.5rem 1.2rem 2rem; }
}

@media (max-width: 480px) {
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}
