/* ==============================
   AUTO DANENBERG — COMPLETE STYLES
   Professional, Responsive, Clean
   ============================== */

/* === RESET & VARIABLES === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --surface2: #181818;
  --surface3: #202020;
  --border: #2a2a2a;
  --red: #c8102e;
  --red-dark: #a00c24;
  --red-glow: rgba(200,16,46,0.13);
  --white: #ffffff;
  --gray: #888888;
  --radius: 4px;
  --radius-lg: 10px;
  --transition: 0.25s ease;
  --shadow: 0 8px 40px rgba(0,0,0,0.5);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 14px; display: block;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.8rem); font-weight: 900; line-height: 1.07; }
h2 { font-size: clamp(1.5rem, 3vw, 2.6rem); font-weight: 800; line-height: 1.15; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { color: #aaaaaa; }
.text-red { color: var(--red); }

/* === LAYOUT === */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 60px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.text-center { text-align: center; }
.section-header { max-width: 640px; margin-bottom: 48px; }
.section-header.center { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--gray); font-size: 16px; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; letter-spacing: 0.4px;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition); white-space: nowrap; font-family: inherit;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(200,16,46,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.07); transform: translateY(-1px); }
.btn-dark { background: var(--surface2); color: var(--white); border-color: var(--border); }
.btn-dark:hover { background: var(--surface3); border-color: #444; }
.btn-lg { padding: 18px 36px; font-size: 15px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }

/* === COOKIE BANNER === */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #111; border-top: 1px solid var(--border); padding: 18px 0;
}
#cookie-banner .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
#cookie-banner p { font-size: 13px; color: #aaa; flex: 1; min-width: 200px; }
#cookie-banner a { color: var(--red); text-decoration: underline; }
#cookie-btn { padding: 10px 24px; background: var(--red); color: #fff; border: none; border-radius: var(--radius); font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap; }
#cookie-btn:hover { background: var(--red-dark); }

/* === ANNOUNCEMENT BAR === */
.announcement { background: var(--red); color: var(--white); text-align: center; padding: 10px 24px; font-size: 13px; font-weight: 500; }
.announcement a { text-decoration: underline; margin-left: 8px; font-weight: 600; }

/* === HEADER === */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(10,10,10,0.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); transition: background var(--transition); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* === LOGO === */
.logo-wrap { display: flex; flex-direction: column; text-decoration: none; flex-shrink: 0; }
.logo { display: flex; align-items: baseline; line-height: 1; }
.logo-auto { font-size: 22px; font-weight: 900; color: var(--red); letter-spacing: -0.5px; }
.logo-danenberg { font-size: 22px; font-weight: 900; color: var(--white); letter-spacing: -0.5px; }
.logo-sub { font-size: 9px; font-weight: 500; color: var(--gray); letter-spacing: 1.5px; text-transform: uppercase; display: block; margin-top: 2px; }

/* === NAVIGATION === */
nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 5px; padding: 8px 14px; border-radius: var(--radius); font-size: 13.5px; font-weight: 500; color: #ccc; transition: color var(--transition), background var(--transition); white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--white); background: var(--surface2); }
.nav-link i.fa-chevron-down { font-size: 10px; transition: transform var(--transition); }
.nav-item:hover .fa-chevron-down { transform: rotate(180deg); }
.dropdown { position: absolute; top: 100%; left: 0; background: #161616; border: 1px solid var(--border); border-radius: var(--radius-lg); min-width: 210px; padding: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.7); opacity: 0; visibility: hidden; transform: translateY(4px); transition: all var(--transition); pointer-events: none; padding-top: 16px; }
.dropdown::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all; }
.dropdown a { display: block; padding: 10px 14px; border-radius: var(--radius); font-size: 13px; font-weight: 500; color: #bbb; transition: all var(--transition); }
.dropdown a:hover { color: var(--white); background: var(--surface2); }
.dropdown a i { width: 20px; color: var(--red); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { font-size: 13px; font-weight: 600; color: var(--white); display: flex; align-items: center; gap: 8px; }
.header-phone i { color: var(--red); font-size: 14px; }

/* === HAMBURGER & MOBILE NAV === */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--surface); overflow-y: auto; z-index: 999; padding: 24px; flex-direction: column; gap: 4px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 14px 16px; border-radius: var(--radius); font-size: 15px; font-weight: 500; color: #ccc; border-bottom: 1px solid var(--border); transition: color var(--transition); }
.mobile-nav a:hover { color: var(--white); }
.mobile-section-title { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-top: 20px; padding: 0 16px 8px; }
.mobile-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* ============================================================
   HOMEPAGE — HERO  (cinematic, bottom-left anchor)
   ============================================================ */

/* Base hero shell */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;           /* anchor content to the BOTTOM */
  overflow: hidden;
}

/* Full-bleed image */
.hero-image-bg {
  position: absolute; inset: 0;
  background-image: url('../auto-danenberg-hero.webp');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  transform: scale(1.02);           /* tiny scale so Ken Burns has no edges */
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.07); }
}

/* Multi-layer overlay: left dark for readability, right lighter so cars show */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(108deg,
      rgba(4,4,4,0.88) 0%,
      rgba(4,4,4,0.58) 40%,
      rgba(4,4,4,0.14) 72%,
      rgba(4,4,4,0.0)  100%),
    linear-gradient(180deg,
      rgba(4,4,4,0.1)  0%,
      rgba(4,4,4,0.0)  35%,
      rgba(4,4,4,0.55) 100%);
  pointer-events: none;
}

/* The body holds ALL content and is positioned in the lower-left */
.hero-body {
  position: relative; z-index: 3;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 100px;          /* big bottom pad = content sits low */
  padding-top: 90px;              /* clearance from nav */
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
}

.hero-content {
  max-width: 580px;
  width: 100%;
}

/* Badge pill */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,16,46,0.15);
  border: 1px solid rgba(200,16,46,0.4);
  border-radius: 100px; padding: 7px 16px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.3px;
  color: #ff8090;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  animation: heroFadeUp 0.7s ease 0s both;
}
.hero-badge i { font-size: 10px; }

/* Headline — bewust iets kleiner dan max zodat het pand zichtbaar blijft */
.hero-title {
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.6);
  animation: heroFadeUp 0.7s ease 0.1s both;
}
.hero-title-accent {
  font-style: normal;
  color: var(--white);
  opacity: 0.88;
}

/* Subline */
.hero-subtitle {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 36px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
  animation: heroFadeUp 0.7s ease 0.2s both;
}
.hero-br { display: block; }

/* CTA row */
.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 40px;
  animation: heroFadeUp 0.7s ease 0.3s both;
}
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 16px 32px;
  background: var(--red); color: #fff;
  border: 2px solid var(--red);
  border-radius: 6px;
  font-size: 15px; font-weight: 700; letter-spacing: 0.2px;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
  white-space: nowrap;
}
.btn-hero-primary:hover {
  background: #b80c26; border-color: #b80c26;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(200,16,46,0.45);
}
.btn-hero-outline {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 16px 32px;
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);  /* zichtbaar, niet opdringerig */
  border-radius: 6px;
  font-size: 15px; font-weight: 600;
  backdrop-filter: blur(8px);
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
  white-space: nowrap;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.18);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Trust strip */
