/*
 * Bestand  : homepagina.css
 * Project  : Verkeersschool Dijkhuizen
 * Datum    : 2026-04-14
 * Doel     : Pagina-specifieke opmaak voor index.html — premium & luxe stijl
 */

@import url('variabelen.css');


/* ─── Scroll-animaties — elementen worden zichtbaar bij scrollen ────────────── */

.animeer {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animeer.zichtbaar {
  opacity: 1;
  transform: translateY(0);
}

.animeer:nth-child(2) { transition-delay: 0.08s; }
.animeer:nth-child(3) { transition-delay: 0.16s; }
.animeer:nth-child(4) { transition-delay: 0.24s; }
.animeer:nth-child(5) { transition-delay: 0.32s; }


/* ─── Hulpklasse — gecentreerde tekst ─────────────────────────────────────── */

.gecentreerd {
  text-align: center;
}


/* ─── Decoratieve sectie-onderlijn — gedeeld door meerdere secties ──────────── */

.sectie-kop {
  margin-bottom: var(--ruimte-2);
}

.sectie-kop::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--kleur-accent);
  border-radius: 2px;
  margin-top: var(--ruimte-2);
}

.sectie-kop.gecentreerd::after {
  margin-left: auto;
  margin-right: auto;
}

.sectie-sub {
  color: var(--kleur-secundair);
  font-size: var(--tekst-lg);
  margin-bottom: var(--ruimte-10);
}


/* ─── Foto-plaatshouder ─────────────────────────────────────────────────────── */

.foto-plaatshouder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--ruimte-3);
  text-align: center;
  background-color: #f0f4fa;
  border: 2px dashed #c7d3e8;
  border-radius: var(--afronding);
  min-height: 420px;
  width: 100%;
  padding: var(--ruimte-6);
  box-sizing: border-box;
}

.foto-plaatshouder--klein {
  min-height: 220px;
  border-radius: calc(var(--afronding) - 2px) calc(var(--afronding) - 2px) 0 0;
  border-bottom: none;
}

.foto-plaatshouder-icoon {
  font-size: 2.25rem;
  line-height: 1;
  opacity: 0.35;
}

.foto-plaatshouder-label {
  font-family: var(--font-tekst);
  font-size: var(--tekst-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0;
}

.foto-plaatshouder-pad {
  font-family: 'Courier New', Courier, monospace;
  font-size: var(--tekst-sm);
  font-weight: 700;
  color: var(--kleur-tekst);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 6px 14px;
  margin: 0;
  word-break: break-all;
}

.foto-plaatshouder-spec {
  font-family: var(--font-tekst);
  font-size: var(--tekst-xs);
  color: #94a3b8;
  margin: 0;
  line-height: 1.6;
}

.foto-plaatshouder-onderwerp {
  font-family: var(--font-tekst);
  font-size: var(--tekst-xs);
  font-style: italic;
  color: #cbd5e1;
  margin: 0;
}


/* ─────────────────────────────────────────────────────────────────────────────
   ACTIE-BALK — premium donker met goud-accent
   ───────────────────────────────────────────────────────────────────────────── */

.actie-balk {
  background: var(--kleur-accent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
  /* Standaard verborgen op telefoon en tablet — content past niet
     comfortabel en concurreert met de hoofd-navigatie. Vanaf 1024px tonen. */
  display: none;
}

@media (min-width: 1024px) {
  .actie-balk {
    display: block;
  }
}

.actie-balk-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--ruimte-2);
  padding-top: 9px;
  padding-bottom: 9px;
}

.actie-balk-contact,
.actie-balk-social {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--ruimte-4);
}

.actie-balk-link {
  color: rgba(255, 255, 255, 0.90);
  font-size: var(--tekst-xs);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color var(--overgang);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.actie-balk-link:hover {
  color: var(--kleur-wit);
  text-decoration: none;
}

.actie-balk-icoon {
  flex-shrink: 0;
  vertical-align: middle;
}


/* ─────────────────────────────────────────────────────────────────────────────
   HERO — volle breedte, dramatische gradient overlay, golfrand onderkant
   ───────────────────────────────────────────────────────────────────────────── */

.held-achtergrond {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  overflow: hidden;
}

.held-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Meerdere gradiëntlagen voor dramatische diepte */
.held-achtergrond::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      135deg,
      rgba(52, 58, 64, 0.60) 0%,
      rgba(52, 58, 64, 0.40) 50%,
      rgba(0, 123, 255, 0.20) 100%
    );
  pointer-events: none;
}

/* Subtiele gloed rechtsboven */
.held-achtergrond::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 80% 20%, rgba(0, 123, 255, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.held-overlay {
  padding-top: var(--ruimte-16);
  padding-bottom: calc(var(--ruimte-12) + 60px);
  position: relative;
  z-index: 1;
}

.held-inhoud {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: var(--ruimte-5);
}

.held-inhoud h1 {
  color: var(--kleur-wit);
  letter-spacing: -0.03em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
  line-height: 1.3;
}

/* Accent-woord in de h1 */
.held-accent {
  color: var(--kleur-wit);
}

.held-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--tekst-lg);
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

.held-knoppen {
  display: flex;
  gap: var(--ruimte-3);
  flex-wrap: wrap;
  margin-top: var(--ruimte-1);
}

/* Golfrand SVG onderkant */
.held-golf {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  z-index: 2;
}

.held-golf svg {
  display: block;
  width: 100%;
  height: 60px;
}


/* ─────────────────────────────────────────────────────────────────────────────
   RIJBEWIJSCATEGORIEËN — gradient banner + premium chip strip
   ───────────────────────────────────────────────────────────────────────────── */

.rijbewijzen-sectie {
  overflow-x: clip;
}

/* Rijbewijzen banner */
.rijbewijzen-banner {
  height: 240px;
  background: linear-gradient(135deg, var(--kleur-accent) 0%, var(--kleur-accent-diep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: clip;
  position: relative;
}

/* Radiale gloed in het midden */
.rijbewijzen-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

/* Dunne accentlijn bovenaan */
.rijbewijzen-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.30);
}

.rijbewijzen-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--ruimte-2);
}

