/* ============================================
   VOLTRIX — Premium Elektricien Antwerpen
   style.css — V5 Clean
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ══════════════════════════════════════════
   VARIABLES
══════════════════════════════════════════ */
:root {
  --primary:      #0F172A;
  --secondary:    #1E293B;
  --accent:       #F5B942;
  --accent-dark:  #D9A028;
  --bg:           #F8FAFC;
  --bg-alt:       #EEF2F7;
  --text:         #1E293B;
  --muted:        #64748B;
  --white:        #FFFFFF;
  --border:       #E2E8F0;

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --shadow-sm:  0 1px 4px rgba(15,23,42,.07);
  --shadow-md:  0 4px 20px rgba(15,23,42,.10);
  --shadow-lg:  0 12px 40px rgba(15,23,42,.13);
  --shadow-xl:  0 24px 64px rgba(15,23,42,.17);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --ease: 0.22s cubic-bezier(.4,0,.2,1);
  --max-w: 1200px;

  /* Uniform spacing tokens */
  --section-pad: 88px;
  --section-pad-sm: 56px;
}

/* ══════════════════════════════════════════
   RESET
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, select, textarea { font-family: var(--font-body); }

/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section-pad   { padding: var(--section-pad) 0; }
.section-pad-sm { padding: var(--section-pad-sm) 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  background: rgba(245,185,66,.13);
  border: 1px solid rgba(245,185,66,.32);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.badge::before { content: '◆'; font-size: .48rem; }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .02em;
  transition: all var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(245,185,66,.32);
}
.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 24px rgba(245,185,66,.48);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.25);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,255,255,.05);
}
.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-dark:hover { background: var(--secondary); transform: translateY(-2px); }
.btn-lg { padding: 17px 36px; font-size: .97rem; }
.btn-sm { padding: 10px 20px; font-size: .82rem; }

/* ══════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════ */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { line-height: 1.75; }
.lead { font-size: 1.1rem; color: var(--muted); font-weight: 300; line-height: 1.8; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { max-width: 580px; margin: 14px auto 0; color: var(--muted); }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  height: 70px;
  padding: 0 28px;
  background: rgba(15,23,42,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--ease);
}
#header.scrolled .header-inner {
  background: rgba(15,23,42,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
  height: 62px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}
.logo svg, .logo img { height: 34px; width: auto; }

/* Desktop nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.site-nav a {
  padding: 8px 13px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-size: .84rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  transition: all var(--ease);
  letter-spacing: .01em;
}
.site-nav a:hover { color: var(--accent); background: rgba(255,255,255,.06); }
.site-nav a.active,
.site-nav a.nav-active { color: var(--accent); }

/* Header CTA */
.header-cta {
  margin-left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: 12px;
  flex-shrink: 0;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.12);
  transition: background var(--ease);
}
.hamburger:hover { background: rgba(255,255,255,.14); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--ease);
}