.hero-trust {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  animation: heroFadeUp 0.7s ease 0.4s both;
}
.hero-indicator {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.80);
}
.hero-indicator i { color: #e84060; font-size: 12px; }
.hero-indicator strong {
  font-size: 14px; font-weight: 800; color: #fff;
}
.hero-trust-sep {
  display: block; width: 1px; height: 14px;
  background: rgba(255,255,255,0.22);
}

/* Scroll indicator — alleen het icoontje, geen tekst */
.hero-scroll {
  position: absolute; bottom: 36px; right: 48px; z-index: 4;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
  animation: heroFadeUp 0.7s ease 0.6s both;
}
.hero-scroll:hover { color: rgba(255,255,255,0.85); }
.hero-scroll-icon {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero-scroll-icon i { font-size: 12px; }
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* Hero entrance keyframe */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Legacy hero (non-image inner pages) */
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 70% 40%, rgba(200,16,46,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-bottom: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1.1; }
.stat-label { display: block; font-size: 12px; color: var(--gray); margin-top: 4px; font-weight: 500; }

/* Hero featured car card */
.hero-card {
  display: block; text-decoration: none;
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; transition: all var(--transition);
  border: 1px solid var(--border);
}
.hero-card:hover { border-color: rgba(200,16,46,0.4); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.hero-card .card-image {
  aspect-ratio: 4/5; position: relative; overflow: hidden;
  display: block;
}
.hero-card .card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
}
.card-model { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.card-details { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.card-price { font-size: 20px; font-weight: 800; color: var(--red); }
.card-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--red); color: var(--white);
  font-size: 11px; font-weight: 700; padding: 4px 12px;
  border-radius: 3px; text-transform: uppercase; letter-spacing: 0.5px;
}

/* ============================================================
   HOMEPAGE — USP STRIP  (refined two-line items)
   ============================================================ */
.usp-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1240px;
  margin: 0 auto;
}
.usp-item {
  display: flex; align-items: center; gap: 16px;
  padding: 26px 28px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.usp-item:last-child { border-right: none; }
.usp-item:hover { background: var(--surface2); }
.usp-item > i {
  font-size: 22px; color: var(--red); flex-shrink: 0;
}
.usp-text { display: flex; flex-direction: column; gap: 2px; }
.usp-title { font-size: 14px; font-weight: 700; color: var(--white); }
.usp-desc  { font-size: 12px; color: var(--gray); }
/* Also keep old single-span variant working */
.usp-item > span { font-size: 14px; font-weight: 600; color: var(--white); }

/* Also support the icon-box variant */
.usp-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--red-glow); border: 1px solid rgba(200,16,46,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.usp-icon i { font-size: 18px; color: var(--red); }
.usp-title { font-size: 14px; font-weight: 700; color: var(--white); }
.usp-desc { font-size: 12px; color: var(--gray); margin-top: 2px; }

/* ============================================================
   HOMEPAGE — OVER ONS (ABOUT)
   ============================================================ */
.section-about { padding: 96px 0; }
.about-header { max-width: 640px; margin-bottom: 48px; }
.about-header h2 { margin-bottom: 16px; }
.section-desc { font-size: 16px; color: var(--gray); line-height: 1.7; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start;
}
.about-text { }

/* Photo placeholder for about section */
.about-photo-placeholder {
  aspect-ratio: 4/3; background: var(--surface2); border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  color: #444; font-size: 14px;
}
.about-photo-placeholder i { font-size: 40px; color: #333; }

.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.about-stat {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; text-align: center;
  transition: all var(--transition);
}
.about-stat:hover { border-color: rgba(200,16,46,0.3); transform: translateY(-2px); }
.about-stat-number { font-size: 2rem; font-weight: 900; color: var(--red); margin-bottom: 4px; }
.about-stat-label { font-size: 13px; color: var(--gray); font-weight: 500; }

/* Check list */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #ccc; }
.check-list li i { color: var(--red); font-size: 14px; flex-shrink: 0; }

/* ============================================================
   HOMEPAGE — NIEUWSTE OCCASIONS
   ============================================================ */
.section-occasions { padding: 96px 0; background: var(--surface); }
.occasions-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 40px;
}
.section-cta { text-align: center; }

/* Split section header: title left, link right */
.section-header-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
  flex-wrap: wrap;
}
.section-header-split h2 { margin-bottom: 0; }
.btn-text-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 700; color: var(--red);
  text-decoration: none; white-space: nowrap;
  transition: gap var(--transition), color var(--transition);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(200,16,46,0.3);
}
.btn-text-link:hover { gap: 11px; color: #ff4466; border-color: #ff4466; }
.btn-text-link i { font-size: 12px; transition: transform var(--transition); }
.btn-text-link:hover i { transform: translateX(3px); }

/* Car card (homepage + occasions page) */
.car-card {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition);
}
.car-card:hover { border-color: rgba(200,16,46,0.4); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.car-image {
  aspect-ratio: 16/10; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface3);
}
.car-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.car-content { padding: 20px; }
.car-model { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.car-details { font-size: 13px; color: var(--gray); margin-bottom: 6px; }
.car-features { font-size: 12px; color: #666; margin-bottom: 14px; }
.car-price { font-size: 22px; font-weight: 800; color: var(--red); margin-bottom: 16px; }
.car-content .btn { margin-top: 4px; }

/* Car card variant used in shared CSS */
.car-img { aspect-ratio: 16/10; background: var(--surface3); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: #444; position: relative; overflow: hidden; }
.car-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.car-img i { font-size: 40px; }
.car-img span { font-size: 12px; }
.car-badge { position: absolute; top: 12px; left: 12px; background: var(--red); color: var(--white); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.5px; z-index: 2; }
.car-badge-dark { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,0.75); border: 1px solid var(--border); color: #ccc; font-size: 10px; font-weight: 600; padding: 4px 10px; border-radius: 3px; z-index: 2; }
.car-body { padding: 20px; }
.car-brand { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
.car-name { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 14px; line-height: 1.3; }
.car-name small { font-weight: 400; font-size: 13px; color: #666; display: block; margin-top: 2px; }
.car-specs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.car-spec { background: var(--surface); border: 1px solid var(--border); border-radius: 3px; padding: 4px 10px; font-size: 11px; color: var(--gray); display: flex; align-items: center; gap: 5px; }
.car-spec i { font-size: 10px; color: #555; }
.car-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.car-cta { font-size: 12px; font-weight: 600; color: var(--red); display: flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.car-card:hover .car-cta { gap: 10px; }

/* ============================================================
   HOMEPAGE — DIENSTEN PREVIEW
   ============================================================ */
.section-diensten { padding: 96px 0; }
.diensten-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.diensten-card {
  display: flex; flex-direction: column; gap: 12px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: all var(--transition); position: relative; text-decoration: none;
}
.diensten-card:hover { border-color: rgba(200,16,46,0.35); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.diensten-card i { font-size: 28px; color: var(--red); }
.diensten-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.diensten-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.diensten-card .arrow { font-size: 14px; color: var(--red); margin-top: auto; transition: transform var(--transition); }
.diensten-card:hover .arrow { transform: translateX(4px); }

/* ============================================================
   HOMEPAGE — REVIEWS STRIP
   ============================================================ */
.section-reviews { padding: 96px 0; background: var(--surface); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.review-card {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all var(--transition);
}
.review-card:hover { border-color: rgba(200,16,46,0.25); transform: translateY(-3px); }
.review-stars { color: #f5a623; font-size: 14px; margin-bottom: 14px; }
.review-text { font-size: 14px; color: #bbb; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { font-size: 13px; color: #666; font-weight: 500; }

/* ============================================================
   HOMEPAGE — CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--surface2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { color: var(--gray); font-size: 16px; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PHOTO PLACEHOLDER (reusable)
   ============================================================ */
.photo-placeholder {
  background: var(--surface2); border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  color: #444; font-size: 14px; min-height: 200px;
}
.photo-placeholder i { font-size: 40px; color: #333; }

/* Showroom banner */
.showroom-banner {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); position: relative;
  max-height: 360px;
}
.showroom-banner img {
  width: 100%; height: auto; display: block;
  object-fit: cover; max-height: 360px;
}
.showroom-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.7) 100%);
  pointer-events: none;
}

/* Photo banner with overlay effect (reusable) */
.photo-banner {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); position: relative;
  max-height: 400px;
}
.photo-banner img {
  width: 100%; height: auto; display: block;
  object-fit: cover; max-height: 400px;
}
.photo-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.6) 100%);
  pointer-events: none;
}
.photo-banner-text {
  position: absolute; bottom: 24px; left: 28px; z-index: 2;
  font-size: 14px; font-weight: 600; color: var(--white);
  letter-spacing: 0.5px;
}

/* Hero carousel fade animation */
.hero-card-fade {
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.hero-card-fade.hero-card-visible {
  opacity: 1; transform: translateY(0);
}
.hero-card-fade.hero-card-hidden {
  opacity: 0; transform: translateY(-8px);
}

/* About photo */
.about-photo {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
}
.about-photo img {
  width: 100%; height: auto; display: block;
  object-fit: cover;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { padding: 140px 0 70px; background: var(--bg); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200,16,46,0.07) 0%, transparent 70%); }
.page-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 60px 60px; opacity: 0.25; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: #888; max-width: 580px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray); margin-bottom: 20px; }
.breadcrumb a { color: var(--gray); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 10px; }

/* ============================================================
   OCCASIONS PAGE — SEARCH & FILTER
   ============================================================ */
.search-filter { padding: 0 0 20px; }
.filter-box {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  display: flex; gap: 16px; align-items: flex-end; flex-wrap: wrap;
}
.filter-group { flex: 1; min-width: 150px; }
.filter-group label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; color: var(--gray); display: block; margin-bottom: 8px;
}
.filter-group select, .filter-group input {
  width: 100%; background: var(--surface); border: 1px solid var(--border);
  color: var(--white); border-radius: var(--radius); padding: 11px 14px;
  font-size: 14px; font-family: inherit; transition: border-color var(--transition);
  appearance: none; cursor: pointer;
}
.filter-group select:focus, .filter-group input:focus { outline: none; border-color: var(--red); }
.filter-group select option { background: var(--surface2); }

/* Also support .search-bar variant */
.search-bar { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px 24px; display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap; margin-bottom: 36px; }
.search-field { flex: 1; min-width: 150px; }
.search-field label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); display: block; margin-bottom: 8px; }
.search-field select, .search-field input { width: 100%; background: var(--surface); border: 1px solid var(--border); color: var(--white); border-radius: var(--radius); padding: 11px 14px; font-size: 14px; font-family: inherit; transition: border-color var(--transition); appearance: none; cursor: pointer; }
.search-field select:focus, .search-field input:focus { outline: none; border-color: var(--red); }
.search-field select option { background: var(--surface2); }

.occasions-section { padding: 0 0 96px; }
.cars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ============================================================
   CTA SECTION (shared across pages)
   ============================================================ */
.cta-section {
  padding: 80px 0; text-align: center;
  background: linear-gradient(135deg, var(--surface2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { color: var(--gray); font-size: 16px; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-section .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   WERKPLAATS PAGE
   ============================================================ */
.diensten-grid-full { padding: 0 0 96px; }
.diensten-cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.dienst-card {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.dienst-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--red-glow) 0%, transparent 60%); opacity: 0; transition: opacity var(--transition); }
.dienst-card:hover { border-color: rgba(200,16,46,0.35); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.dienst-card:hover::before { opacity: 1; }
.dienst-num { font-size: 48px; font-weight: 900; color: var(--border); position: absolute; top: 20px; right: 24px; line-height: 1; }
.dienst-icon { width: 56px; height: 56px; border-radius: 12px; background: var(--red-glow); border: 1px solid rgba(200,16,46,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; position: relative; }
.dienst-icon i { font-size: 22px; color: var(--red); }
.dienst-card h3 { margin-bottom: 12px; position: relative; }
.dienst-card p { font-size: 14px; line-height: 1.7; position: relative; }
.dienst-list { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; position: relative; }
.dienst-list li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #bbb; }
.dienst-list li i { color: var(--red); font-size: 12px; flex-shrink: 0; }
.dienst-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--red); margin-top: 20px; transition: gap var(--transition); position: relative; }
.dienst-card:hover .dienst-link { gap: 10px; }

/* Why choose us */
.why-choose { padding: 96px 0; background: var(--surface); }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.trust-item {
  text-align: center; padding: 32px 20px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.trust-item:hover { border-color: rgba(200,16,46,0.3); transform: translateY(-3px); }
.trust-item i { font-size: 32px; color: var(--red); margin-bottom: 16px; display: block; }
.trust-item h3 { font-size: 1rem; margin-bottom: 10px; }
.trust-item p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ============================================================
   FINANCIAL LEASE PAGE
   ============================================================ */
.lease-content { padding: 0 0 96px; }
.lease-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start;
}
.lease-info h2 { margin-bottom: 16px; }
.lease-info > p { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 28px; }
.lease-info h3 { margin-bottom: 20px; color: var(--white); }
.feature-list { display: flex; flex-direction: column; gap: 20px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 14px; color: #ccc;
}
.feature-list li i { color: var(--red); font-size: 16px; margin-top: 4px; flex-shrink: 0; }
.feature-list li h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.feature-list li p { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* Calculator box */
.calculator-box {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px; position: relative; overflow: hidden;
}
.calculator-box::before { content: ''; position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; border-radius: 50%; background: var(--red-glow); pointer-events: none; }
.calculator-box h2 { margin-bottom: 8px; position: relative; }
.calc-subtitle { font-size: 14px; color: var(--gray); margin-bottom: 28px; position: relative; }
.calc-form { position: relative; }
.calc-group { margin-bottom: 24px; }
.calc-group label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); display: block; margin-bottom: 10px; }
.input-range { display: flex; align-items: center; gap: 16px; }
.input-range input[type="range"] {
  flex: 1; height: 4px; border-radius: 2px;
  background: var(--border); appearance: none; outline: none; cursor: pointer;
  background-image: linear-gradient(var(--red), var(--red));
  background-size: 50% 100%; background-repeat: no-repeat;
}
.input-range input[type="range"]::-webkit-slider-thumb {
  appearance: none; width: 18px; height: 18px; border-radius: 50%;
  background: var(--red); border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(200,16,46,0.4); cursor: pointer;
}
.price-display {
  font-size: 14px; font-weight: 700; color: var(--white);
  min-width: 120px; text-align: right; white-space: nowrap;
}
.calc-result {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; margin-bottom: 20px;
  text-align: center;
}
.calc-label { font-size: 12px; color: var(--gray); margin-bottom: 8px; }
.calc-amount { font-size: 2rem; font-weight: 900; color: var(--red); }

/* Also support old lease-calc variant */
.lease-calc { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; overflow: hidden; position: relative; }
.lease-calc::before { content: ''; position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; border-radius: 50%; background: var(--red-glow); pointer-events: none; }
.calc-field { margin-bottom: 20px; }
.calc-field label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); display: flex; justify-content: space-between; margin-bottom: 8px; }
.calc-field label span { color: var(--white); font-size: 13px; }
.calc-slider { width: 100%; height: 4px; border-radius: 2px; background: var(--border); appearance: none; outline: none; cursor: pointer; background-image: linear-gradient(var(--red), var(--red)); background-size: 50% 100%; background-repeat: no-repeat; }
.calc-slider::-webkit-slider-thumb { appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--red); border: 2px solid var(--white); box-shadow: 0 2px 8px rgba(200,16,46,0.4); cursor: pointer; }
.calc-result-label { font-size: 12px; color: var(--gray); }
.calc-result-amount { font-size: 28px; font-weight: 900; color: var(--red); }
.calc-result-sub { font-size: 11px; color: var(--gray); }
.calc-disclaimer { font-size: 11px; color: #555; margin-top: 12px; line-height: 1.6; }

/* FAQ */
.faq-section { padding: 96px 0; background: var(--surface); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.faq-item {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all var(--transition);
}
.faq-item:hover { border-color: rgba(200,16,46,0.25); }
.faq-item h3 { font-size: 15px; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; }
.faq-item h3 i { color: var(--red); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.faq-item p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ============================================================
   FINANCIEREN PAGE
   ============================================================ */
.financing-content { padding: 0 0 96px; }
.financing-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.financing-card {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all var(--transition);
}
.financing-card:hover { border-color: rgba(200,16,46,0.35); transform: translateY(-3px); }
.card-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--red-glow); border: 1px solid rgba(200,16,46,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-icon i { font-size: 22px; color: var(--red); }
.financing-card h3 { margin-bottom: 12px; }
.financing-card > p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.financing-card ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.financing-card ul li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #bbb; }
.financing-card ul li i { color: var(--red); font-size: 12px; flex-shrink: 0; }

/* Process steps */
.process-section { padding: 96px 0; }
.process-steps {
  display: flex; align-items: flex-start; gap: 24px;
  justify-content: center;
}
.step {
  flex: 1; text-align: center; max-width: 280px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 24px;
}
.step-number {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--red); color: var(--white);
  font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.step-arrow {
  display: flex; align-items: center; padding-top: 48px;
  color: var(--red); font-size: 20px;
}

/* ============================================================
   GARANTIE PAGE
   ============================================================ */
.warranty-section { padding: 0 0 96px; }
.warranty-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.warranty-card {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; position: relative;
  transition: all var(--transition);
}
.warranty-card:hover { border-color: rgba(200,16,46,0.35); transform: translateY(-3px); }
.warranty-card.featured { border-color: var(--red); }
.warranty-badge {
  position: absolute; top: -1px; right: 24px;
  background: var(--red); color: var(--white);
  font-size: 11px; font-weight: 700; padding: 6px 14px;
  border-radius: 0 0 6px 6px; text-transform: uppercase; letter-spacing: 0.5px;
}
.warranty-card h3 { font-size: 1.1rem; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.warranty-card h3 i { color: var(--red); }
.warranty-duration { font-size: 14px; font-weight: 700; color: var(--red); margin-bottom: 12px; }
.warranty-card > p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.warranty-card h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 12px; }
.warranty-card ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.warranty-card ul li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #bbb; }
.warranty-card ul li i.fa-check { color: var(--red); font-size: 12px; flex-shrink: 0; }

/* Coverage grid */
.coverage-section { padding: 96px 0; background: var(--surface); }
.coverage-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.coverage-item {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all var(--transition);
}
.coverage-item:hover { border-color: rgba(200,16,46,0.25); transform: translateY(-2px); }
.coverage-item i { font-size: 28px; color: var(--red); margin-bottom: 14px; display: block; }
.coverage-item h3 { font-size: 1rem; margin-bottom: 8px; }
.coverage-item p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ============================================================
   VERZEKEREN PAGE
   ============================================================ */
.insurance-section { padding: 0 0 96px; }
.insurance-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.insurance-card {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; position: relative;
  transition: all var(--transition);
}
.insurance-card:hover { border-color: rgba(200,16,46,0.35); transform: translateY(-3px); }
.insurance-card.featured { border-color: var(--red); }
.card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.card-header i { font-size: 28px; color: var(--red); }
.card-header h3 { font-size: 1.1rem; }
.card-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700; color: var(--red);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 12px;
}
.insurance-card > p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.insurance-card h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 10px; margin-top: 16px; }
.insurance-card ul { display: flex; flex-direction: column; gap: 6px; }
.insurance-card ul li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #bbb; }
.insurance-card ul li i.fa-check { color: var(--red); font-size: 12px; }
.insurance-card ul li i.fa-times { color: #555; font-size: 12px; }
.insurance-card .btn { margin-top: 24px; }

/* Benefits */
.benefits-section { padding: 96px 0; background: var(--surface); }
.benefits-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.benefit-item {
  text-align: center; padding: 32px 20px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.benefit-item:hover { border-color: rgba(200,16,46,0.3); transform: translateY(-3px); }
.benefit-item i { font-size: 32px; color: var(--red); margin-bottom: 16px; display: block; }
.benefit-item h3 { font-size: 1rem; margin-bottom: 10px; }
.benefit-item p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ============================================================
   REVIEWS PAGE
   ============================================================ */
.rating-section { padding: 0 0 60px; }
.rating-card {
  display: flex; align-items: center; gap: 40px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
}
.rating-score { text-align: center; flex-shrink: 0; }
.score-number { font-size: 4rem; font-weight: 900; color: var(--white); line-height: 1; }
.score-stars { color: #f5a623; font-size: 20px; margin: 8px 0; }
.score-label { font-size: 14px; font-weight: 600; color: var(--red); }
.rating-info p { font-size: 15px; color: var(--gray); margin-bottom: 16px; line-height: 1.6; }

.reviews-full { padding: 0 0 96px; }
.reviews-grid-2 {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.review-card-full {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all var(--transition);
}
.review-card-full:hover { border-color: rgba(200,16,46,0.25); transform: translateY(-3px); }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.review-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.review-info h3 { font-size: 15px; margin-bottom: 2px; }
.review-info p { font-size: 12px; color: var(--gray); }
.review-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }

/* Reviews score strip (old variant) */
.reviews-score { display: flex; align-items: center; gap: 16px; background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px 24px; }
.reviews-score .big-num { font-size: 3rem; font-weight: 900; line-height: 1; }
.reviews-score .stars { color: #f5a623; font-size: 16px; margin-bottom: 4px; }
.reviews-score .count { font-size: 12px; color: var(--gray); }

/* Google CTA */
.google-cta { padding: 0 0 60px; }
.cta-box {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px;
  text-align: center;
}
.cta-box > i { font-size: 48px; color: var(--red); margin-bottom: 20px; display: block; }
.cta-box h2 { margin-bottom: 12px; }
.cta-box p { color: var(--gray); margin-bottom: 24px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 0 0 96px; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 28px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 28px;
}
.contact-item > i {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 10px; background: var(--red-glow);
  border: 1px solid rgba(200,16,46,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--red);
}
.contact-item h3 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: #aaa; }
.contact-item a { color: #aaa; transition: color var(--transition); }
.contact-item a:hover { color: var(--red); }

/* Hours table */
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 7px 0; font-size: 13px; color: #aaa; }
.hours-table td:first-child { color: var(--white); font-weight: 500; width: 130px; }

/* Contact map */
.contact-map {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); height: 240px;
  margin-top: 24px; background: var(--surface2);
}
.contact-map iframe { width: 100%; height: 100%; border: none; display: block; filter: grayscale(1) invert(1) contrast(0.85); }

/* Contact form */
.contact-form-box {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
}
.contact-form-box h2 { margin-bottom: 28px; }

.form-wrap { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.form-wrap h3 { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: var(--gray); display: block; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--surface); border: 1px solid var(--border);
  color: var(--white); border-radius: var(--radius); padding: 12px 14px;
  font-size: 14px; font-family: inherit; transition: border-color var(--transition);
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--red); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #444; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--surface2); }

/* Additional info boxes */
.additional-info { padding: 96px 0; background: var(--surface); }
.additional-info h2 { margin-bottom: 12px; }
.additional-info .section-desc { color: var(--gray); margin-bottom: 40px; }
.info-boxes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.info-box {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  text-align: center; transition: all var(--transition);
}
.info-box:hover { border-color: rgba(200,16,46,0.3); transform: translateY(-3px); }
.info-box i { font-size: 32px; color: var(--red); margin-bottom: 16px; display: block; }
.info-box h3 { margin-bottom: 10px; }
.info-box p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* Info card variant */
.info-card { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: all var(--transition); }
.info-card:hover { border-color: rgba(200,16,46,0.3); transform: translateY(-3px); }
.info-card i { font-size: 36px; color: var(--red); margin-bottom: 16px; display: block; }
.info-card h3 { margin-bottom: 10px; }
.info-card p { font-size: 14px; line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand p { font-size: 13px; color: #666; line-height: 1.7; max-width: 280px; margin-top: 12px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: var(--surface2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--gray); font-size: 14px; transition: all var(--transition); }
.footer-social a:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: #666; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: #444; }
.footer-bottom a { font-size: 12px; color: #444; transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ============================================================
   CAR DETAIL PAGE
   ============================================================ */
.page-hero-sm { padding: 110px 0 20px; }
.car-detail-section { padding: 20px 0 60px; }
.car-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.car-detail-gallery {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: visible;
  min-width: 0;
  max-width: 100%;
  position: sticky;
  top: 90px;
}
.car-detail-info {
  min-width: 0;
}
.car-image-loading {
  display: flex; align-items: center; justify-content: center;
  min-height: 300px; color: var(--gray); font-size: 24px;
}
.car-detail-info h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 8px; }
.car-detail-type { font-size: 14px; color: #aaa; margin-bottom: 8px; line-height: 1.5; }
.car-detail-features { font-size: 14px; color: var(--red); margin-bottom: 20px; font-weight: 600; }
.car-detail-price {
  font-size: 2.2rem; font-weight: 900; color: var(--red);
  margin-bottom: 28px; padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.car-detail-specs { margin-bottom: 32px; }
.spec-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.spec-label { font-size: 14px; color: var(--gray); }
.spec-value { font-size: 14px; font-weight: 600; color: var(--white); }
.car-detail-description { margin-top: 40px; margin-bottom: 28px; padding: 28px; background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.car-detail-description h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.car-detail-description p { font-size: 14px; color: #bbb; line-height: 1.8; white-space: pre-line; }
.car-detail-actions { display: flex; flex-direction: column; gap: 12px; }
.car-detail-actions .btn { justify-content: center; }

/* No results */
.no-results { grid-column: 1 / -1; text-align: center; padding: 60px 20px; }
.no-results p { font-size: 16px; color: var(--gray); }

/* Car card as link */
a.car-card { text-decoration: none; display: block; }
a.car-card .car-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); margin-top: 14px; }
a.car-card .car-price { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 0; }
a.car-card .car-brand { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }

/* ============================================================
   SCROLL EFFECTS / MISC
   ============================================================ */
/* scroll-progress: see enhanced version at bottom of file */
.back-top { position: fixed; bottom: 90px; right: 24px; z-index: 1000; width: 44px; height: 44px; border-radius: 50%; background: var(--red); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 16px; border: none; cursor: pointer; box-shadow: 0 4px 20px rgba(200,16,46,0.4); opacity: 0; pointer-events: none; transition: all var(--transition); }
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--red-dark); transform: translateY(-2px); }
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); display: inline-block; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.4; } }

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  /* Layout */
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  /* Hero */
  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 400px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); gap: 16px; }

  /* USP */
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .usp-item { border-right: none; border-bottom: 1px solid var(--border); }
  .usp-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .usp-item:nth-child(n+3):nth-child(even) { border-right: none; }
  .usp-item:nth-last-child(-n+2) { border-bottom: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Grids */
  .occasions-grid { grid-template-columns: 1fr 1fr; }
  .diensten-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .cars-grid { grid-template-columns: 1fr 1fr; }
  .diensten-cards-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .warranty-cards { grid-template-columns: 1fr; }
  .insurance-cards { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .info-boxes { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }

  /* Lease */
  .lease-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Financing */
  .financing-cards { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Car detail */
  .car-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .car-detail-gallery { position: static; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Navigation */
  nav { display: none; }
  .hamburger { display: flex; }
  .header-phone { display: none; }
  .header-cta .btn { display: none; }

  /* Sections */
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 32px; }
  .page-hero { padding: 120px 0 50px; }

  /* Hero */
  .hero { padding: 100px 0 50px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .stat-number { font-size: 1.6rem; }

  /* Grids go single column */
  .occasions-grid { grid-template-columns: 1fr; }
  .diensten-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cars-grid { grid-template-columns: 1fr; }
  .diensten-cards-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .info-boxes { grid-template-columns: 1fr; }
  .financing-cards { grid-template-columns: 1fr; }
  .reviews-grid-2 { grid-template-columns: 1fr; }

  /* USP */
  .usp-grid { grid-template-columns: 1fr; }
  .usp-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .usp-item:last-child { border-bottom: none; }

  /* About stats */
  .about-stats { grid-template-columns: 1fr 1fr; }

  /* Process steps */
  .process-steps { flex-direction: column; align-items: center; }
  .step { max-width: 100%; width: 100%; }
  .step-arrow { padding-top: 0; transform: rotate(90deg); }

  /* Rating */
  .rating-card { flex-direction: column; text-align: center; gap: 24px; padding: 32px; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Filter */
  .filter-box { flex-direction: column; }
  .filter-group { min-width: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  /* CTA */
  .cta-banner, .cta-section { padding: 60px 0; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; justify-content: center; }

  /* Misc */
  .section-about, .section-occasions, .section-diensten, .section-reviews { padding: 60px 0; }
  .why-choose, .faq-section, .benefits-section, .additional-info, .coverage-section { padding: 60px 0; }
  .process-section { padding: 60px 0; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  h1 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  h2 { font-size: clamp(1.3rem, 5vw, 1.7rem); }

  .hero-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-number { font-size: 1.4rem; }
  .stat-label { font-size: 11px; }

  .about-stats { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .search-bar { flex-direction: column; }

  .btn-lg { padding: 16px 28px; font-size: 14px; }

  .score-number { font-size: 3rem; }

  .grid-4 { grid-template-columns: 1fr; }

  .calculator-box { padding: 24px; }
  .input-range { flex-direction: column; align-items: stretch; gap: 8px; }
  .price-display { text-align: left; min-width: auto; }

  .contact-form-box { padding: 24px; }
  .form-wrap { padding: 24px; }
}

/* ============================================================
   PHOTO GALLERY — Car detail page
   ============================================================ */

.gallery-wrapper { width: 100%; overflow: visible; }

.gallery-main {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--surface2);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}

.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: opacity 0.15s ease;
}

/* Prev / Next buttons */
.gallery-nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.55); border: 1px solid rgba(255,255,255,0.18);
  color: #fff; width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  transition: background var(--transition), border-color var(--transition);
  font-size: 15px;
}
.gallery-nav-btn:hover { background: rgba(200,16,46,0.85); border-color: var(--red); }
#gallery-prev { left: 14px; }
#gallery-next { right: 14px; }

/* Photo counter badge */
.gallery-counter {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(0,0,0,0.62); color: #e8e8e8;
  font-size: 12px; font-weight: 600; padding: 4px 12px;
  border-radius: 20px; z-index: 10; letter-spacing: 0.3px;
}

/* Thumbnail strip */
.gallery-thumbs {
  display: flex; gap: 6px; padding: 8px 0 0;
  overflow-x: auto;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.gallery-thumbs::-webkit-scrollbar { height: 4px; }
.gallery-thumbs::-webkit-scrollbar-track { background: transparent; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.gallery-thumb {
  flex-shrink: 0; width: 78px; height: 58px;
  border: 2px solid transparent; border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  transition: border-color var(--transition), opacity var(--transition);
  opacity: 0.5;
}
.gallery-thumb:hover { opacity: 0.8; }
.gallery-thumb.active { border-color: var(--red); opacity: 1; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   STATUS OVERLAYS on gallery
   ============================================================ */

.gallery-sold-overlay,
.gallery-reserved-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: flex-start;
  pointer-events: none; z-index: 8; padding: 18px;
}
.gallery-sold-overlay span,
.gallery-reserved-overlay span {
  font-size: 12px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; padding: 7px 18px;
  border-radius: var(--radius); display: flex; align-items: center; gap: 7px;
}
.gallery-sold-overlay span     { background: rgba(200,16,46,0.92); color: #fff; }
.gallery-reserved-overlay span { background: rgba(170,115,0,0.92); color: #fff; }

/* ============================================================
   STATUS BADGES on car cards
   ============================================================ */

.car-status-badge {
  position: absolute; top: 10px; left: 10px; z-index: 5;
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 11px; border-radius: 3px;
  pointer-events: none;
}
.car-status-badge.sold     { background: var(--red); color: #fff; }
.car-status-badge.reserved { background: #aa7300;    color: #fff; }

/* Dim sold + reserved car card images */
.car-sold .car-image img,
.car-reserved .car-image img     { filter: brightness(0.45) saturate(0.3); }

/* ── Footer status tag ── */
.car-footer-status {
  font-size: 11px; font-weight: 800; letter-spacing: 1.2px;
  text-transform: uppercase; padding: 4px 10px;
  border-radius: 3px; white-space: nowrap; flex-shrink: 0;
}
.car-footer-status.sold     { background: rgba(200,16,46,0.15); color: #e84060; border: 1px solid rgba(200,16,46,0.3); }
.car-footer-status.reserved { background: rgba(170,115,0,0.15); color: #d4900a; border: 1px solid rgba(170,115,0,0.3); }

/* Strikethrough price on card — rood */
.car-price-sold { color: var(--gray) !important; }
.car-price-sold s {
  text-decoration: line-through;
  text-decoration-color: #e84060;
  text-decoration-thickness: 2.5px;
  color: #e84060;
}

/* Gereserveerd: prijs oranje */
.car-price-reserved { color: #d4900a !important; }

/* Placeholder als er geen foto is */
.car-image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
  display: flex; align-items: center; justify-content: center;
}
.car-image-placeholder::after {
  content: '\f1b9'; /* fa-car */
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  font-size: 3rem; color: #333;
}

/* ============================================================
   STATUS BADGE on detail page (info panel)
   ============================================================ */

.detail-status-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: var(--radius);
  font-size: 13px; font-weight: 700; letter-spacing: 0.3px;
  margin-bottom: 16px;
}
.detail-status-badge.sold {
  background: rgba(200,16,46,0.12); color: #e84060;
  border: 1px solid rgba(200,16,46,0.28);
}
.detail-status-badge.reserved {
  background: rgba(170,115,0,0.12); color: #d4900a;
  border: 1px solid rgba(170,115,0,0.28);
}

/* ============================================================
   KENMERKEN TAGS (detail pagina)
   ============================================================ */

.car-detail-kenmerken {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 12px 0 20px;
}
.kenmerk-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,16,46,0.08); border: 1px solid rgba(200,16,46,0.2);
  color: #e84060; font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 20px; white-space: nowrap;
}
.kenmerk-tag i { font-size: 10px; }

/* Doorgestreepte prijs op detailpagina */
.car-detail-price.car-price-sold s {
  text-decoration: line-through;
  text-decoration-color: #e84060;
  text-decoration-thickness: 2.5px;
  color: #e84060;
}
.car-detail-price.car-price-reserved { color: #d4900a; }

/* ============================================================
   GALLERY — MOBILE
   ============================================================ */

@media (max-width: 768px) {
  .gallery-nav-btn { width: 36px; height: 36px; font-size: 13px; }
  #gallery-prev { left: 8px; }
  #gallery-next { right: 8px; }
  .gallery-thumb { width: 64px; height: 48px; }
}

/* ============================================================
   LIGHTBOX / FULLSCREEN ZOOM
   ============================================================ */

.lightbox-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s ease;
}
.lightbox-overlay.lightbox-open    { opacity: 1; }
.lightbox-overlay.lightbox-closing { opacity: 0; }

.lightbox-content {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  padding: 64px 80px;
}

.lightbox-img-wrap {
  position: relative;
  max-width: 100%; max-height: 100%;
  display: flex; align-items: center; justify-content: center;
}

.lightbox-img {
  max-width: 100%; max-height: calc(100vh - 128px);
  object-fit: contain; display: block;
  opacity: 0; transition: opacity 0.2s ease;
  border-radius: var(--radius);
  user-select: none;
}

.lightbox-spinner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 28px;
}

.lightbox-close {
  position: fixed; top: 18px; right: 22px;
  background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.18);
  color: #fff; width: 42px; height: 42px; border-radius: 50%;
  cursor: pointer; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition);
  z-index: 10000;
}
.lightbox-close:hover { background: var(--red); border-color: var(--red); }

.lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.18);
  color: #fff; width: 50px; height: 50px; border-radius: 50%;
  cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition);
  z-index: 10000;
}
.lightbox-nav:hover { background: var(--red); border-color: var(--red); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

.lightbox-counter {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.65); color: #bbb;
  padding: 5px 16px; border-radius: 20px; font-size: 13px;
  pointer-events: none;
}

/* Cursor hint */
.gallery-main { cursor: zoom-in; }

@media (max-width: 768px) {
  .lightbox-content { padding: 50px 12px; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 13px; }
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
}

/* ============================================================
   UI/UX PROFESSIONAL REFRESH — Enhanced styling
   ============================================================ */

/* Hero: stronger visual impact (non-image variant only) */
.hero:not(.hero-image) {
  background: linear-gradient(165deg, #0a0a0a 0%, #0f0f0f 40%, #110a0d 100%);
}
.hero-bg {
  background:
    radial-gradient(ellipse 50% 60% at 70% 35%, rgba(200,16,46,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200,16,46,0.04) 0%, transparent 60%);
}

/* Hero badge / content entrance animations */
.hero-badge {
  animation: fadeInDown 0.6s ease both;
}
.hero-title { animation: fadeInDown 0.6s ease 0.1s both; }
.hero-subtitle { animation: fadeInDown 0.6s ease 0.2s both; }
.hero-cta { animation: fadeInDown 0.6s ease 0.3s both; }
.hero-trust { animation: fadeInDown 0.6s ease 0.4s both; }
.hero-stats { animation: fadeInDown 0.6s ease 0.3s both; }

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* USP strip: icon boxes for more visual weight */
.usp-item i {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--red-glow); border: 1px solid rgba(200,16,46,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

/* Car cards: improved shadow and transitions */
.car-card {
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.car-card:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(200,16,46,0.3);
}

/* Buttons: subtle glow on primary hover */
.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(200,16,46,0.4), 0 0 0 1px rgba(200,16,46,0.2);
}

/* Section labels: subtle red line accent */
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--red);
  margin-right: 10px;
  vertical-align: middle;
}

/* Page hero: gradient accent line at bottom */
.page-hero {
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, #0d0d0d 100%);
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 30%, var(--red) 70%, transparent 100%);
  opacity: 0.3;
}

/* Footer: stronger divider */
footer {
  border-top: 1px solid var(--border);
}

/* CTA sections: subtle animated gradient */
.cta-banner {
  background: linear-gradient(135deg, #151515 0%, #0f0a0c 50%, #0a0a0a 100%);
}
.cta-section {
  background: linear-gradient(135deg, #151515 0%, #0f0a0c 50%, #0a0a0a 100%);
}

/* Review cards: gold accent on stars */
.review-stars i { transition: transform 0.2s ease; }
.review-card:hover .review-stars i { transform: scale(1.15); }

/* Diensten cards: red top accent border on hover */
.diensten-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--red);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.diensten-card:hover::before { transform: scaleX(1); }

/* Warranty/insurance cards: featured highlight border */
.warranty-card.featured,
.insurance-card.featured {
  border-color: rgba(200,16,46,0.4);
  box-shadow: 0 0 30px rgba(200,16,46,0.08);
}

/* Smooth page transitions */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Filter box: improved visual */
.filter-box {
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* No results state */
.no-results {
  text-align: center;
  padding: 60px 24px;
  color: var(--gray);
}
.no-results p { font-size: 16px; }

/* Results count */
#results-count {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 16px;
  display: block;
}

/* Scroll progress: thinner, red gradient */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 1001;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--red) 0%, #ff4466 100%);
  transition: width 50ms linear;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON + POPUP
   ============================================================ */
/* WhatsApp float button: ronde foto-knop in website style */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--red);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5), 0 0 0 4px rgba(200,16,46,0.15);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: var(--surface2);
  display: block;
}
.wa-float img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(200,16,46,0.4), 0 0 0 4px rgba(200,16,46,0.25);
}