/* Kleine goud-overline boven de titel */
.rijbewijzen-overlay::before {
  content: '— rijopleidingen —';
  font-family: var(--font-tekst);
  font-size: var(--tekst-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  opacity: 1;
}

.rijbewijzen-titel {
  font-family: var(--font-kop);
  font-size: var(--tekst-3xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--kleur-wit);
  text-align: center;
  margin: 0;
  line-height: 1.3;
}

/* Chip-strip — witte balk onder de banner */
.rijbewijzen-strip {
  background: var(--kleur-wit);
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.09);
  padding: var(--ruimte-5) var(--ruimte-4);
}

.categorie-rij {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--ruimte-2) var(--ruimte-3);
  max-width: var(--container-breed);
  margin: 0 auto;
}

/* Premium chip met subtiele border */
.categorie-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px 10px 10px;
  border-radius: var(--afronding-pill);
  background: var(--kleur-wit);
  border: 1.5px solid #dde4f0;
  box-shadow: var(--schaduw-zacht);
  text-decoration: none;
  color: var(--kleur-tekst);
  font-weight: 500;
  transition: var(--overgang);
}

.categorie-chip:hover {
  border-color: var(--kleur-accent);
  color: var(--kleur-donker);
  background: var(--kleur-wit);
  box-shadow: 0 4px 18px rgba(0, 123, 255, 0.15);
  transform: translateY(-3px);
  text-decoration: none;
}

.categorie-chip:hover .categorie-chip-icoon {
  background: var(--kleur-accent-diep);
}

.categorie-chip-icoon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--kleur-accent);
  flex-shrink: 0;
  transition: background var(--overgang);
}

.categorie-chip-icoon svg {
  width: 20px;
  height: 20px;
  fill: var(--kleur-wit);
  display: block;
}

.categorie-chip-label {
  font-family: var(--font-tekst);
  font-size: var(--tekst-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* ─────────────────────────────────────────────────────────────────────────────
   OVER ONS — foto links, tekst rechts
   ───────────────────────────────────────────────────────────────────────────── */

.over-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ruimte-12);
  align-items: center;
}

.over-tekst {
  display: flex;
  flex-direction: column;
  gap: var(--ruimte-4);
}

.over-tekst h2 {
  margin-bottom: 0;
  position: relative;
  padding-bottom: var(--ruimte-3);
}

/* Accent-lijn onder de h2 in over ons */
.over-tekst h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 3px;
  background: var(--kleur-accent);
  border-radius: 2px;
}

.over-tekst p { margin-bottom: 0; }

.over-tagline {
  font-size: var(--tekst-lg);
  font-style: italic;
  color: var(--kleur-secundair);
  margin: 0 !important;
}

.over-afbeelding .foto-plaatshouder {
  min-height: 380px;
  border-radius: var(--afronding-groot);
}

.over-afbeelding {
  position: relative;
}

/* Decoratieve kleur-blok achter de foto */
.over-afbeelding::before {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80%;
  height: 80%;
  background: linear-gradient(135deg, var(--kleur-accent) 0%, var(--kleur-accent-diep) 100%);
  border-radius: var(--afronding-groot);
  z-index: 0;
  opacity: 0.12;
}

.over-foto {
  width: 100%;
  height: auto;
  border-radius: var(--afronding-groot);
  object-fit: cover;
  position: relative;
  z-index: 1;
}


/* ─────────────────────────────────────────────────────────────────────────────
   USP-SECTIE — vier kaarten: foto + icoon-badge + label
   ───────────────────────────────────────────────────────────────────────────── */

.usp-sectie {
  background: var(--kleur-licht-blauw) !important;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--ruimte-5);
  margin-top: var(--ruimte-10);
}

.usp-kaart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--ruimte-3);
  text-align: center;
}

.usp-foto-wrapper {
  position: relative;
  width: 100%;
}

.foto-plaatshouder--usp {
  min-height: 180px;
  border-radius: var(--afronding);
}

.usp-foto {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--afronding);
  display: block;
  transition: transform var(--overgang);
}

.usp-kaart:hover .usp-foto {
  transform: scale(1.03);
}

/* Clip overflow voor de schaal-animatie */
.usp-foto-wrapper {
  overflow: hidden;
  border-radius: var(--afronding);
}

.usp-icoon-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--kleur-accent) 0%, var(--kleur-accent-diep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: var(--schaduw-accent), 0 0 0 4px var(--kleur-wit);
}

.usp-label {
  margin-top: var(--ruimte-4);
  font-weight: 600;
  font-size: var(--tekst-base);
  color: var(--kleur-tekst);
  letter-spacing: -0.01em;
}


/* ─────────────────────────────────────────────────────────────────────────────
   CITAAT-SECTIE — grote quote + stats links, foto rechts
   ───────────────────────────────────────────────────────────────────────────── */

.citaat-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ruimte-12);
  align-items: center;
}

.citaat-tekst {
  display: flex;
  flex-direction: column;
  gap: var(--ruimte-6);
}

.citaat-quote {
  font-family: var(--font-kop);
  font-size: var(--tekst-2xl);
  font-weight: 700;
  line-height: 1.5;
  color: var(--kleur-tekst);
  margin: 0;
  letter-spacing: -0.01em;
}

.citaat-aanhalingsteken {
  color: var(--kleur-secundair);
  font-size: 2em;
  line-height: 0;
  vertical-align: -0.3em;
}

.citaat-stats {
  display: flex;
  gap: var(--ruimte-8);
  flex-wrap: wrap;
}

.citaat-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

/* Verticale goud-lijn als separator */
.citaat-stat::before {
  content: '';
  position: absolute;
  top: 4px;
  left: -24px;
  width: 2px;
  height: 60%;
  background: linear-gradient(180deg, var(--kleur-secundair), transparent);
  border-radius: 2px;
}

.citaat-stat:first-child::before {
  display: none;
}

.citaat-getal {
  font-family: var(--font-kop);
  font-size: var(--tekst-3xl);
  font-weight: 800;
  color: var(--kleur-accent);
  line-height: 1;
  letter-spacing: -0.03em;
}

.citaat-label {
  font-size: var(--tekst-xs);
  color: var(--kleur-secundair);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.citaat-foto-wrapper .foto-plaatshouder {
  min-height: 340px;
  border-radius: var(--afronding-groot);
}

.citaat-foto {
  width: 100%;
  height: auto;
  border-radius: var(--afronding-groot);
  object-fit: cover;
}


/* ─────────────────────────────────────────────────────────────────────────────
   OPLEIDINGEN-KOP — titel + link naast elkaar
   ───────────────────────────────────────────────────────────────────────────── */

.opleidingen-kop {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--ruimte-3);
  margin-bottom: var(--ruimte-8);
}