/* ══════════════════════════════════════════
   MOBILE NAV OVERLAY
══════════════════════════════════════════ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 80px 32px 40px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }

.mobile-nav-logo {
  position: absolute;
  top: 18px; left: 24px;
}
.mobile-nav-logo svg { height: 32px; width: auto; }

.mobile-nav-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.12);
  cursor: pointer;
  transition: background var(--ease);
  font-family: var(--font-body);
}
.mobile-nav-close:hover { background: rgba(255,255,255,.16); }

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(255,255,255,.82);
  padding: 13px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color var(--ease);
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--accent); }
.mobile-nav a.nav-cta {
  margin-top: 20px;
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--r-sm);
  border: none;
  font-size: 1rem;
  padding: 16px 40px;
  box-shadow: 0 4px 20px rgba(245,185,66,.32);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
}
.mobile-nav a.nav-cta:hover { background: var(--accent-dark); color: var(--primary); }

/* ══════════════════════════════════════════
   HERO (homepage)
══════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 140px 0 88px;
  background: var(--primary);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 75% 50%, rgba(245,185,66,.07) 0%, transparent 65%),
    linear-gradient(135deg, #0F172A 0%, #1E293B 55%, #0F172A 100%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,185,66,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,185,66,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 78%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-content .badge { margin-bottom: 22px; }
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content h1 span { color: var(--accent); }
.hero-content p { color: rgba(255,255,255,.68); font-size: 1.08rem; margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--accent);
}
.trust-item span { font-size: .76rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; }

/* ══════════════════════════════════════════
   USP STRIP
══════════════════════════════════════════ */
.usp-strip {
  background: var(--secondary);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.usp-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.78);
  font-size: .84rem;
  font-weight: 500;
}
.usp-item-icon {
  width: 30px; height: 30px;
  background: rgba(245,185,66,.14);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════════ */
.services-section { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}
.service-card.featured {
  grid-column: span 2;
  flex-direction: row;
}
.service-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--secondary);
  flex-shrink: 0;
  position: relative;
}
.service-card.featured .service-card-img {
  aspect-ratio: auto;
  width: 44%;
}
.service-card-img-placeholder {
  width: 100%; height: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1E293B, #0F172A);
  color: rgba(255,255,255,.18);
  font-size: 2.6rem;
  gap: 10px;
}
.service-card-img-placeholder span {
  font-size: .72rem;
  font-family: var(--font-display);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.15);
}
.service-card-body { padding: 26px 28px; display: flex; flex-direction: column; flex: 1; }
.service-card-icon {
  width: 44px; height: 44px;
  background: rgba(245,185,66,.12);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.service-card-body h3 { margin-bottom: 9px; color: var(--primary); }
.service-card-body p { color: var(--muted); font-size: .9rem; margin-bottom: 18px; flex: 1; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: .84rem;
  font-weight: 700;
  color: var(--accent-dark);
  transition: gap var(--ease);
}
.service-card-link:hover { gap: 10px; }
.service-card-link::after { content: '→'; }

/* ══════════════════════════════════════════
   WHY SECTION (dark)
══════════════════════════════════════════ */
.why-section {
  background: var(--primary);
  overflow: hidden;
  position: relative;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -160px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,185,66,.055) 0%, transparent 68%);
  pointer-events: none;
}
.why-content .badge { margin-bottom: 20px; }
.why-content h2 { color: var(--white); margin-bottom: 18px; }
.why-content h2 span { color: var(--accent); }
.why-content > p { color: rgba(255,255,255,.62); margin-bottom: 28px; }
.why-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-item-icon {
  width: 46px; height: 46px;
  background: rgba(245,185,66,.18);
  border: 1px solid rgba(245,185,66,.3);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}
.why-item-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.why-item-text span { font-size: .86rem; color: rgba(255,255,255,.52); }

/* ══════════════════════════════════════════
   GALLERY / REALISATIES
══════════════════════════════════════════ */
.realisaties-section { background: var(--bg-alt); }
.realisaties-intro { text-align: center; margin-bottom: 48px; }
.realisaties-intro .badge { margin-bottom: 14px; }
.realisaties-intro p { color: var(--muted); margin-top: 10px; }

.photo-upload-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  background: rgba(245,185,66,.09);
  border: 1px dashed rgba(245,185,66,.38);
  border-radius: var(--r-md);
  color: var(--accent-dark);
  font-size: .82rem;
  font-weight: 500;
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--secondary);
  cursor: pointer;
}
.gallery-item:hover { transform: scale(1.02); transition: transform var(--ease); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1E293B, #0F172A);
  color: rgba(255,255,255,.14);
  gap: 8px;
  font-size: 1.8rem;
}
.gallery-placeholder-label {
  font-size: .66rem;
  font-family: var(--font-display);
  letter-spacing: .11em;
  text-transform: uppercase;
  color: rgba(255,255,255,.14);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.82) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text {
  color: var(--white);
  font-family: var(--font-display);
  font-size: .84rem;
  font-weight: 600;
}
.gallery-overlay-text span { display: block; font-size: .7rem; color: var(--accent); font-weight: 400; }
.gallery-cta { text-align: center; margin-top: 36px; }