/* Popup: dark website theme */
.wa-popup {
  position: fixed; bottom: 100px; right: 24px; z-index: 901;
  width: 360px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  overflow: hidden;
  opacity: 0; transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.wa-popup.wa-popup-show {
  opacity: 1; transform: translateY(0) scale(1);
  pointer-events: all;
}
.wa-popup-close {
  position: absolute; top: 12px; right: 16px;
  color: rgba(255,255,255,0.7); font-size: 22px; cursor: pointer;
  z-index: 2; line-height: 1;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}
.wa-popup-close:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

/* Header met foto + naam */
.wa-popup-header {
  background: linear-gradient(135deg, #151515 0%, #0f0a0c 100%);
  border-bottom: 1px solid var(--border);
  padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  position: relative;
}
.wa-popup-header::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 50%, transparent 100%);
  opacity: 0.5;
}
.wa-popup-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--red);
}
.wa-popup-name {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.wa-popup-status {
  color: var(--gray);
  font-size: 12px;
  display: flex; align-items: center; gap: 6px;
  margin-top: 2px;
}
.wa-status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Body: chat berichten */
.wa-popup-body {
  background: var(--bg);
  padding: 20px 18px;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(200,16,46,0.04) 0%, transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(200,16,46,0.03) 0%, transparent 50%);
}
.wa-popup-msg {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 4px 14px 14px 14px;
  padding: 14px 16px;
  max-width: 90%;
  position: relative;
}
.wa-popup-msg p {
  color: #ddd;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.wa-popup-time {
  color: #666;
  font-size: 11px;
  display: block;
  text-align: right;
  margin-top: 6px;
  letter-spacing: 0.3px;
}