.sectie-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--kleur-accent);
  font-size: var(--tekst-sm);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--overgang);
  letter-spacing: 0.01em;
}

.sectie-link:hover {
  color: var(--kleur-accent-diep);
  text-decoration: none;
  gap: 10px;
}


/* ─────────────────────────────────────────────────────────────────────────────
   OPLEIDINGEN PREVIEW — 2×2 grid met foto-kaarten
   ───────────────────────────────────────────────────────────────────────────── */

.opleidingen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--ruimte-6);
}

.opleidingen-grid .kaart {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.kaart-afbeelding {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background-color: var(--kleur-licht);
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.kaart:hover .kaart-afbeelding {
  transform: scale(1.04);
}

.kaart-inhoud {
  padding: var(--ruimte-4) var(--ruimte-5);
  display: flex;
  flex-direction: column;
  gap: var(--ruimte-2);
  flex: 1;
}

.kaart-inhoud h3 {
  margin-top: var(--ruimte-1);
  margin-bottom: 0;
  font-size: var(--tekst-xl);
  color: var(--kleur-accent);
}

.kaart-inhoud p {
  margin-bottom: 0;
  flex: 1;
  color: var(--kleur-secundair);
  font-size: var(--tekst-sm);
  line-height: 1.7;
}

.kaart-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--kleur-accent);
  font-weight: 600;
  font-size: var(--tekst-sm);
  text-decoration: none;
  margin-top: var(--ruimte-2);
  transition: var(--overgang);
  letter-spacing: 0.01em;
}

.kaart-link:hover {
  gap: 9px;
  text-decoration: none;
  color: var(--kleur-accent-diep);
}

.opleidingen-actie {
  margin-top: var(--ruimte-8);
}


/* ─────────────────────────────────────────────────────────────────────────────
   CTA SECTIE — dramatische gradient, premium feel
   ───────────────────────────────────────────────────────────────────────────── */

.cta-sectie {
  text-align: center;
  background: var(--kleur-donker) !important;
  position: relative;
  overflow: hidden;
}

/* Radiale gloed in het midden */
.cta-sectie::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.16) 0%, transparent 65%);
  pointer-events: none;
}

/* Goud-to-accent lijn bovenaan */
.cta-sectie::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--kleur-accent);
}

.cta-sectie h2 {
  color: var(--kleur-wit);
  margin-bottom: var(--ruimte-3);
  position: relative;
  z-index: 1;
}

.cta-tekst {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--tekst-lg);
  margin-bottom: var(--ruimte-6);
  position: relative;
  z-index: 1;
}

.cta-knoppen {
  display: flex;
  justify-content: center;
  gap: var(--ruimte-3);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}


/* ─────────────────────────────────────────────────────────────────────────────
   VOORDELEN (legacy grid)
   ───────────────────────────────────────────────────────────────────────────── */

.voordelen-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--ruimte-6);
  margin-top: var(--ruimte-10);
}

.voordelen-grid .kaart {
  grid-column: span 2;
}

.voordelen-grid .kaart:nth-child(4) { grid-column: 2 / span 2; }
.voordelen-grid .kaart:nth-child(5) { grid-column: 4 / span 2; }

.kaart-icoon {
  font-size: var(--tekst-3xl);
  line-height: 1;
  margin-bottom: var(--ruimte-3);
}

.voordelen-grid .kaart h3 {
  margin-bottom: var(--ruimte-2);
}


/* ─────────────────────────────────────────────────────────────────────────────
   STATISTIEKEN (legacy)
   ───────────────────────────────────────────────────────────────────────────── */

.statistieken-inner { text-align: center; }

.statistiek-groot {
  font-family: var(--font-kop);
  font-size: var(--tekst-4xl);
  font-weight: 800;
  color: var(--kleur-accent);
  line-height: 1;
  padding-bottom: 0.15em;
  margin-bottom: var(--ruimte-3);
}

.statistiek-label {
  color: rgba(255,255,255,0.75);
  font-size: var(--tekst-lg);
  margin-bottom: var(--ruimte-10);
}

.statistieken-rij {
  display: flex;
  justify-content: center;
  gap: var(--ruimte-12);
  flex-wrap: wrap;
}

.statistiek-item { text-align: center; }

.statistiek-getal {
  font-family: var(--font-kop);
  font-size: var(--tekst-3xl);
  font-weight: 700;
  color: var(--kleur-wit);
  line-height: 1;
  padding-bottom: 0.15em;
  margin-bottom: var(--ruimte-1);
}

.statistiek-omschrijving {
  color: rgba(255,255,255,0.55);
  font-size: var(--tekst-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0;
}


/* ─────────────────────────────────────────────────────────────────────────────
   HERO (legacy fallback)
   ───────────────────────────────────────────────────────────────────────────── */

.held {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding-top: var(--ruimte-10);
  padding-bottom: var(--ruimte-10);
}

.held-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ruimte-12);
  align-items: center;
  width: 100%;
}

.held-afbeelding img {
  width: 100%;
  height: auto;
  border-radius: var(--afronding);
  object-fit: cover;
  min-height: 420px;
  background-color: var(--kleur-licht);
}


/* ─────────────────────────────────────────────────────────────────────────────
   FOOTER — gedetailleerde stijlen per kolom
   ───────────────────────────────────────────────────────────────────────────── */

.footer-logo {
  font-family: var(--font-kop);
  font-size: var(--tekst-xl);
  font-weight: 800;
  color: var(--kleur-wit);
  margin-bottom: var(--ruimte-3);
  letter-spacing: -0.02em;
}

.footer-beschrijving {
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--tekst-sm);
  line-height: 1.8;
  margin-bottom: var(--ruimte-4);
}

.footer-adres {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: var(--ruimte-1);
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--tekst-sm);
}

.footer-kop {
  font-family: var(--font-tekst);
  font-size: var(--tekst-xs);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.90);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--ruimte-4);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--ruimte-2);
}