/* ══════════════════════════════════════════
   WERKGEBIED
══════════════════════════════════════════ */
/* ══════════════════════════════════════════
   WERKGEBIED — DISTRICT CARDS
══════════════════════════════════════════ */
.werkgebied-section { background: var(--white); }
.werkgebied-inner { max-width: 900px; margin: 0 auto; }
.werkgebied-header { text-align: center; margin-bottom: 44px; }
.werkgebied-header h2 { margin: 12px 0 10px; }
.werkgebied-header p { color: var(--muted); max-width: 520px; margin: 0 auto; }

.werkgebied-districts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.district-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 14px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  text-decoration: none;
  transition: all var(--ease);
  text-align: center;
}
.district-card:hover {
  border-color: var(--accent);
  background: rgba(245,185,66,.05);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.district-card-pin {
  font-size: 1.4rem;
  line-height: 1;
}
.district-card-name {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}
.district-card-name span {
  display: block;
  font-size: .72rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .werkgebied-districts { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .district-card { padding: 14px 8px; gap: 7px; }
  .district-card-pin { font-size: 1.2rem; }
  .district-card-name { font-size: .78rem; }
  .district-card-name span { font-size: .65rem; }
  .werkgebied-header { margin-bottom: 28px; }
}
@media (max-width: 480px) {
  .werkgebied-districts { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .district-card { flex-direction: row; text-align: left; padding: 12px 14px; gap: 10px; }
  .district-card-name span { display: none; }
}
.werkgebied-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.werkgebied-content .badge { margin-bottom: 18px; }
.werkgebied-content h2 { margin-bottom: 14px; }
.werkgebied-content > p { color: var(--muted); margin-bottom: 0; }
.werkgebied-tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 22px 0 28px; }
.location-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .84rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--ease);
}
.location-tag:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.location-tag::before { content: '📍'; font-size: .72rem; }
.werkgebied-map {
  background: var(--bg-alt);
  border-radius: var(--r-lg);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--muted);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  gap: 10px;
}
.werkgebied-map-label {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--white);
  padding: 5px 13px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-section { background: var(--bg); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 19px 22px;
  font-family: var(--font-display);
  font-size: .93rem;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  transition: background var(--ease);
}
.faq-question:hover { background: var(--bg); }
.faq-question.active { background: var(--bg); color: var(--accent-dark); }
.faq-arrow {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem;
  flex-shrink: 0;
  transition: transform var(--ease), background var(--ease);
}
.faq-question.active .faq-arrow { transform: rotate(180deg); background: var(--accent); color: var(--primary); }
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.8;
}
.faq-answer.open { display: block; }

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.cta-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(245,185,66,.09) 0%, transparent 65%);
  pointer-events: none;
}
.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
}
.cta-content .badge { margin-bottom: 18px; }
.cta-content h2 { color: var(--white); margin-bottom: 14px; }
.cta-content h2 span { color: var(--accent); }
.cta-content p { color: rgba(255,255,255,.62); max-width: 480px; }
.cta-actions { display: flex; flex-direction: column; gap: 11px; align-items: flex-start; min-width: 260px; }
.cta-phone {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--r-md);
  color: var(--white);
  transition: all var(--ease);
  font-family: var(--font-display);
  font-weight: 600;
  width: 100%;
}
.cta-phone:hover { background: rgba(255,255,255,.1); border-color: var(--accent); }
.cta-phone-icon {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.cta-phone-text span { display: block; font-size: .7rem; color: rgba(255,255,255,.48); font-weight: 400; }
.cta-phone-text strong { font-size: 1rem; }

.page-hero {
  background: linear-gradient(135deg,#0F172A 0%,#1E293B 60%,#0F172A 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,185,66,.10) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '\26A1';
  position: absolute;
  font-size: 380px;
  right: -30px; bottom: -60px;
  opacity: .025;
  line-height: 1;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.hero-label { display:inline-block; background:rgba(245,185,66,.15); border:1px solid rgba(245,185,66,.25); color:var(--accent); font-size:.75rem; font-weight:800; text-transform:uppercase; letter-spacing:.1em; padding:5px 14px; border-radius:20px; margin-bottom:16px; }
.page-hero h1 {
  font-size: clamp(2rem,4.5vw,3.4rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.1rem;
}
.page-hero h1 em,
.page-hero h1 span { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-usps {
  list-style: none;
  padding: 0;
  margin: 0 0 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.hero-usps li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: .97rem;
}
.hero-usps li::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='9' viewBox='0 0 11 9'%3E%3Cpath d='M1 4.5l3 3L10 1' stroke='%230F172A' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-call-hero {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  background: transparent;
  border: 2px solid rgba(255,255,255,.28);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: .97rem;
  text-decoration: none;
  font-family: var(--font-display);
  cursor: pointer;
  transition: all var(--ease);
}
.btn-call-hero:hover { border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.07); }
.page-hero .breadcrumb { display:flex; align-items:center; gap:7px; font-size:.8rem; margin-bottom:22px; flex-wrap:wrap; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.45); text-decoration:none; }
.page-hero .breadcrumb a:hover { color: rgba(255,255,255,.75); }
.page-hero .breadcrumb-sep { color: rgba(255,255,255,.55); }
.page-hero .breadcrumb-current { color: rgba(255,255,255,.65); font-weight: 500; }



/* ══════════════════════════════════════════
   CONTENT SECTIONS (sub-pages)
══════════════════════════════════════════ */
.content-section { background: var(--white); }
.content-section.alt { background: var(--bg-alt); }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--secondary);
}
.content-img-placeholder {
  width: 100%; height: 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: rgba(255,255,255,.12);
  gap: 14px;
  background: linear-gradient(135deg, #1E293B, #0F172A);
}
.content-img-placeholder span {
  font-size: .76rem;
  font-family: var(--font-display);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.14);
}
.content-text .badge { margin-bottom: 18px; }
.content-text h2 { margin-bottom: 14px; }
.content-text p { color: var(--muted); margin-bottom: 14px; }
.content-checklist { display: flex; flex-direction: column; gap: 11px; margin: 22px 0 28px; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text);
}
.check-item::before {
  content: '✓';
  display: flex; align-items: center; justify-content: center;
  width: 21px; height: 21px;
  background: rgba(245,185,66,.14);
  color: var(--accent-dark);
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Price block */
.price-block {
  background: var(--primary);
  border-radius: var(--r-md);
  padding: 28px;
  color: var(--white);
  margin-top: 28px;
}
.price-block h4 {
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.46);
  margin-bottom: 10px;
}
.price-block .price-val {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.price-block .price-val span { font-size: .86rem; font-weight: 400; color: rgba(255,255,255,.45); }
.price-block p { font-size: .8rem; color: rgba(255,255,255,.46); margin-top: 7px; }

/* ══════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════ */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--text);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text);
  background: var(--bg);
  transition: all var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(245,185,66,.12);
}
.form-group textarea { resize: vertical; min-height: 108px; }
.form-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: .97rem;
  font-weight: 800;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: all var(--ease);
  display: flex; align-items: center; justify-content: center;
  gap: 9px;
  margin-top: 20px;
  box-shadow: 0 4px 16px rgba(245,185,66,.32);
}
.form-submit-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,185,66,.46);
}