/* Input: typ je bericht */
.wa-popup-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: var(--surface2);
  border-top: 1px solid var(--border);
}
.wa-popup-input input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 100px;
  padding: 11px 16px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}
.wa-popup-input input:focus {
  border-color: var(--red);
}
.wa-popup-input input::placeholder {
  color: #666;
}
.wa-popup-input button {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.wa-popup-input button:hover {
  background: var(--red-dark);
  transform: scale(1.05);
}

/* CTA: start gesprek */
.wa-popup-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: background 0.2s ease;
  border-top: 1px solid var(--red-dark);
}
.wa-popup-cta:hover { background: var(--red-dark); }
.wa-popup-cta i { font-size: 16px; }

@media (max-width: 480px) {
  .wa-popup { width: calc(100vw - 32px); right: 16px; bottom: 96px; }
  .wa-float { width: 54px; height: 54px; bottom: 20px; right: 16px; }
}

/* ============================================================
   WAAROM AUTO DANENBERG — 4 feature cards
   ============================================================ */
.section-waarom {
  padding: 96px 0;
  background: var(--bg);
}
.section-waarom .section-header.center p {
  max-width: 560px;
  font-size: 16px;
  margin-top: 12px;
}
.waarom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.waarom-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.waarom-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  border-radius: 16px 16px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.waarom-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,16,46,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.waarom-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,16,46,0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(200,16,46,0.1);
}
.waarom-card:hover::before { transform: scaleX(1); }
.waarom-card:hover::after  { opacity: 1; }

