/* ===========================
   AUTOHAUS - Main Stylesheet
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

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

:root {
  --primary: #f5f4f1;
  --secondary: #eeece8;
  --card-bg: #ffffff;
  --accent: #e06320;
  --accent-light: #f07d3a;
  --accent-dark: #b84e15;
  --explore-bg: #fdf3ec;
  --text: #1c1c1c;
  --text-muted: #6b6b6b;
  --text-light: #4a4a4a;
  --border: #e0dcd5;
  --white: #ffffff;
  --red: #e63946;
  --green: #2a9d5c;
  --header-h: 80px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--primary);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

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

ul { list-style: none; }

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--accent);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #000;
  box-shadow: 0 4px 20px rgba(224, 99, 32, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  box-shadow: 0 6px 28px rgba(224, 99, 32, 0.55);
  transform: translateY(-2px);
  color: #000;
}

.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: #000;
}

.btn-white:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-2px);
}

.btn svg, .btn i {
  width: 18px;
  height: 18px;
  font-size: 18px;
}

/* === HEADER / NAVBAR === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: all var(--transition);
  background: rgba(245, 244, 241, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header.scrolled {
  background: rgba(245, 244, 241, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #000;
  letter-spacing: -0.5px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #1a2744 !important;
  letter-spacing: 0.05em;
}

.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

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

.nav-links a {
  padding: 8px 16px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1a2744 !important;
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  background: rgba(224, 99, 32, 0.08);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.nav-phone svg {
  color: var(--accent);
  width: 16px;
  height: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a2744 !important;
  transition: all var(--transition);
  border-radius: 2px;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(245, 244, 241, 0.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 24px;
  transition: color var(--transition);
}

.mobile-nav a:hover { color: var(--accent); }

/* === HERO PHOTO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1920&q=80');
  background-size: cover;
  background-position: center center;
  background-color: #1c0e00;
  z-index: 0;
  transform: scale(1.05);
  transition: transform 10s ease;
}

.hero:hover .hero-photo-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.72) 100%
  );
  z-index: 1;
}

.hero-photo-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 100px) 60px 140px 32px;
  text-align: left;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  padding: 6px 20px;
  border: 1px solid rgba(224,99,32,0.55);
  border-radius: 50px;
  background: rgba(224,99,32,0.1);
  backdrop-filter: blur(4px);
}

.hero-photo-title {
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
  max-width: 620px;
}

.hero-photo-title span {
  color: var(--accent);
}

.hero-photo-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 0 48px;
}

.hero-photo-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,0.65);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  transition: all var(--transition);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.2);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.45);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero-scroll-hint svg {
  width: 22px;
  height: 22px;
  stroke: rgba(255,255,255,0.45);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}


/* === SECTION LAYOUT === */
.section {
  padding: 100px 32px;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 60px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-desc {
  margin: 0 auto;
}

/* === SERVICES SECTION === */
.services {
  background: var(--secondary);
}

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

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  border-color: rgba(224, 99, 32, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(224, 99, 32, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(224, 99, 32, 0.2);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.service-card h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === VEHICLES SECTION === */
.vehicles-section {
  background: #ffffff !important;
}

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

.vehicle-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.vehicle-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.13), 0 0 0 1px rgba(224,99,32,0.15);
}

.vehicle-category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a9a9a;
  margin-bottom: 4px;
}

.vehicle-img {
  height: 200px;
  background: linear-gradient(135deg, var(--secondary), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.vehicle-img svg {
  width: 75%;
  height: 75%;
  opacity: 0.85;
}

.vehicle-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.vehicle-badge.new { background: var(--green); color: #fff; }
.vehicle-badge.promo { background: var(--red); color: #fff; }

.vehicle-body {
  padding: 20px;
}

.vehicle-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #111111;
  margin-bottom: 12px;
  line-height: 1.3;
}

.vehicle-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.vehicle-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.vehicle-spec svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

.vehicle-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.vehicle-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
}

.vehicle-price span {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
}

.vehicle-btn {
  padding: 8px 16px;
  background: rgba(224, 99, 32, 0.1);
  border: 1px solid rgba(224, 99, 32, 0.3);
  border-radius: 6px;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.vehicle-btn:hover {
  background: var(--accent);
  color: #000;
}

.vehicles-cta {
  text-align: center;
}

/* === PROCESS SECTION === */
.process {
  background: var(--secondary);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 24px;
  box-shadow: 0 0 0 6px rgba(224, 99, 32, 0.15);
  transition: all var(--transition);
}

.process-step:hover .step-num {
  box-shadow: 0 0 0 10px rgba(224, 99, 32, 0.2);
  transform: scale(1.05);
}

.step-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === GUARANTEES SECTION === */
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.guarantee-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.guarantee-card:hover {
  border-color: rgba(224, 99, 32, 0.3);
  box-shadow: var(--shadow-card);
}

.guarantee-icon {
  width: 52px;
  height: 52px;
  background: rgba(224, 99, 32, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.guarantee-content h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 8px;
}

.guarantee-content p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 40%, var(--secondary) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(224, 99, 32, 0.07) 0%, transparent 60%);
}

.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--text);
  margin-bottom: 12px;
}