.footer-link {
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--tekst-sm);
  text-decoration: none;
  transition: color var(--overgang);
}

.footer-link:hover {
  color: var(--kleur-wit);
  text-decoration: none;
}


/* ─────────────────────────────────────────────────────────────────────────────
   WERVING-KAART — premium glassmorphism kaart over de hero
   ───────────────────────────────────────────────────────────────────────────── */

/* Hero-sectie heeft al z-index: 1 via .held-achtergrond */

@property --werving-getal {
  syntax: "<integer>";
  initial-value: 0;
  inherits: false;
}

@keyframes werving-teller-op {
  to { --werving-getal: 2; }
}

@keyframes werving-puls-ring {
  0%   { box-shadow: 0 0 0 0   rgba(0, 123, 255, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(0, 123, 255, 0);    }
  100% { box-shadow: 0 0 0 0   rgba(0, 123, 255, 0);    }
}

.werving-kaarten {
  position: absolute;
  bottom: -20px;
  right: var(--ruimte-4);
  width: 360px;
  z-index: 3;
  /* Standaard verborgen op telefoon en tablet — voorkomt overlap met
     hero-tekst. Vanaf 1024px (kleine laptop) wel tonen. */
  display: none;
  flex-direction: column;
  gap: var(--ruimte-2);
}

@media (min-width: 1024px) {
  .werving-kaarten {
    display: flex;
  }
}

.werving-kaart {
  background: rgba(255, 255, 255, 0.97);
  border-top: 3px solid var(--kleur-accent);
  border-radius: var(--afronding-groot);
  box-shadow: var(--schaduw-sterk), 0 20px 48px -8px rgba(0, 123, 255, 0.22);
  padding: var(--ruimte-4) var(--ruimte-5);

  display: flex;
  flex-direction: column;
  gap: var(--ruimte-2);
}

.werving-voordelen {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.werving-voordelen li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-tekst);
  font-size: var(--tekst-sm);
  color: var(--kleur-tekst);
}

.werving-voordelen li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--kleur-accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px 11px;
  background-repeat: no-repeat;
  background-position: center;
}

.werving-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-tekst);
  font-size: var(--tekst-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--kleur-secundair);
  margin: 0;
}

.werving-puls {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--kleur-accent);
  animation: werving-puls-ring 1.8s ease-out infinite;
}

.werving-titel {
  font-family: var(--font-kop);
  font-size: var(--tekst-2xl);
  font-weight: 800;
  color: var(--kleur-accent);
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.02em;
}

.werving-sub {
  font-family: var(--font-tekst);
  font-size: var(--tekst-base);
  color: var(--kleur-secundair);
  line-height: 1.6;
  margin: 0;
}

.werving-teller-rij {
  display: flex;
  align-items: baseline;
  gap: var(--ruimte-2);
  padding: var(--ruimte-2) var(--ruimte-3);
  background: var(--kleur-licht);
  border-radius: var(--afronding);
}

.werving-teller {
  --werving-getal: 0;
  counter-reset: getal var(--werving-getal);
  animation: werving-teller-op 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
  font-family: var(--font-kop);
  font-size: var(--tekst-3xl);
  font-weight: 800;
  color: var(--kleur-accent);
  line-height: 1;
}

.werving-teller::after {
  content: counter(getal);
}

.werving-teller-label {
  font-family: var(--font-tekst);
  font-size: var(--tekst-sm);
  font-weight: 500;
  color: var(--kleur-neutraal);
}

.werving-knop {
  align-self: flex-start;
}


/* ─────────────────────────────────────────────────────────────────────────────
   SECTIE-OVERLINE — eyebrow label boven sectie-koppen (premium agency-stijl)
   ───────────────────────────────────────────────────────────────────────────── */