.waarom-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(200,16,46,0.1);
  border: 1px solid rgba(200,16,46,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  position: relative; z-index: 1;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.waarom-card:hover .waarom-icon {
  background: rgba(200,16,46,0.18);
  border-color: rgba(200,16,46,0.4);
}
.waarom-icon i {
  font-size: 22px;
  color: var(--red);
}
.waarom-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.waarom-card p {
  font-size: 14px;
  color: #999;
  line-height: 1.7;
  position: relative; z-index: 1;
}

/* ============================================================
   SITEWIDE — "AUTO" in red, "Danenberg" white
   Applies wherever .brand-name is used; also catches plain text
   via the .text-auto-red utility
   ============================================================ */
.text-red { color: var(--red) !important; }

/* ============================================================
   RESPONSIVE — Waarom grid
   ============================================================ */
@media (max-width: 1024px) {
  .waarom-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .waarom-grid { grid-template-columns: 1fr; }
  .section-waarom { padding: 60px 0; }
  /* Hero image on mobile */
  .hero.hero-image .container { padding-top: 80px; padding-bottom: 60px; }
  .hero-trust { gap: 14px; }
  .hero-trust-sep { display: none; }
}
@media (max-width: 480px) {
  .waarom-card { padding: 28px 20px; }
}

/* ============================================================
   HOMEPAGE — WAAROM NUMBERED CARDS  (v2, premium)
   ============================================================ */

/* Override the waarom section background for more contrast */
.section-waarom {
  background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Ghost number overlay */
.waarom-num {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.035);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -4px;
  transition: color 0.35s ease;
}
.waarom-card:hover .waarom-num {
  color: rgba(200,16,46,0.07);
}

/* ============================================================
   HOMEPAGE — ABOUT SECTION  (v2: photo left, info right)
   ============================================================ */
.section-about { padding: 96px 0; background: var(--surface); }

.about-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  aspect-ratio: 4/5;
}
.about-photo-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: rgba(10,10,10,0.88);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  color: #fff;
}
.about-photo-badge i { font-size: 22px; color: #f5a623; }
.about-photo-badge strong { font-size: 1.5rem; font-weight: 900; display: block; line-height: 1; }
.about-photo-badge span { font-size: 11px; color: var(--gray); }

.about-info h2 { margin-bottom: 16px; }
.about-lead {
  font-size: 17px; color: #ccc;
  line-height: 1.7; margin-bottom: 14px;
}
.about-body {
  font-size: 14px; color: var(--gray);
  line-height: 1.75; margin-bottom: 32px;
}

.about-stats-row {
  display: flex; gap: 28px;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.about-stat-sm strong {
  display: block;
  font-size: 2rem; font-weight: 900;
  color: var(--red); line-height: 1;
  margin-bottom: 4px;
}
.about-stat-sm span {
  font-size: 12px; color: var(--gray); font-weight: 500;
}

/* ============================================================
   HOMEPAGE — REVIEWS v2 (with score badge)
   ============================================================ */
.section-reviews { padding: 96px 0; background: var(--bg); }

.reviews-header {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.reviews-score-badge {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px 28px;
  flex-shrink: 0;
}
.score-big {
  font-size: 3.6rem; font-weight: 900;
  color: var(--white); line-height: 1;
}
.score-meta { display: flex; flex-direction: column; gap: 4px; }
.score-stars { color: #f5a623; font-size: 16px; }
.score-meta span { font-size: 12px; color: var(--gray); font-weight: 500; }
.reviews-header-text h2 { margin-bottom: 6px; }
.reviews-header-text p  { font-size: 15px; }

/* Review card v2 */
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column; gap: 0;
}
.review-card:hover {
  border-color: rgba(200,16,46,0.28);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.review-quote {
  font-size: 24px; color: rgba(200,16,46,0.3);
  margin-bottom: 14px;
}
.review-stars { color: #f5a623; font-size: 13px; margin-bottom: 14px; }
.review-text {
  font-size: 14px; color: #c0c0c0;
  line-height: 1.75; margin-bottom: 20px;
  font-style: italic; flex: 1;
}
.review-footer {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; flex-shrink: 0;
}
.review-author {
  font-size: 14px; font-weight: 700; color: var(--white);
  margin: 0; line-height: 1.3;
}
.review-author span { font-size: 12px; font-weight: 400; color: var(--gray); }

/* ============================================================
   HOMEPAGE — CTA BANNER v2 (bold, textured)
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: left !important;
}
.cta-banner-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 5% 50%, rgba(200,16,46,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 95% 50%, rgba(200,16,46,0.06) 0%, transparent 60%);
  pointer-events: none;
}
/* Subtle grid pattern */
.cta-banner-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.cta-banner-inner {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}
.cta-banner-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-bottom: 12px;
}
.cta-banner-text p {
  font-size: 16px; color: #888;
  max-width: 400px;
}
.cta-banner-actions {
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-start; flex-shrink: 0;
}
.btn-xl {
  padding: 18px 40px; font-size: 15px; font-weight: 700; border-radius: 6px;
}
.btn-cta-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.2);
}
.btn-cta-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}
.cta-phone-hint {
  font-size: 13px; color: var(--gray);
  display: flex; align-items: center; gap: 7px;
  margin: 0 0 0 4px;
}
.cta-phone-hint i { color: var(--red); font-size: 12px; }

/* ============================================================
   HOMEPAGE — RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid-v2 { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-wrap { max-height: 400px; }
  .about-photo-wrap img { aspect-ratio: 16/9; }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .reviews-header { gap: 24px; }
}

@media (max-width: 768px) {
  /* Hero */
  .hero-body { padding-bottom: 80px; padding-top: 80px; }
  .hero-title { letter-spacing: -0.5px; }
  .hero-cta { flex-direction: column; }
  .btn-hero-primary,
  .btn-hero-outline { width: 100%; justify-content: center; }
  .hero-trust { gap: 12px; }
  .hero-trust-sep { display: none; }
  .hero-scroll { display: none; }
  .hero-br { display: none; }

  /* USP strip */
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .usp-item { border-right: none; border-bottom: 1px solid var(--border); }
  .usp-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .usp-item:nth-last-child(-n+2) { border-bottom: none; }

  /* About */
  .about-stats-row { gap: 20px; }

  /* Reviews */
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .reviews-score-badge { width: 100%; justify-content: flex-start; }

  /* CTA */
  .cta-banner { padding: 64px 0; }
  .cta-banner-actions { width: 100%; }
  .btn-xl { width: 100%; justify-content: center; }

  /* Section split header */
  .section-header-split { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Sections spacing */
  .section-about,
  .section-occasions,
  .section-diensten,
  .section-reviews,
  .section-waarom { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero-body { padding-bottom: 60px; }
  .usp-grid { grid-template-columns: 1fr; }
  .usp-item { border-right: none !important; }
  .usp-item:last-child { border-bottom: none; }
  .about-stats-row { flex-wrap: wrap; gap: 16px; }
  .about-stat-sm { min-width: 80px; }
  .score-big { font-size: 2.8rem; }
}

/* ============================================================
   OCCASIONS SKELETON LOADER
   Wordt door cars.js verwijderd zodra echte kaarten geladen zijn
   ============================================================ */
.car-skeleton {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.car-skeleton::before {
  content: '';
  display: block;
  aspect-ratio: 16/10;
  background: var(--surface3);
}
.car-skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.04) 50%,
    transparent 100%
  );
  animation: skeletonShimmer 1.6s ease-in-out infinite;
  background-size: 200% 100%;
}
@keyframes skeletonShimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* Verberg skeletons zodra echte cars zijn geladen */
.car-skeleton.hidden { display: none; }