.cta-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 500px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* === TESTIMONIALS === */
/* === AVIS CLIENTS === */
.avis-section {
  background: var(--primary);
}

.avis-global {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}

.avis-global-score {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.avis-global-right {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.avis-global-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.avis-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.avis-card:hover {
  border-color: rgba(224, 99, 32, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.avis-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.avis-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(224, 99, 32, 0.3);
}

.avis-photo svg {
  width: 100%;
  height: 100%;
  display: block;
}

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

.avis-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.avis-location {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.avis-location svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  stroke: var(--accent);
}

.avis-stars-row {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 2px;
}

.star {
  width: 15px;
  height: 15px;
  color: var(--accent);
  fill: var(--accent);
}

.avis-score {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-left: 4px;
}

.avis-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}

.avis-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.avis-vehicle {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(224, 99, 32, 0.1);
  padding: 3px 10px;
  border-radius: 20px;
}

.avis-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* === EXPLORE SECTION === */
.explore-section {
  background: var(--secondary);
  padding: 100px 32px;
  position: relative;
  overflow: hidden;
}

.explore-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(224, 99, 32, 0.05) 0%, transparent 60%);
}

.explore-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.explore-header {
  margin-bottom: 64px;
}

.explore-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
}

.explore-title span {
  color: var(--accent);
}

.explore-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 340px;
  line-height: 1.7;
}

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

.explore-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.explore-card:hover {
  transform: translateY(-18px) rotateX(6deg) scale(1.02);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.22),
    0 0 0 1px rgba(224,99,32,0.35),
    0 60px 40px -20px rgba(0,0,0,0.15);
}

/* Staggered slide-up override for explore cards */
.explore-card.fade-up {
  opacity: 0;
  transform: translateY(70px) rotateX(8deg);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.75s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s ease;
}

.explore-card.fade-up.visible {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

.explore-card.fade-up:nth-child(1) { transition-delay: 0s; }
.explore-card.fade-up:nth-child(2) { transition-delay: 0.18s; }
.explore-card.fade-up:nth-child(3) { transition-delay: 0.36s; }

.explore-card.fade-up.visible:hover {
  transform: translateY(-18px) rotateX(6deg) scale(1.02);
}

.explore-img {
  position: absolute;
  inset: 0;
  background: transparent;
}

.explore-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 40%;
  padding: 20px 20px 100px;
  transition: transform 0.6s ease;
}

.explore-card:hover .explore-img img {
  transform: scale(1.06) translateY(-4px);
}

.explore-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.explore-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.explore-cat-name {
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.explore-cat-desc {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 24px;
}

.explore-btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 1024px) {
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .explore-grid { grid-template-columns: 1fr; }
  .explore-header { flex-direction: column; align-items: flex-start; }
}

/* === BRANDS SECTION === */
.brands {
  background: var(--secondary);
  padding: 60px 32px;
}

.brands-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.brands-title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.brands-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.brand-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  opacity: 0.5;
}

.brand-item:hover {
  color: var(--accent);
  opacity: 1;
}

/* === CONTACT SECTION === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(224, 99, 32, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.contact-item-text .label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-item-text .value {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

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

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

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

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}

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

.form-group select {
  appearance: none;
  cursor: pointer;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

/* === FOOTER === */
.footer {
  background: #1c1c1c;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 70px 32px 24px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

.social-btn svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--accent); }
.footer-links a::before {
  content: '›';
  color: var(--accent);
  font-size: 1rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--accent); }