.sectie-overline {
  font-family: var(--font-tekst);
  font-size: var(--tekst-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kleur-accent);
  margin: 0 0 var(--ruimte-2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sectie-overline::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--kleur-accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.sectie-overline--gecentreerd {
  justify-content: center;
}

.sectie-overline--gecentreerd::before {
  display: none;
}

.sectie-overline--licht {
  color: rgba(255, 255, 255, 0.70);
}

.sectie-overline--licht::before {
  background: rgba(255, 255, 255, 0.50);
}


/* ─────────────────────────────────────────────────────────────────────────────
   SECTIE-HEADER — gecentreerde kop-blok
   ───────────────────────────────────────────────────────────────────────────── */

.sectie-header {
  text-align: center;
  margin-bottom: var(--ruimte-12);
}

.sectie-header .sectie-overline {
  justify-content: center;
}

.sectie-header .sectie-kop {
  margin-top: var(--ruimte-2);
  margin-bottom: 0;
}


/* ─────────────────────────────────────────────────────────────────────────────
   OVER ONS — fotoframe met drijvende statbadge
   ───────────────────────────────────────────────────────────────────────────── */

.over-foto-kader {
  position: relative;
  display: inline-block;
  width: 100%;
}

.over-foto-kader::before {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 75%;
  height: 75%;
  background: linear-gradient(135deg, var(--kleur-accent) 0%, var(--kleur-accent-diep) 100%);
  border-radius: var(--afronding-groot);
  z-index: 0;
  opacity: 0.10;
}

.over-foto-kader::after {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 56px;
  height: 56px;
  border-top: 3px solid var(--kleur-accent);
  border-left: 3px solid var(--kleur-accent);
  border-radius: 4px 0 0 0;
  opacity: 0.40;
  z-index: 2;
  pointer-events: none;
}

.over-stat-badge {
  position: absolute;
  bottom: -24px;
  right: 24px;
  background: var(--kleur-wit);
  border-top: 3px solid var(--kleur-accent);
  border-radius: var(--afronding);
  box-shadow: var(--schaduw-sterk), 0 8px 32px rgba(0, 123, 255, 0.18);
  padding: var(--ruimte-3) var(--ruimte-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  z-index: 2;
  min-width: 100px;
  text-align: center;
}

.over-stat-getal {
  font-family: var(--font-kop);
  font-size: var(--tekst-3xl);
  font-weight: 800;
  color: var(--kleur-accent);
  line-height: 1;
  letter-spacing: -0.03em;
}

.over-stat-omschrijving {
  font-family: var(--font-tekst);
  font-size: var(--tekst-xs);
  font-weight: 600;
  color: var(--kleur-secundair);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  hyphens: auto;
}

.over-ons .over-tekst {
  padding-bottom: var(--ruimte-6);
}


/* ─────────────────────────────────────────────────────────────────────────────
   KAART FOTO WRAPPER — clip voor scale-hover
   ───────────────────────────────────────────────────────────────────────────── */

.kaart-foto-wrapper {
  overflow: hidden;
  border-radius: calc(var(--afronding) - 1px) calc(var(--afronding) - 1px) 0 0;
  flex-shrink: 0;
}

.kaart-foto-wrapper .kaart-afbeelding {
  border-radius: 0;
}

.kaart-foto-wrapper .foto-plaatshouder--klein {
  border-radius: 0;
  border-bottom: none;
}


/* ─────────────────────────────────────────────────────────────────────────────
   OPLEIDINGEN-KOP — overline + h2 gestapeld, link rechts
   ───────────────────────────────────────────────────────────────────────────── */

.opleidingen-kop-tekst {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.opleidingen-kop-tekst h2 {
  margin-top: var(--ruimte-1);
}

.opleidingen-kop .sectie-link {
  margin-top: var(--ruimte-5);
  align-self: flex-end;
}


/* ─────────────────────────────────────────────────────────────────────────────
   CTA-GOLF — golfrand bovenaan de CTA-sectie
   ───────────────────────────────────────────────────────────────────────────── */

.cta-golf {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  z-index: 1;
}

.cta-golf svg {
  display: block;
  width: 100%;
  height: 64px;
}

.cta-sectie .container {
  position: relative;
  z-index: 2;
  padding-top: var(--ruimte-6);
}


/* ─────────────────────────────────────────────────────────────────────────────
   FOOTER LOGO — afbeelding + social links
   ───────────────────────────────────────────────────────────────────────────── */

.footer-logo-link {
  display: inline-block;
  margin-bottom: var(--ruimte-4);
  opacity: 0.90;
  transition: opacity var(--overgang);
  text-decoration: none;
}

.footer-logo-link:hover {
  opacity: 1;
  text-decoration: none;
}

.footer-logo-afbeelding {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-social {
  margin-top: var(--ruimte-6);
}

.footer-social-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--ruimte-2);
  margin-top: var(--ruimte-3);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--tekst-sm);
  text-decoration: none;
  transition: color var(--overgang), padding-left var(--overgang);
  padding-left: 0;
}

.footer-social-link:hover {
  color: var(--kleur-wit);
  text-decoration: none;
  padding-left: 6px;
}


/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE — aanvullingen voor nieuwe componenten
   ───────────────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {

  .sectie-overline {
    justify-content: center;
  }

  .sectie-overline::before {
    display: none;
  }

  .sectie-header {
    margin-bottom: var(--ruimte-8);
  }

  .over-stat-badge {
    right: 12px;
    bottom: -20px;
    padding: var(--ruimte-2) var(--ruimte-3);
    min-width: 80px;
  }

  .over-stat-getal {
    font-size: var(--tekst-2xl);
  }

  .over-foto-kader::before,
  .over-foto-kader::after {
    display: none;
  }

  .over-ons .over-afbeelding {
    margin-bottom: var(--ruimte-8);
  }

  .cta-golf {
    display: none;
  }

  .cta-sectie .container {
    padding-top: 0;
  }

  .opleidingen-kop {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--ruimte-2);
  }

  .opleidingen-kop .sectie-link {
    align-self: flex-start;
    margin-top: 0;
  }

  .footer-social-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--ruimte-3);
  }

}

@media (min-width: 769px) and (max-width: 1023px) {

  .over-inner {
    gap: var(--ruimte-8);
  }

}


/* ─────────────────────────────────────────────────────────────────────────────
   GOOGLE REVIEWS SLIDER
   ───────────────────────────────────────────────────────────────────────────── */

.reviews {
  --rv-bg: var(--kleur-wit);
  --rv-surface: #ffffff;
  --rv-text-primary: var(--kleur-donker);
  --rv-text-muted: var(--kleur-secundair);
  --rv-text-light: #9e9e9e;
  --rv-border: var(--kleur-grens);
  --rv-accent: var(--kleur-accent);
  --rv-star: #f5a623;
  --rv-radius-card: 16px;
  --rv-radius-pill: 40px;
  --rv-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  --rv-transition: 0.42s cubic-bezier(.4,0,.2,1);

  width: 100%;
  background: var(--rv-bg);
}

.reviews__inner {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 1.5rem;
}

.reviews__header { margin-bottom: 2.5rem; }

.reviews__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rv-text-muted);
  margin-bottom: 14px;
}

.reviews__eyebrow span {
  width: 24px;
  height: 1px;
  background: var(--kleur-accent);
  display: inline-block;
}

.reviews__header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  color: var(--kleur-accent);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.reviews__header p {
  font-size: 15px;
  color: var(--rv-text-muted);
  font-weight: 300;
}

.reviews__score-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rv-surface);
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius-pill);
  padding: 10px 22px;
  margin: 1.5rem 0 2.5rem;
  box-shadow: var(--rv-shadow);
  transition: transform 0.2s;
}

.reviews__score-badge:hover { transform: translateY(-1px); }

.reviews__score-num {
  font-size: 22px;
  font-weight: 500;
  color: var(--rv-text-primary);
  letter-spacing: -0.02em;
}

.reviews__stars {
  color: var(--rv-star);
  font-size: 15px;
  letter-spacing: 2px;
}

.reviews__review-count {
  font-size: 13px;
  color: var(--rv-text-muted);
  padding-left: 6px;
  border-left: 1px solid var(--rv-border);
}

.reviews__g-icon { flex-shrink: 0; }

.reviews__slider-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.reviews__slider-track {
  display: flex;
  gap: 16px;
  transition: transform var(--rv-transition);
  will-change: transform;
  padding: 4px 0 8px;
}

.reviews__card {
  min-width: calc(25% - 12px);
  flex-shrink: 0;
  background: var(--rv-surface);
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius-card);
  padding: 1.4rem 1.25rem;
  text-align: left;
  box-shadow: var(--rv-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: rv-fadeUp 0.5s ease both;
}

.reviews__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.05);
}