/* Hero scroll icon groter voor touch targets */
.hero-scroll-icon {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.28);
  display: flex; align-items: center; justify-content: center;
  animation: scrollBounce 2.2s ease-in-out infinite;
  font-size: 13px;
}

/* ============================================================
   PAGE HERO WITH IMAGE (contact, werkplaats)
   ============================================================ */
.page-hero-image {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0;
}
.page-hero-image .hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-image .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,4,4,0.4) 0%, rgba(4,4,4,0.85) 100%);
}
.page-hero-image .container {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 48px;
}
@media (max-width: 768px) {
  .page-hero-image { min-height: 280px; }
  .page-hero-image .container { padding-top: 110px; padding-bottom: 32px; }
}

/* ============================================================
   LEGAL CONTENT (privacyverklaring, cookiebeleid)
   ============================================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.legal-content h2 {
  color: var(--white);
  font-size: 1.4rem;
  margin-top: 48px;
  margin-bottom: 16px;
}
.legal-content h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-content p,
.legal-content li {
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-content ul {
  padding-left: 20px;
  list-style: disc;
}
.legal-content a {
  color: var(--red);
  text-decoration: underline;
}
.legal-content a:hover {
  color: #ff4d4d;
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.legal-content th,
.legal-content td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: #aaa;
  font-size: 14px;
}
.legal-content th {
  color: var(--white);
  font-weight: 600;
  background: var(--surface2);
}
@media (max-width: 768px) {
  .legal-content { padding: 32px 16px 60px; }
  .legal-content table { font-size: 12px; }
  .legal-content th, .legal-content td { padding: 8px 10px; }
}

/* ============================================================
   BLOG GRID
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.blog-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.blog-card-body {
  padding: 20px;
}
.blog-card-body h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.3;
}
.blog-card-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-meta {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--gray);
}
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ SECTION (shared dark theme)
   ============================================================ */