/* Footer dark bg — restore light text */
.footer .logo-main { color: #f0f0f0; }
.footer .footer-col h4 { color: #f0f0f0; }
.footer .footer-brand p,
.footer .footer-links a,
.footer .footer-bottom p,
.footer .footer-bottom-links a,
.footer .social-btn { color: #888; }
.footer .footer-links a:hover,
.footer .footer-bottom-links a:hover { color: var(--accent); }
.footer .social-btn:hover { color: #000; }
.footer .social-btn { background: #2a2a2a; border-color: #333; }
.footer .footer-bottom { border-top-color: rgba(255,255,255,0.08); }

/* === BOUTIQUE PAGE === */
.page-hero {
  padding: calc(var(--header-h) + 60px) 32px 60px;
  background: #1a2744;
  border-bottom: none;
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.6); }

.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ffffff;
  margin-bottom: 8px;
}

.page-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
}

.boutique-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 32px 80px;
}

.filters-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  height: fit-content;
}

.filter-panel {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
}

.filter-panel h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
}

.filter-checkbox:hover { color: var(--text); }

.filter-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
}

.price-range {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.price-inputs input {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 12px;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  outline: none;
  width: 100%;
}

.price-inputs input:focus { border-color: var(--accent); }

.boutique-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.results-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.results-count span {
  color: var(--accent);
  font-weight: 600;
}

.sort-select {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 16px;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  outline: none;
  cursor: pointer;
}

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

/* --- Boutique cards --- */
.b-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.b-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
}

.b-card-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.b-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.b-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: #000;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

.b-badge-new {
  background: #2a9d5c;
  color: #fff;
}

.b-badge-promo {
  background: #e63946;
  color: #fff;
}

.b-card-body {
  padding: 16px;
}

.b-category {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9a9a9a;
  display: block;
  margin-bottom: 4px;
}

.b-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
  line-height: 1.3;
}

.b-stars {
  color: #f5a623;
  font-size: 0.85rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.b-specs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.b-spec-tag {
  font-size: 0.68rem;
  color: #666;
  background: #f5f5f5;
  padding: 3px 8px;
  border-radius: 4px;
}

.b-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
}

.b-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
}

.b-btn {
  padding: 7px 14px;
  background: var(--accent);
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
}

.b-btn:hover {
  background: var(--accent-dark);
  color: #000;
}

.b-thumbs {
  display: flex;
  gap: 4px;
  padding: 6px 8px;
  background: #f2f2f2;
  overflow-x: auto;
  scrollbar-width: none;
}

.b-thumbs::-webkit-scrollbar { display: none; }

.b-thumb {
  width: 58px;
  height: 52px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.55;
  flex-shrink: 0;
  transition: opacity 0.2s, outline 0.15s;
}