@keyframes rv-fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reviews__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.reviews__card-user { display: flex; align-items: center; gap: 10px; }

.reviews__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
}

.reviews__user-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--rv-text-primary);
  margin-bottom: 2px;
}

.reviews__user-date {
  font-size: 11px;
  color: var(--rv-text-light);
}

.reviews__card-stars {
  font-size: 13px;
  color: var(--rv-star);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.reviews__card-text {
  font-size: 13px;
  line-height: 1.65;
  color: #3a3a3a;
  font-weight: 300;
}

.reviews__nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}

.reviews__nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--rv-border);
  background: var(--rv-surface);
  color: var(--rv-text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
  box-shadow: var(--rv-shadow);
}

.reviews__nav-btn:hover:not(:disabled) {
  background: var(--rv-accent);
  color: #fff;
  border-color: var(--rv-accent);
  transform: scale(1.08);
}

.reviews__nav-btn:disabled { opacity: 0.25; cursor: default; }

.reviews__dots { display: flex; gap: 7px; }

.reviews__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rv-border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, width 0.25s;
  border: none;
  padding: 0;
}

.reviews__dot--actief {
  background: var(--rv-accent);
  width: 20px;
  border-radius: 4px;
}

.reviews__cta-wrap { margin-top: 2.5rem; }

.reviews__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rv-surface);
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius-pill);
  padding: 13px 26px;
  font-size: 14px;
  color: var(--rv-text-primary);
  cursor: pointer;
  text-decoration: none;
  font-weight: 400;
  transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
  box-shadow: var(--rv-shadow);
}

.reviews__cta-btn:hover {
  background: var(--rv-accent);
  color: #fff;
  border-color: var(--rv-accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  text-decoration: none;
}

.reviews__arrow-icon { font-size: 16px; transition: transform 0.2s; }
.reviews__cta-btn:hover .reviews__arrow-icon { transform: translateX(3px); }

@media (max-width: 900px) {
  .reviews__card { min-width: calc(50% - 8px); }
}

@media (max-width: 560px) {
  .reviews__card { min-width: 100%; }

  .reviews__slider-wrap {
    margin-inline: -1.5rem;
    width: calc(100% + 3rem);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1.5rem;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .reviews__slider-wrap::-webkit-scrollbar { display: none; }

  .reviews__slider-track {
    width: max-content;
    padding: 4px 1.5rem 10px;
    transform: none !important;
    transition: none;
  }

  .reviews__card {
    width: calc(100vw - 3rem);
    min-width: calc(100vw - 3rem) !important;
    max-width: calc(100vw - 3rem) !important;
    scroll-snap-align: start;
  }

  .reviews__dots {
    display: none;
  }
}


/* ─────────────────────────────────────────────────────────────────────────────
   SECTIES — Over ons · USP · Statistieken · Opleidingen · CTA · Footer (BEM)
   Kleuren: ALTIJD via CSS-variabelen uit variabelen.css (brand guidelines)
   ───────────────────────────────────────────────────────────────────────────── */

/* ── Over ons ─────────────────────────────────────────────────────────────── */

.over-ons { padding: 120px 0; background: var(--kleur-wit); }

.over-ons__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.over-ons__foto-kolom { position: relative; }

.over-ons__foto-kolom::before {
  content: '';
  position: absolute;
  inset: -20px -20px auto auto;
  width: 55%;
  height: 55%;
  background: var(--kleur-licht-blauw);
  border-radius: var(--afronding-groot);
  z-index: 0;
}

.over-ons__foto-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 480px;
  border-radius: var(--afronding-groot);
  overflow: hidden;
  background: linear-gradient(135deg, var(--kleur-accent-diep) 0%, var(--kleur-accent) 100%);
}

.over-ons__foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--afronding-groot);
  display: block;
  position: relative;
  z-index: 1;
}

.over-ons__collage-wrap {
  position: relative;
  z-index: 1;
}

.over-ons__team-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  height: 380px;
}

.over-ons__team-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--afronding-groot);
  display: block;
}

.over-ons__team-knop {
  margin-top: 24px;
}

.over-ons__foto-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 0;
}

.over-ons__foto-placeholder svg {
  width: 56px;
  height: 56px;
  color: rgba(255,255,255,0.8);
}