.faq-section {
  padding: 80px 0;
  background: var(--bg);
}
.faq-container,
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover {
  border-color: #444;
}
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}
.faq-question i {
  color: var(--red);
  font-size: 14px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  padding: 0 24px 20px;
  color: #aaa;
  line-height: 1.7;
  font-size: 15px;
  margin: 0;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
@media (max-width: 768px) {
  .faq-section { padding: 60px 0; }
  .faq-question { padding: 16px 20px; }
  .faq-question h3 { font-size: 0.95rem; }
  .faq-answer p { padding: 0 20px 16px; font-size: 14px; }
}

/* ============================================================
   WHATSAPP FLOATING BUTTON & POPUP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.wa-popup {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 999;
  width: 340px;
  background: #111;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
  border: 1px solid #2a2a2a;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s ease;
}
.wa-popup-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 22px;
  cursor: pointer;
  color: #888;
  line-height: 1;
  z-index: 2;
}
.wa-popup-close:hover { color: #fff; }
.wa-popup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid #2a2a2a;
}
.wa-popup-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.wa-popup-name {
  font-weight: 600;
  color: #fff;
  font-size: 15px;
}
.wa-popup-status {
  font-size: 12px;
  color: #25d366;
}
.wa-popup-body {
  padding: 16px 20px;
}
.wa-popup-msg {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 12px 16px;
  position: relative;
}
.wa-popup-msg p {
  color: #ddd;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.wa-popup-time {
  display: block;
  text-align: right;
  font-size: 11px;
  color: #666;
  margin-top: 6px;
}
.wa-popup-input {
  display: flex;
  gap: 8px;
  padding: 0 20px 16px;
}
.wa-popup-input input {
  flex: 1;
  padding: 10px 14px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 24px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.wa-popup-input input::placeholder {
  color: #666;
}
.wa-popup-input input:focus {
  border-color: #25d366;
}
.wa-popup-input button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.wa-popup-input button:hover {
  background: #20bd5a;
}
.wa-popup-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0 0 16px 16px;
  text-decoration: none;
  transition: background 0.2s;
}
.wa-popup-cta:hover {
  background: #20bd5a;
}
@media (max-width: 480px) {
  .wa-popup { right: 12px; bottom: 88px; width: calc(100vw - 24px); max-width: 340px; }
  .wa-float { bottom: 16px; right: 16px; width: 50px; height: 50px; font-size: 24px; }
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
#back-top {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 997;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
#back-top.visible {
  opacity: 1;
  pointer-events: auto;
}
#back-top:hover {
  background: var(--surface3);
  transform: translateY(-2px);
}

/* ============================================================
   BLOG POST: highlights, author, FAQ, captions, quotes
   ============================================================ */

/* Bold highlights met lichtere kleur voor key takeaways */
.blog-post-content strong,
.blog-post-content b {
  color: #ff6b7a;
  font-weight: 700;
}

/* Author box bovenaan blog */
.blog-author {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}
.blog-author-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
  flex-shrink: 0;
}
.blog-author-info { flex: 1; min-width: 0; }
.blog-author-name { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.blog-author-meta { color: var(--gray); font-size: 13px; line-height: 1.4; }
.blog-author-meta span { color: #ff6b7a; }

/* Image caption onder afbeeldingen */
.blog-post-content figure {
  margin: 32px 0;
}
.blog-post-content figure img {
  margin: 0 0 10px 0 !important;
}
.blog-post-content figcaption {
  color: var(--gray);
  font-size: 13px;
  font-style: italic;
  text-align: center;
  padding: 0 16px;
  line-height: 1.5;
}

/* Klant quote in blog */
.blog-quote {
  margin: 36px 0;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--surface2) 0%, var(--surface) 100%);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-lg);
  position: relative;
}
.blog-quote::before {
  content: '\201C';
  position: absolute;
  top: -10px; left: 16px;
  font-size: 80px;
  color: var(--red);
  opacity: 0.25;
  line-height: 1;
  font-family: Georgia, serif;
}
.blog-quote p {
  color: #d4d4d4 !important;
  font-size: 16px !important;
  font-style: italic;
  line-height: 1.7 !important;
  margin: 0 0 14px 0 !important;
  position: relative;
  z-index: 1;
}
.blog-quote-author {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--gray);
}
.blog-quote-author strong {
  color: var(--white) !important;
  font-weight: 700;
}
.blog-quote-stars {
  color: #f5a623;
  font-size: 12px;
}

/* FAQ sectie in blog */
.blog-faq {
  margin: 48px 0 32px;
}
.blog-faq h2 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 24px;
}
.blog-faq-item {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
}
.blog-faq-q {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  user-select: none;
  transition: background var(--transition);
}
.blog-faq-q:hover { background: var(--surface3); }
.blog-faq-q::after {
  content: '+';
  font-size: 24px;
  color: var(--red);
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.blog-faq-item.open .blog-faq-q::after {
  content: '\2212';
}
.blog-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 22px;
}
.blog-faq-item.open .blog-faq-a {
  max-height: 500px;
  padding: 0 22px 20px 22px;
}
.blog-faq-a p {
  color: #b8b8b8 !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

/* Key takeaway box (call-out) */
.blog-takeaway {
  background: rgba(200,16,46,0.05);
  border: 1px solid rgba(200,16,46,0.25);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 32px 0;
}
.blog-takeaway-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff6b7a;
  margin-bottom: 8px;
  display: block;
}
.blog-takeaway p {
  color: #d4d4d4 !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}