.b-thumb:hover,
.b-thumb.active {
  opacity: 1;
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.b-count {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.03em;
}

.b-equip {
  font-size: 0.72rem;
  color: #888;
  line-height: 1.6;
  margin-bottom: 10px;
}

.b-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.b-guarantee,
.b-no-accident {
  font-size: 0.65rem;
  font-weight: 700;
  color: #2a9d5c;
  background: rgba(42,157,92,0.1);
  padding: 2px 7px;
  border-radius: 4px;
}

.b-card-img--pending {
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #bbb;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === CONDITIONS PAGE === */
.conditions-layout {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 32px 100px;
}

.condition-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.condition-section:last-child {
  border-bottom: none;
}

.condition-section h2 {
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.condition-section h2 svg {
  color: var(--accent);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.condition-section p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.condition-list {
  display: block;
  margin: 16px 0;
}

.condition-list li {
  display: block;
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.condition-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.info-box {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0;
}

.info-box p {
  color: var(--text);
  margin: 0;
  font-size: 0.875rem;
}

/* === SCROLL TO TOP === */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  cursor: pointer;
  border: none;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(224, 99, 32, 0.4);
  z-index: 100;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* === ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .avis-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .boutique-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .guarantees-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .boutique-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
}

/* ── Tablette 768px ── */
@media (max-width: 768px) {
  /* Navigation */
  .nav { padding: 0 16px; gap: 16px; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .lang-sel { display: none; }

  /* Sections */
  .section { padding: 60px 16px; }
  .section-header { margin-bottom: 36px; }

  /* Hero */
  .hero-photo-content { padding: calc(var(--header-h) + 50px) 16px 80px; }
  .hero-photo-desc { font-size: 0.95rem; margin-bottom: 28px; }
  .hero-scroll-hint { display: none; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
  .avis-grid { grid-template-columns: repeat(3, 1fr); }
  .explore-grid { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .boutique-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }

  /* Footer horizontal */
  .footer-top { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  /* Typography */
  .hero-photo-title { font-size: clamp(1.4rem, 5.5vw, 1.75rem) !important; }
  .section-title { font-size: clamp(1.3rem, 5vw, 1.75rem); }

  /* Buttons */
  .btn { min-height: 44px; }

  /* Footer */
  .footer { padding: 48px 16px 20px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px; }

  /* Pages */
  .page-hero { padding: calc(var(--header-h) + 36px) 16px 36px; }
  .contact-form { padding: 24px 16px; }
  .cta-banner { padding: 60px 16px; }
  .conditions-layout { padding: 40px 16px 60px; }
}

/* ── Mobile 480px ── */
@media (max-width: 480px) {
  /* Navigation */
  .nav { padding: 0 12px; gap: 8px; }
  .logo-sub { display: none; }

  /* Sections */
  .section { padding: 48px 12px; }
  .section-header { margin-bottom: 28px; }

  /* Hero */
  .hero-photo-content { padding: calc(var(--header-h) + 28px) 12px 56px; }
  .hero-eyebrow { font-size: 0.62rem; padding: 5px 12px; letter-spacing: 0.2em; }
  .hero-photo-title { font-size: clamp(2rem, 9vw, 2.6rem) !important; }
  .hero-photo-desc { font-size: 0.875rem; max-width: 100%; margin-bottom: 24px; }
  .hero-photo-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-photo-actions .btn,
  .hero-photo-actions .btn-outline-white { width: 100%; justify-content: center; }

  /* Cartes visuelles → 2 colonnes */
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .boutique-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .explore-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .explore-card { height: 180px; }

  /* Contenu textuel dense → 1 colonne */
  .services-grid { grid-template-columns: 1fr; }
  .avis-grid { grid-template-columns: 1fr; }
  .guarantees-grid { grid-template-columns: 1fr; }

  /* Étapes → 2 colonnes */
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Réduire padding des cartes */
  .service-card { padding: 20px 16px; }
  .avis-card { padding: 16px; }
  .guarantee-card { padding: 16px; gap: 12px; }

  /* Footer → 2 colonnes */
  .footer-top { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer { padding: 36px 12px 16px; }
  .footer-bottom-links { flex-direction: column; align-items: center; gap: 8px; }
  .brands-grid { gap: 16px; }

  /* Buttons — touch target min 44px */
  .btn { padding: 14px 18px; }
  .vehicle-btn { min-height: 44px; padding: 10px 14px; }

  /* Pages */
  .page-hero { padding: calc(var(--header-h) + 20px) 12px 28px; }
  .page-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .contact-form { padding: 18px 12px; }
  .cta-banner { padding: 44px 12px; }
  .cta-text h2 { font-size: 1.4rem; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .conditions-layout { padding: 28px 12px 48px; }
}
/* ============================================================
   VEHICLE DETAIL PAGE
   ============================================================ */

.vd-page { background: #fff; color: #1a2744; }

.vd-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Breadcrumb */
.vd-breadcrumb {
  padding: calc(var(--header-h) + 28px) 0 22px;
  font-size: 0.78rem;
  color: #8a9bbf;
  display: flex;
  align-items: center;
  gap: 6px;
}
.vd-breadcrumb a { color: #1e50d3; }
.vd-breadcrumb a:hover { text-decoration: underline; }
.vd-breadcrumb strong { color: #1a2744; font-weight: 600; }

/* Hero grid */
.vd-hero {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  padding-bottom: 64px;
  align-items: start;
}

/* ── Left: Info ── */
.vd-info { position: sticky; top: calc(var(--header-h) + 16px); }

.vd-cat-badge {
  display: inline-block;
  padding: 4px 12px;
  background: #e8efff;
  color: #1d4ed8;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.vd-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  font-weight: 900;
  color: #1a2744;
  line-height: 1.2;
  margin-bottom: 28px;
}

/* Specs table */
.vd-specs {
  border: 1px solid #e5e9f0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
  width: 100%;
  border-collapse: collapse;
}
.vd-specs th,
.vd-specs td {
  padding: 11px 18px;
  border-bottom: 1px solid #e5e9f0;
  font-size: 0.845rem;
  text-align: left;
}
.vd-specs tbody tr:last-child th,
.vd-specs tbody tr:last-child td { border-bottom: none; }
.vd-specs tbody tr:nth-child(even) { background: #f8f9fb; }
.vd-specs th { color: #7a8cad; font-weight: 500; width: 45%; }
.vd-specs td { color: #1a2744; font-weight: 700; }
.vd-spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 18px;
  border-bottom: 1px solid #e5e9f0;
  font-size: 0.845rem;
}
.vd-spec-row:last-child { border-bottom: none; }
.vd-spec-row:nth-child(even) { background: #f8f9fb; }
.vd-spec-label { color: #7a8cad; font-weight: 500; }
.vd-spec-value { color: #1a2744; font-weight: 700; }

/* Equipment */
.vd-equip { margin-bottom: 20px; display: flex; flex-wrap: wrap; gap: 7px; }
.vd-equip-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8a9bbf;
  margin-bottom: 10px;
}
.vd-equip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.vd-equip-tag {
  background: #fff;
  border: 1.5px solid #1a2744;
  color: #1a2744;
  border-radius: 20px;
  padding: 4px 13px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* Guarantees */
.vd-guarantees {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.vd-g-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #edfbf3;
  border: 1px solid #a7f3c9;
  color: #0d7a45;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 700;
}

/* Price */
.vd-price-block { margin-bottom: 24px; }
.vd-price-lbl {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8a9bbf;
  margin-bottom: 4px;
}
.vd-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #1a2744;
  line-height: 1;
}

/* CTA buttons */
.vd-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  background: #1e50d3;
  color: #fff;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  margin-bottom: 10px;
}
.vd-cta:hover { background: #1640b8; color: #fff; }
.vd-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 20px;
  background: #fff;
  color: #1a2744;
  border: 1.5px solid #1a2744;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.vd-call:hover { background: #f0f4ff; color: #1a2744; }

/* ── Right: Photo column ── */
.vd-main-placeholder {
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.vd-main-placeholder:hover img { transform: none; }
.vd-main-wrap {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  cursor: zoom-in;
  aspect-ratio: 4/3;
  background: #ececec;
  position: relative;
}
.vd-main-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.vd-main-wrap:hover img { transform: scale(1.02); }
.vd-zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.48);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  pointer-events: none;
}

/* Thumbnail grid */
.vd-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.vd-thumb {
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.55;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: opacity 0.18s, outline-color 0.15s;
}
.vd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vd-thumb:hover { opacity: 0.85; }
.vd-thumb.active { opacity: 1; outline-color: #1e50d3; }

/* ── Description section ── */
.vd-desc-section {
  border-top: 1px solid #e5e9f0;
  background: #f8f9fb;
  padding: 60px 0;
}
.vd-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a2744;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid #e5e9f0;
}
.vd-desc-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.vd-desc-text p {
  font-size: 0.875rem;
  color: #4a5568;
  line-height: 1.85;
  margin-bottom: 14px;
}
.vd-cond-list { display: flex; flex-direction: column; gap: 14px; }
.vd-cond-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.855rem;
  color: #4a5568;
  line-height: 1.6;
}
.vd-cond-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1e50d3;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Similar vehicles ── */
.vd-similar-section {
  border-top: 1px solid #e5e9f0;
  background: #fff;
  padding: 60px 0;
}
.vd-sim-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}
.sim-card {
  background: #fff;
  border: 1px solid #e5e9f0;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.25s, box-shadow 0.25s;
}
.sim-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(13,27,62,0.1); }
.sim-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f0f0f0;
}
.sim-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.sim-card:hover .sim-img img { transform: scale(1.04); }
.sim-img--ph {
  aspect-ratio: 4/3;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d0d0d0;
}
.sim-body { padding: 16px 18px 20px; }
.sim-cat { font-size: 0.67rem; font-weight: 500; color: #9aabcc; text-transform: uppercase; letter-spacing: 0.09em; display: block; margin-bottom: 5px; }
.sim-name { font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 800; color: #1a2744; margin-bottom: 8px; line-height: 1.3; }
.sim-price { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 800; color: #1e50d3; }

/* Lightbox (vehicle pages) */
.vd-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 3000;
  align-items: center;
  justify-content: center;
}
.vd-lightbox.open { display: flex; }
.vd-lb-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; box-shadow: 0 8px 60px rgba(0,0,0,0.6); display: block; }
.vd-lb-close {
  position: fixed; top: 18px; right: 24px;
  background: rgba(255,255,255,0.12); border: none; color: #fff;
  font-size: 1.5rem; width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 3001;
}
.vd-lb-close:hover { background: rgba(255,255,255,0.25); }
.vd-lb-prev, .vd-lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); border: none; color: #fff;
  font-size: 2.6rem; width: 52px; height: 52px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 3001; line-height: 1;
}
.vd-lb-prev:hover, .vd-lb-next:hover { background: rgba(255,255,255,0.25); }
.vd-lb-prev { left: 20px; }
.vd-lb-next { right: 20px; }
.vd-lb-counter {
  position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.55); font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.12em; font-weight: 600; pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .vd-hero { grid-template-columns: 1fr; gap: 36px; }
  .vd-info { position: static; }
}
@media (max-width: 768px) {
  .vd-container { padding: 0 16px; }
  .vd-desc-cols { grid-template-columns: 1fr; gap: 28px; }
  .vd-desc-section, .vd-similar-section { padding: 40px 0; }
  .vd-sim-grid { grid-template-columns: repeat(2, 1fr); }
  .vd-price { font-size: 2.2rem; }
  .vd-cta, .vd-call { padding: 13px 16px; }
  /* Photo compacte pour laisser place aux miniatures */
  .vd-main-wrap { aspect-ratio: unset; height: 240px; max-height: 240px; }
}
@media (max-width: 480px) {
  .vd-container { padding: 0 12px; }
  .vd-sim-grid { grid-template-columns: 1fr; }
  /* Image compacte sur iPhone */
  .vd-main-wrap { aspect-ratio: unset; height: 200px; max-height: 200px; }
  /* Miniatures : grille 5 colonnes visible d'un coup */
  .vd-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    overflow-x: unset;
  }
  .vd-thumb {
    flex: none;
    width: auto;
    height: auto;
    aspect-ratio: 4/3;
    border-radius: 5px;
  }
  .vd-price { font-size: 2rem; }
  .vd-title { font-size: 1.4rem; }
  .vd-cta, .vd-call { min-height: 48px; font-size: 0.78rem; }
}

/* ── Language Selector ── */

/* Reflow nav so lang-sel stays grouped on the right with nav-cta */
.nav { justify-content: flex-start; }
.nav-links { flex: 1; justify-content: center; }

.lang-sel {
  position: relative;
  flex-shrink: 0;
}

.lang-sel-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 11px;
  border: 1.5px solid #1a2744;
  border-radius: 6px;
  background: transparent;
  color: #1a2744 !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.lang-sel-btn:hover,
.lang-sel-btn[aria-expanded="true"] {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(224,99,32,0.06);
}

.lang-sel-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 188px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  padding: 5px;
  z-index: 2000;
  gap: 1px;
}
.lang-sel-menu.open { display: flex; }

.lang-opt {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: background 0.14s, color 0.14s;
  width: 100%;
}
.lang-opt:hover { background: var(--explore-bg); color: var(--accent); }
.lang-opt.active { color: var(--accent); font-weight: 700; background: rgba(224,99,32,0.07); }

/* Mobile lang grid inside mobile-nav */
.mobile-lang-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  width: 100%;
  padding: 16px 24px 4px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.mobile-lang-grid .lang-opt {
  justify-content: center;
  padding: 8px 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--secondary);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  letter-spacing: 0.03em;
}
.mobile-lang-grid .lang-opt:hover { background: var(--explore-bg); color: var(--accent); border-color: var(--accent); }
.mobile-lang-grid .lang-opt.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Hide Google Translate native toolbar — target only the GT iframe, never body */
.goog-te-banner-frame { display: none !important; }
iframe.skiptranslate { display: none !important; }
body { top: 0 !important; }
.goog-text-highlight { background-color: transparent !important; box-shadow: none !important; }
#goog-gt-tt, .goog-te-balloon-frame { display: none !important; }

@media (max-width: 768px) {
  .lang-sel { display: none; }
}