.over-ons__foto-placeholder-naam {
  font-family: var(--font-kop);
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

.over-ons__foto-placeholder-instructie {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  text-align: center;
  line-height: 1.5;
  background: rgba(0,0,0,0.25);
  border-radius: 6px;
  padding: 8px 14px;
}

.over-ons__foto-placeholder-instructie strong {
  color: #ffffff;
  font-weight: 700;
}

.over-ons__stat-kaart {
  position: absolute;
  bottom: 28px;
  left: -28px;
  z-index: 2;
  background: var(--kleur-wit);
  border-radius: var(--afronding);
  padding: 20px 24px;
  box-shadow: var(--schaduw-medium);
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 210px;
}

.over-ons__stat-icoon {
  width: 48px;
  height: 48px;
  background: var(--kleur-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.over-ons__stat-icoon svg { width: 24px; height: 24px; color: var(--kleur-wit); }

.over-ons__stat-getal {
  font-family: var(--font-kop);
  font-size: 2rem;
  font-weight: 800;
  color: var(--kleur-accent);
  line-height: 1;
  padding-bottom: 0.15em;
}

.over-ons__stat-omschrijving {
  font-size: 0.78rem;
  color: var(--kleur-secundair);
  font-weight: 500;
  margin-top: 2px;
}

.over-ons__titel {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--kleur-accent);
  line-height: 1.3;
  margin-bottom: 20px;
}

.over-ons__titel span { color: var(--kleur-accent); }

.over-ons__intro {
  font-size: 1rem;
  color: var(--kleur-secundair);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 20px;
}

.over-ons__beschrijving {
  font-size: 1rem;
  color: var(--kleur-secundair);
  line-height: 1.8;
  margin-bottom: 16px;
}

.over-ons__gebieden { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0; }

.over-ons__gebied {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--kleur-accent);
  background: var(--kleur-licht-blauw);
  border: 1px solid rgba(0, 123, 255, 0.2);
  padding: 6px 16px;
  border-radius: var(--afronding-pill);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.over-ons__gebied:hover {
  background: var(--kleur-accent);
  color: var(--kleur-wit);
  border-color: var(--kleur-accent);
}

.over-ons__acties {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}


/* ── USP ─────────────────────────────────────────────────────────────────── */

.usp { padding: 64px 0 56px; background: var(--kleur-licht); }

.usp__kop { text-align: center; margin-bottom: 40px; }

.usp__titel {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--kleur-accent);
}

.usp__subtitel {
  font-size: 1rem;
  color: var(--kleur-secundair);
  margin-top: 12px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

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

.usp__kaart {
  background: var(--kleur-wit);
  border-radius: var(--afronding-groot);
  padding: 36px 28px;
  border: 1.5px solid var(--kleur-grens);
  transition: var(--overgang);
  position: relative;
  overflow: hidden;
}

.usp__kaart::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--kleur-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.usp__kaart:hover {
  border-color: var(--kleur-accent);
  box-shadow: var(--schaduw-zacht);
  transform: translateY(-4px);
}

.usp__kaart:hover::after { transform: scaleX(1); }

.usp__icoon {
  width: 56px;
  height: 56px;
  background: var(--kleur-licht-blauw);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

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

.usp__kaart-titel {
  font-family: var(--font-kop);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--kleur-accent);
  margin-bottom: 10px;
}

.usp__kaart-tekst { font-size: 0.9rem; color: var(--kleur-secundair); line-height: 1.7; }


/* ── Statistieken ────────────────────────────────────────────────────────── */

.stats {
  background: var(--kleur-donker);
  padding: 100px 0;
  position: relative;
  overflow-x: clip;
}

.stats::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.stats::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.stats__inner { position: relative; z-index: 1; }

.stats__kop { text-align: center; margin-bottom: 60px; }

.stats__kop-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.stats__titel {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--kleur-wit);
}

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

.stats__item {
  padding: 48px 40px;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border-radius: var(--afronding);
  margin: 1px;
  transition: var(--overgang);
}

.stats__item:hover { background: rgba(255,255,255,0.08); }

.stats__getal {
  font-family: var(--font-kop);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 800;
  color: var(--kleur-wit);
  line-height: 1;
  padding-bottom: 0.15em;
  display: block;
}

.stats__getal span { color: var(--kleur-accent); }

.stats__omschrijving {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stats__quote {
  text-align: center;
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stats__quote-tekst {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  max-width: 540px;
  line-height: 1.6;
}


/* ── Opleidingen ─────────────────────────────────────────────────────────── */

.opleidingen { padding: 80px 0; background: var(--kleur-wit); }

.opleidingen__kop {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}

.opleidingen__titel {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--kleur-accent);
  line-height: 1.3;
}

.opleidingen__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--kleur-accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: var(--overgang);
}

.opleidingen__link:hover { gap: 10px; }

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

.opleiding-kaart {
  border-radius: var(--afronding-groot);
  overflow: hidden;
  border: 1.5px solid var(--kleur-grens);
  background: var(--kleur-wit);
  transition: var(--overgang);
  display: flex;
  flex-direction: column;
}

.opleiding-kaart:hover {
  box-shadow: var(--schaduw-medium);
  transform: translateY(-6px);
  border-color: var(--kleur-accent);
}

.opleiding-kaart--groot { grid-column: span 2; }

.opleiding-kaart__afbeelding { height: 200px; overflow: hidden; position: relative; }

.opleiding-kaart__afbeelding img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.opleiding-kaart:hover .opleiding-kaart__afbeelding img { transform: scale(1.04); }

.afb--auto    { background: linear-gradient(135deg, var(--kleur-accent-diep) 0%, var(--kleur-accent) 100%); }
.afb--automaat{ background: linear-gradient(135deg, #0056cc 0%, var(--kleur-accent) 100%); }
.afb--motor   { background: linear-gradient(135deg, var(--kleur-donker) 0%, var(--kleur-accent) 100%); }
.afb--aanhang { background: linear-gradient(135deg, var(--kleur-accent) 0%, #5aabff 100%); }
.afb--bromfie { background: linear-gradient(135deg, var(--kleur-donker) 0%, var(--kleur-accent-diep) 100%); }

/* Gezichtspositie per pakketkaart — foto's hebben personen bovenin */
.afb--auto img    { object-position: top center; }
.afb--motor img   { object-position: top center; }
.afb--aanhang img { object-position: center center; }
.afb--bromfie img { object-position: center center; }

.opleiding-kaart__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.opleiding-kaart__fallback svg { width: 52px; height: 52px; color: rgba(255,255,255,0.85); }

.opleiding-kaart__fallback-naam {
  font-family: var(--font-kop);
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

.opleiding-kaart__fallback-instructie {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  text-align: center;
  line-height: 1.5;
  background: rgba(0,0,0,0.25);
  border-radius: 6px;
  padding: 8px 12px;
  margin-top: 4px;
}

.opleiding-kaart__fallback-instructie strong {
  color: #ffffff;
  font-weight: 700;
}

.opleiding-kaart__prijs-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--kleur-wit);
  color: var(--kleur-accent);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--afronding-pill);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.opleiding-kaart__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }

.opleiding-kaart__naam {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--kleur-accent);
  margin-bottom: 8px;
}

.opleiding-kaart__beschrijving {
  font-size: 0.9rem;
  color: var(--kleur-secundair);
  line-height: 1.7;
  flex: 1;
}

.opleiding-kaart__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--kleur-grens);
}

.opleiding-kaart__meer {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--kleur-accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--overgang);
}

.opleiding-kaart:hover .opleiding-kaart__meer { gap: 10px; }

.opleiding-kaart__tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--kleur-secundair);
  background: var(--kleur-licht);
  padding: 5px 12px;
  border-radius: var(--afronding-pill);
}


/* ── Social embeds (TikTok + Instagram) ─────────────────────────────────── */

.social-sectie {
  padding: 60px 0;
  background: var(--kleur-licht);
}

.social-sectie .container {
  max-width: 1400px;
}

.social-sectie__kop {
  text-align: center;
  margin-bottom: 2.5rem;
}

.social-sectie__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kleur-secundair);
  margin-bottom: 14px;
}

.social-sectie__eyebrow span {
  width: 24px;
  height: 1px;
  background: var(--kleur-accent);
  display: inline-block;
}

.social-sectie__kop h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--kleur-accent);
  margin-bottom: 10px;
}