/* ══════════════════════════════════════════
   FOOTER — PREMIUM V5
══════════════════════════════════════════ */
footer { background: var(--primary); color: rgba(255,255,255,.6); margin-top: 0; border-top: 1px solid rgba(255,255,255,.08); }



/* Main body */
.footer-main { padding: 52px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}

/* Brand */
.footer-logo { display: inline-block; margin-bottom: 18px; }
.footer-logo svg { height: 32px; width: auto; }
.footer-brand p {
  font-size: .86rem;
  color: rgba(255,255,255,.42);
  line-height: 1.78;
  margin-bottom: 22px;
  max-width: 280px;
}

/* Contact card */
.footer-contact-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  padding: 18px 20px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.fci-icon {
  width: 28px; height: 28px;
  background: rgba(245,185,66,.12);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.fci-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fci-text span { font-size: .82rem; color: rgba(255,255,255,.58); line-height: 1.4; }
.fci-link {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color var(--ease);
  line-height: 1.4;
  font-weight: 500;
}
.fci-link:hover { color: var(--accent); }

/* Social buttons */
.footer-social { display: flex; gap: 9px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--ease);
}
.social-btn:hover { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.social-btn-wa:hover { background: #25D366 !important; border-color: #25D366 !important; color: #fff !important; }

/* Columns */
.footer-col h4 {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: rgba(255,255,255,.36);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-col ul { display: flex; flex-direction: column; gap: 2px; }
.footer-col ul a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .86rem;
  color: rgba(255,255,255,.5);
  padding: 6px 0;
  transition: all var(--ease);
}
.footer-col ul a svg { flex-shrink: 0; opacity: 0; transition: opacity var(--ease); color: var(--accent); }
.footer-col ul a:hover { color: rgba(255,255,255,.9); padding-left: 4px; }
.footer-col ul a:hover svg { opacity: 1; }

/* Hours */
.footer-hours {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  padding: 16px 18px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.footer-hours-row:first-child { padding-top: 0; }
.footer-hours-row span { color: rgba(255,255,255,.46); }
.footer-hours-row strong { color: rgba(255,255,255,.82); font-weight: 600; white-space: nowrap; font-family: var(--font-display); }

.footer-open-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  font-weight: 600;
  color: #4ade80;
  margin-bottom: 16px;
}
.footer-open-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  50% { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #25D366;
  color: #fff;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  text-decoration: none;
  transition: all var(--ease);
  box-shadow: 0 3px 12px rgba(37,211,102,.25);
}
.footer-wa-btn:hover { background: #1db954; transform: translateY(-1px); }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  background: rgba(0,0,0,.15);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-inner p { font-size: .78rem; color: rgba(255,255,255,.24); }
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  transition: color var(--ease);
}
.footer-bottom-links a:hover { color: var(--accent); }

/* ── Footer responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
  .footer-brand p { max-width: 100%; }
}
@media (max-width: 768px) {
  footer { padding: 0; }
  .footer-main { padding: 28px 0 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
  .footer-brand { grid-column: span 2; }
  .footer-brand p { max-width: 100%; font-size: .84rem; margin-bottom: 14px; }
  .footer-contact-card { padding: 14px 16px; gap: 10px; margin-bottom: 14px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-bottom-links { gap: 14px; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .footer-main { padding: 28px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-brand { grid-column: 1; }
}

/* ══════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 900;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 5px 22px rgba(37,211,102,.42);
  transition: all var(--ease);
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 9px 30px rgba(37,211,102,.58); }
.wa-float svg { width: 26px; height: 26px; fill: var(--white); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 5px 22px rgba(37,211,102,.42), 0 0 0 0 rgba(37,211,102,.38); }
  50% { box-shadow: 0 5px 22px rgba(37,211,102,.42), 0 0 0 11px rgba(37,211,102,0); }
}

/* ══════════════════════════════════════════
   MOBILE STICKY BAR
══════════════════════════════════════════ */
.mob-sticky { display: none; }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .58s ease, transform .58s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }
[data-anim] { opacity: 0; transform: translateY(22px); transition: opacity .5s ease, transform .5s ease; }
[data-anim].vis { opacity: 1; transform: none; }

/* ══════════════════════════════════════════
   SERVICE TAGS (re-used on multiple pages)
══════════════════════════════════════════ */
.service-tag {
  display: inline-block;
  background: #f1f5f9;
  color: #475569;
  font-size: .78rem;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 20px;
}

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card.featured { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .werkgebied-grid { grid-template-columns: 1fr; gap: 40px; }
  .werkgebied-map { display: none; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --section-pad: 52px;
    --section-pad-sm: 36px;
  }
  .container { padding: 0 var(--container-px, 16px); }

  /* Header */
  .site-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 0 16px; height: 62px; }
  #header.scrolled .header-inner { height: 58px; }

  /* Typography */
  h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .page-hero h1, .zk-hero h1 { font-size: clamp(2rem,4.5vw,3.4rem); line-height: 1.1; }
  h2 { font-size: clamp(1.4rem, 6.5vw, 1.9rem); }
  h3 { font-size: clamp(1.05rem, 4vw, 1.25rem); }
  .section-header { margin-bottom: 36px; }
  .section-header p { font-size: .93rem; }

  /* Hero */
  /* hero padding handled by responsive.css */
  .hero-content h1 { font-size: clamp(1.85rem, 8.5vw, 2.5rem); }
  .hero-content p { font-size: .97rem; margin-bottom: 26px; }
  .hero-actions { flex-direction: column; gap: 11px; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { gap: 0 8px; margin-top: 32px; padding-top: 24px; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .trust-item { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 10px 4px; }
  .trust-item strong { font-size: 1.05rem; line-height: 1.2; }
  .trust-item span { font-size: .68rem; margin-top: 3px; }


  /* USP strip */
  .usp-strip { padding: 18px 0; }
  .usp-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px; }
  .usp-item { font-size: .8rem; }
  .usp-item-icon { width: 26px; height: 26px; font-size: .78rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-card.featured { grid-column: span 1; flex-direction: column; }
  .service-card.featured .service-card-img { width: 100%; aspect-ratio: 16/9; }
  .service-card-body { padding: 20px 18px; }

  /* Why section */
  .why-list { gap: 14px; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 148px;
    gap: 10px;
  }
  .gallery-item.wide, .gallery-item.tall, .gallery-item.wide.tall {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
  .gallery-placeholder { font-size: 1.4rem; }
  .gallery-cta { margin-top: 24px; }

  /* Werkgebied */
  .werkgebied-grid { grid-template-columns: 1fr; gap: 28px; }
  .werkgebied-map { display: none; }
  .werkgebied-tags { gap: 7px; }
  .location-tag { font-size: .8rem; padding: 6px 11px; }
  .werkgebied-content .btn { width: 100%; }

  /* FAQ */
  .faq-list { max-width: 100%; }
  .faq-question { padding: 15px 16px; font-size: .88rem; gap: 10px; }
  .faq-arrow { width: 24px; height: 24px; font-size: .72rem; }
  .faq-answer { padding: 0 16px 14px; font-size: .88rem; }

  /* CTA */
  .cta-section { padding: 52px 0 !important; }
  .cta-grid { grid-template-columns: 1fr !important; gap: 20px; }
  .cta-actions { flex-direction: column; align-items: stretch; width: 100%; min-width: 0; gap: 10px; }
  .cta-actions .btn { width: 100%; }
  .cta-phone { width: 100%; }
  .cta-content p { max-width: 100%; }

  /* Page hero */
  /* page-hero padding handled by responsive.css */
  .page-hero h1 { font-size: clamp(2rem,4.5vw,3.4rem); line-height: 1.1; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn, .btn-call-hero { width: 100%; justify-content: center; }
  .page-hero p { font-size: .95rem; max-width: 100%; }
  .page-hero p { font-size: .95rem; }

  /* Content sections */
  .content-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .content-grid.reverse { direction: ltr; }
  .content-img { aspect-ratio: 3/2; }
  .content-img-placeholder { min-height: 190px; font-size: 2.8rem; }
  .content-text .btn { width: 100%; }
  .content-text .btn-lg { width: 100%; }
  .price-block { padding: 22px 18px; }
  .price-block .price-val { font-size: 1.8rem; }

  /* Contact */
  .contact-form-wrap { padding: 24px 16px; border-radius: var(--r-lg); }
  .form-row { grid-template-columns: 1fr !important; }
  .form-group input, .form-group select, .form-group textarea { font-size: 16px !important; }

  /* Footer */
  footer { padding: 0; }
  .footer-main { padding: 28px 0 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer-bottom p { font-size: .76rem; }

  /* WA float — hide on mobile (sticky bar takes over) */
  .wa-float { display: none !important; }

  /* Sticky bar */
  .mob-sticky {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 8000;
    background: var(--primary);
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 -4px 22px rgba(0,0,0,.28);
    padding: 10px 12px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    gap: 8px;
    align-items: center;
  }
  .mob-sticky-call {
    display: flex; align-items: center; justify-content: center;
    gap: 6px; padding: 13px 14px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.14);
    color: var(--white);
    border-radius: var(--r-sm);
    font-family: var(--font-display);
    font-weight: 700; font-size: .84rem;
    text-decoration: none; flex-shrink: 0;
  }
  .mob-sticky-offerte {
    flex: 1;
    display: flex; align-items: center; justify-content: center;
    padding: 13px 10px;
    background: var(--accent);
    color: var(--primary);
    border-radius: var(--r-sm);
    font-family: var(--font-display);
    font-weight: 800; font-size: .9rem;
    text-decoration: none;
  }
  .mob-sticky-wa {
    display: flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; min-width: 46px;
    background: #25D366;
    border-radius: var(--r-sm);
    color: var(--white);
    flex-shrink: 0;
  }
  .mob-sticky-wa svg { width: 21px; height: 21px; fill: var(--white); }
  body { padding-bottom: 70px; }

  /* Photo upload note */
  .photo-upload-note { font-size: .76rem; padding: 10px 14px; flex-direction: column; text-align: center; }
  .realisaties-intro { margin-bottom: 28px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — SMALL (≤ 480px)
══════════════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  h1 { font-size: clamp(1.65rem, 9vw, 2rem); }
  .page-hero h1, .zk-hero h1 { font-size: clamp(2rem,4.5vw,3.4rem); line-height: 1.1; }
  h2 { font-size: clamp(1.3rem, 7.5vw, 1.65rem); }
  /* page-hero padding handled by responsive.css */
  .hero { padding: 88px 0 44px; }
  .hero-trust { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .footer-grid { gap: 22px; }
}


/* ══════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════ */
.reviews-section { background: var(--primary); }
.reviews-section .section-header h2 { color: #fff; }
.reviews-section .section-header .badge {
  background: rgba(245,185,66,.15);
  border: 1px solid rgba(245,185,66,.25);
  color: var(--accent);
}
.reviews-summary {
  display: flex; align-items: center;
  justify-content: center; gap: 20px;
  margin-top: 14px; flex-wrap: wrap;
}
.reviews-score { display: flex; align-items: center; gap: 9px; }
.reviews-score-num {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 800;
  color: var(--accent); line-height: 1;
}
.reviews-stars, .rv-stars { display: flex; gap: 3px; }
.rstar {
  display: inline-block; width: 16px; height: 16px;
  background: rgba(255,255,255,.15);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}
.rstar.filled { background: #FBBF24; }
.reviews-google-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .8rem; color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px; padding: 6px 14px;
  text-decoration: none; transition: all .2s;
}
.reviews-google-link:hover { border-color: rgba(255,255,255,.38); color: #fff; }

/* Carousel */
.rv-carousel {
  position: relative;
  margin-top: 36px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.rv-window {
  overflow: hidden;
  border-radius: 16px;
}
.rv-track {
  position: relative;
}
.rv-slide {
  display: none;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  padding: 28px;
  transition: opacity .35s;
}
.rv-slide.rv-active {
  display: block;
  animation: rv-fade .35s ease;
}
@keyframes rv-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.rv-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.rv-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: .95rem; color: #fff; flex-shrink: 0;
}
.rv-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: .95rem; color: #fff;
  flex: 1;
}
.rv-stars { margin-left: auto; flex-shrink: 0; }
.rv-stars .rstar { width: 15px; height: 15px; }
.rv-text {
  font-size: .92rem; color: rgba(255,255,255,.75);
  line-height: 1.78; font-style: italic; margin: 0;
}

/* Prev / Next */
.rv-prev, .rv-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: #fff; cursor: pointer; transition: all .2s; z-index: 2;
}
.rv-prev:hover, .rv-next:hover {
  background: var(--accent); border-color: var(--accent); color: var(--primary);
}
.rv-prev { left: -52px; }
.rv-next { right: -52px; }

/* Dots */
.rv-dots {
  display: flex; justify-content: center;
  gap: 7px; margin-top: 22px;
}
.rv-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.2); border: none;
  cursor: pointer; transition: all .25s; padding: 0;
}
.rv-dot-active {
  background: var(--accent); width: 22px; border-radius: 4px;
}

/* Mobile */
@media (max-width: 640px) {
  .rv-carousel { margin-top: 24px; }
  .rv-prev, .rv-next { display: none; }
  .rv-slide { padding: 20px 18px; }
  .rv-text { font-size: .88rem; }
  .rv-avatar { width: 38px; height: 38px; }
}