.social-sectie__kop p {
  font-size: 15px;
  color: var(--kleur-secundair);
  font-weight: 300;
}

.social-sectie__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.social-sectie__kolom--links,
.social-sectie__kolom--rechts {
  width: 100%;
  height: 560px;
  overflow: hidden;
  border-radius: 12px;
}

.social-sectie__kolom--links .tiktok-embed,
.social-sectie__kolom--rechts .instagram-media {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: 560px !important;
  margin: 0 !important;
  display: block;
}

@media (max-width: 860px) {
  .social-sectie__grid {
    grid-template-columns: 1fr;
  }
  .social-sectie__kolom--links,
  .social-sectie__kolom--rechts {
    width: 100%;
    height: 480px;
  }
  .social-sectie__kolom--links .tiktok-embed,
  .social-sectie__kolom--rechts .instagram-media {
    height: 480px !important;
  }
}

/* ── CTA ─────────────────────────────────────────────────────────────────── */

.cta {
  padding: 100px 0;
  background: var(--kleur-accent);
  position: relative;
  overflow-x: clip;
}

.cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border: 80px solid rgba(255,255,255,0.06);
  border-radius: 50%;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 350px;
  height: 350px;
  border: 60px solid rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}

.cta__titel {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--kleur-wit);
  line-height: 1.3;
}

.cta__subtitel {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-top: 14px;
  line-height: 1.6;
  max-width: 440px;
}

.cta__acties { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; flex-shrink: 0; }


/* ── Footer ──────────────────────────────────────────────────────────────── */

.footer { background: var(--kleur-donker); padding: 80px 0 0; }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer__logo {
  font-family: var(--font-kop);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--kleur-wit);
  margin-bottom: 16px;
  display: block;
}

.footer__omschrijving {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  text-decoration: none;
  transition: var(--overgang);
}

.footer__contact-item:hover { color: var(--kleur-wit); }

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--kleur-accent);
}

.footer__kolom-titel {
  font-family: var(--font-kop);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--kleur-wit);
  margin-bottom: 24px;
}

.footer__links { list-style: none; }

.footer__links li { margin-bottom: 12px; }

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: var(--overgang);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer__links a:hover { color: var(--kleur-wit); gap: 10px; }

.footer__links a::before { content: '→'; color: var(--kleur-accent); font-size: 0.85rem; }

.footer__tijd {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__tijd:first-child { padding-top: 0; }

.footer__tijd span:last-child { color: rgba(255,255,255,0.8); font-weight: 600; }

.footer__social { display: flex; gap: 12px; margin-top: 24px; }

.footer__social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: var(--overgang);
  border: 1px solid rgba(255,255,255,0.1);
}

.footer__social-link:hover {
  background: var(--kleur-accent);
  color: var(--kleur-wit);
  border-color: var(--kleur-accent);
}

.footer__social-link svg { width: 18px; height: 18px; }

.footer__lesplaatsen {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px 0;
  margin-bottom: 8px;
}

.footer__lesplaatsen .footer__kolom-titel { margin-bottom: 18px; }

.footer__plaatsen-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.footer__plaatsen-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: var(--overgang);
}

.footer__plaatsen-links a:hover { color: var(--kleur-wit); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright { font-size: 0.82rem; color: rgba(255,255,255,0.3); }

.footer__bottom-links { display: flex; gap: 24px; }

.footer__bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: var(--overgang);
}

.footer__bottom-links a:hover { color: rgba(255,255,255,0.7); }


/* ── Responsive — secties ────────────────────────────────────────────────── */

/* Tussen 1024px en 1280px is de hero-tekstkolom (640px) net te breed en
   overlapt hij de losstaande werving-kaarten rechtsonder in de hero. */
@media (min-width: 1024px) and (max-width: 1279px) {
  .held-inhoud {
    max-width: 520px;
  }
}

@media (max-width: 1024px) {
  .usp__grid { grid-template-columns: repeat(2, 1fr); }
  .opleidingen__grid { grid-template-columns: repeat(2, 1fr); }
  .opleiding-kaart--groot { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .over-ons {
    padding: 64px 0;
  }

  .over-ons__grid {
    gap: 40px;
  }

  .held-achtergrond {
    background-position: 58% center;
    background-size: auto 100%;
  }

  .werving-kaarten {
    position: relative;
    inset: auto;
    display: flex;
    width: auto;
    margin: -34px 16px 40px;
    gap: 12px;
  }

  .werving-kaart {
    padding: 18px 20px;
  }

  /* Op een klein scherm krijgt de vacature prioriteit; de voordelen staan
     elders op de homepage al uitgebreid beschreven. */
  .werving-kaart + .werving-kaart {
    display: none;
  }

  .werving-titel {
    font-size: 1.45rem;
  }

  .categorie-rij {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 10px;
    padding: 18px 16px 24px;
  }

  .categorie-chip {
    width: 100%;
    min-width: 0;
    gap: 6px;
    padding: 6px 8px;
  }

  .categorie-chip:last-child {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .categorie-chip-icoon {
    width: 30px;
    height: 30px;
  }

  .categorie-chip-icoon svg {
    width: 15px;
    height: 15px;
  }

  .categorie-chip-label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: 0.01em;
    font-size: 10px;
  }

  /* Op telefoon blijven de portretfoto's volledig zichtbaar. */
  .over-ons__team-collage {
    height: auto;
    align-items: start;
  }

  .over-ons__team-foto {
    height: auto;
    aspect-ratio: 2 / 3;
  }

  .over-ons__team-knop {
    margin-top: 16px;
  }

  .over-ons__grid  { grid-template-columns: 1fr; }
  .stats__grid     { grid-template-columns: 1fr; }
  .over-ons__stat-kaart {
    position: static;
    width: fit-content;
    margin: 16px auto 0;
  }
  .usp__grid       { grid-template-columns: 1fr; }
  .opleidingen__grid { grid-template-columns: 1fr; }
  .opleiding-kaart--groot { grid-column: span 1; }
  .cta__inner      { flex-direction: column; }
  .footer__grid    { grid-template-columns: 1fr; gap: 32px; }
  .stats__quote    { flex-direction: column; }
}

@media (max-width: 560px) {
  .opleidingen { padding: 60px 0; }
}
