/* ==========================================================================
   BIJBLUF JEUGDHULPVERLENING - DPS MEDIA STRUCTUUR
   ========================================================================== */

/* ---------- ROOT VARIABLES ---------- */
:root {
  --color-primary: #B8860B;
  --color-primary-dark: #8B6508;
  --color-primary-light: #D4A82A;
  --color-primary-soft: #F5EBD3;
  --color-blue: #5B7FA0;
  --color-blue-dark: #3F5F7E;
  --color-blue-soft: #E8EFF6;
  --color-dark: #1A1A1A;
  --color-text: #2B2B2B;
  --color-text-soft: #555;
  --color-muted: #888;
  --color-bg: #FFFFFF;
  --color-bg-soft: #FAF8F3;
  --color-bg-dark: #111111;
  --color-border: #E8E4D8;
  --color-white: #FFFFFF;

  --font-heading: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --container-max: 1280px;
  --section-pad-y: 96px;
  --section-pad-x: 32px;

  --ease-smooth: cubic-bezier(.19,1,.22,1);
  --duration-anim: 1400ms;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-gold: 0 10px 40px rgba(184,134,11,0.25);
}

/* ---------- RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color .3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-blue-dark);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(42px, 5.5vw, 72px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(22px, 2.4vw, 28px); }
h4 { font-size: clamp(18px, 1.8vw, 22px); }

p { color: var(--color-text-soft); }

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  width: 100%;
}

section {
  padding: var(--section-pad-y) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 16px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-header p {
  font-size: 18px;
  margin-top: 16px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  min-height: 48px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 4px;
  transition: all .35s var(--ease-smooth);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 50px rgba(184,134,11,0.35);
}

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

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-ghost {
  color: var(--color-primary);
  padding: 10px 0;
}

.btn-ghost:hover {
  color: var(--color-primary-dark);
  gap: 12px;
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(184,134,11,0.08);
  transition: all .3s ease;
}

.nav.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--section-pad-x);
  max-width: var(--container-max);
  margin: 0 auto;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: var(--color-blue-dark);
  letter-spacing: -0.01em;
}

.nav-logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 800;
  font-size: 20px;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

.nav-logo-text { line-height: 1.1; }
.nav-logo-text small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-soft);
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}

.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 8px 0;
  transition: color .25s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--color-primary);
  transition: width .3s var(--ease-smooth);
}

.nav-menu a:hover { color: var(--color-primary); }
.nav-menu a:hover::after { width: 100%; }
.nav-menu a.active {
  color: var(--color-primary);
}
.nav-menu a.active::after { width: 100%; }

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

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-dark);
  transition: all .3s ease;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}

.hero-slide.active { opacity: 1; }

.hero-slide-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  transform: scale(1.05);
  will-change: transform;
}

.hero-slide.active .hero-slide-image {
  animation: kenBurns 14s ease-out forwards;
}

@keyframes kenBurns {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.20); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.50) 100%),
    linear-gradient(135deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.10) 60%, rgba(184,134,11,0.30) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  color: var(--color-white);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-primary-light);
  box-shadow: 0 0 12px var(--color-primary-light);
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 24px;
  max-width: 900px;
  font-weight: 700;
}

.hero h1 .highlight {
  color: var(--color-primary-light);
  font-style: italic;
  font-weight: 400;
}

.hero p {
  color: rgba(255,255,255,0.92);
  font-size: 19px;
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-indicators {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}

.hero-dot {
  width: 32px;
  height: 3px;
  background: rgba(255,255,255,0.35);
  border-radius: 100px;
  cursor: pointer;
  transition: all .4s ease;
}

.hero-dot.active {
  background: var(--color-primary-light);
  width: 64px;
}

/* Hero slide cross-fade */

/* ---------- INTRO / OVER ONS ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.intro-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.intro-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.intro-image-decor {
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 12px;
  background: var(--color-primary);
  bottom: -40px;
  right: -40px;
  z-index: -1;
  opacity: 0.15;
}

.usp-list {
  list-style: none;
  margin-top: 32px;
}

.usp-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  font-size: 16px;
  color: var(--color-text);
}

.usp-list li::before {
  content: '';
  width: 26px; height: 26px;
  background: var(--color-primary-soft);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8860B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

/* ---------- WAAROM ONS / USP GRID ---------- */
.section-light {
  background: var(--color-bg-soft);
}

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

.usp-card {
  background: var(--color-white);
  padding: 36px 28px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: all .4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.usp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-smooth);
}

.usp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

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

.usp-icon {
  width: 56px; height: 56px;
  background: var(--color-primary-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-primary);
  transition: all .35s ease;
}

.usp-card:hover .usp-icon {
  background: var(--color-primary);
  color: var(--color-white);
  transform: rotate(-5deg) scale(1.05);
}

.usp-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
}

.usp-card p {
  font-size: 15px;
  line-height: 1.65;
}

/* ---------- EXPERTISE TICKER ---------- */
.ticker {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 32px 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 80px;
  animation: tickerScroll 40s linear infinite;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.ticker-item span:first-child {
  color: var(--color-white);
}

.ticker-item span:last-child {
  color: var(--color-primary-light);
  font-style: italic;
  font-weight: 400;
}

.ticker-dot {
  width: 8px; height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- DIENSTEN ---------- */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dienst-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all .45s var(--ease-smooth);
  display: flex;
  flex-direction: column;
}

.dienst-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.dienst-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.dienst-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-smooth);
}

.dienst-card:hover .dienst-card-image img {
  transform: scale(1.08);
}

.dienst-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.15) 100%);
}

.dienst-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dienst-card-body h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.dienst-card-body p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.dienst-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-primary);
  letter-spacing: 0.5px;
  transition: gap .3s ease;
}

.dienst-card-link:hover { gap: 14px; }

.dienst-card-link::after {
  content: '→';
  transition: transform .3s ease;
}

/* ---------- WERKWIJZE ---------- */
.werkwijze {
  position: relative;
}

.werkwijze-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  margin-top: 40px;
}

.werkwijze-line {
  position: absolute;
  top: 32px;
  left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  z-index: 0;
  opacity: 0.3;
}

.werkwijze-step {
  position: relative;
  text-align: center;
  z-index: 1;
}

.werkwijze-num {
  width: 64px; height: 64px;
  background: var(--color-white);
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 auto 20px;
  position: relative;
  transition: all .4s var(--ease-smooth);
}

.werkwijze-step:hover .werkwijze-num {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}

.werkwijze-step h4 {
  font-size: 17px;
  margin-bottom: 10px;
}

.werkwijze-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-soft);
}

/* ---------- PROJECTEN ---------- */
.projecten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.project-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: all .4s var(--ease-smooth);
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.project-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.project-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-smooth);
}

.project-card:hover .project-card-image img {
  transform: scale(1.06);
}

.project-card-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  color: var(--color-primary-dark);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.project-card-body {
  padding: 22px 24px 26px;
}

.project-card-body h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.project-card-body p {
  font-size: 14px;
  line-height: 1.6;
}

/* ---------- TIPS ---------- */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tip-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all .4s var(--ease-smooth);
  display: flex;
  flex-direction: column;
}

.tip-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.tip-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.tip-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-smooth);
}

.tip-card:hover .tip-card-image img {
  transform: scale(1.06);
}

.tip-card-body {
  padding: 24px 26px 28px;
}

.tip-card-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--color-muted);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.tip-card-meta span:first-child { color: var(--color-primary); }

.tip-card-body h3 {
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.tip-card-body p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ---------- REVIEWS ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--color-white);
  padding: 36px 32px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  position: relative;
  transition: all .4s var(--ease-smooth);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 28px;
  font-family: 'Georgia', serif;
  font-size: 80px;
  line-height: 1;
  color: var(--color-primary-soft);
  font-weight: 700;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
  color: var(--color-primary);
  font-size: 17px;
}

.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
}

.review-info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--color-blue-dark);
}

.review-info small {
  font-size: 13px;
  color: var(--color-muted);
}

/* ---------- OFFERTE / AANMELDFORMULIER ---------- */
.aanmeld {
  background: var(--color-bg-soft);
}

.aanmeld-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}

.aanmeld-info h2 {
  margin-bottom: 20px;
}

.aanmeld-info > p {
  font-size: 17px;
  margin-bottom: 28px;
}

.aanmeld-features {
  list-style: none;
  margin: 28px 0;
}

.aanmeld-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
}

.aanmeld-features li:last-child { border-bottom: none; }

.aanmeld-features li strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-blue-dark);
  font-family: var(--font-heading);
}

.aanmeld-feature-icon {
  width: 36px; height: 36px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.aanmeld-form {
  background: var(--color-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

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

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--color-bg-soft);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text);
  transition: all .25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(184,134,11,0.1);
}

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

.form-group small {
  display: block;
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 6px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-disclaimer {
  font-size: 12px;
  color: var(--color-muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.form-disclaimer a { color: var(--color-primary); }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-blue-dark);
  text-align: left;
  transition: color .25s ease;
  gap: 16px;
}

.faq-question:hover { color: var(--color-primary); }

.faq-icon {
  width: 36px; height: 36px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .35s var(--ease-smooth);
  font-size: 18px;
}

.faq-item.active .faq-icon {
  background: var(--color-primary);
  color: var(--color-white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease-smooth);
}

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-soft);
  max-width: 90%;
}

.faq-item.active .faq-answer { max-height: 400px; }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-band-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: var(--color-white);
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(255,255,255,0.92);
  font-size: 17px;
  max-width: 520px;
}

.cta-band-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cta-band .btn-primary {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cta-band .btn-primary:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.cta-band .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--color-white);
}

.cta-band .btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-brand-mark .nav-logo-mark {
  width: 50px; height: 50px;
  font-size: 22px;
}

.footer-brand strong {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--color-white);
  display: block;
  font-weight: 800;
}

.footer-brand small {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  display: block;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

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

.footer-social {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  color: rgba(255,255,255,0.7);
}

.footer-social:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color .25s ease;
}

.footer-col ul a:hover { color: var(--color-primary-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.7);
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-primary-light);
}

.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: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a:hover { color: var(--color-primary-light); }

/* ---------- SUBPAGE HERO ---------- */
.subhero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  margin-top: 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.subhero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenBurns 10s ease-out forwards;
}

.subhero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 60%, rgba(184,134,11,0.4) 100%);
  z-index: 1;
}

.subhero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  width: 100%;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
}

.breadcrumbs a:hover { color: var(--color-primary-light); }

.breadcrumbs span {
  color: rgba(255,255,255,0.5);
}

.subhero h1 {
  color: var(--color-white);
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 12px;
}

.subhero p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  max-width: 640px;
}

/* ---------- CONTENT BLOCKS ---------- */
.content-block {
  padding: 80px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.content-grid.reversed .content-text { order: 2; }
.content-grid.reversed .content-image { order: 1; }

.content-text h2 {
  margin-bottom: 20px;
}

.content-text p {
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.75;
}

.content-image {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.content-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ---------- WHATSAPP WIDGET ---------- */
.whatsapp-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform .3s ease;
}

.whatsapp-widget:hover { transform: scale(1.1); }

.whatsapp-widget::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: whatsappPulse 2s ease-out infinite;
}

@keyframes whatsappPulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ---------- TRANSLATE WIDGET ---------- */
.translate-widget {
  position: fixed;
  left: 20px;
  bottom: 24px;
  z-index: 999;
}

.translate-toggle {
  width: 52px; height: 52px;
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: all .3s ease;
  cursor: pointer;
  font-size: 22px;
}

.translate-toggle:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.05);
}

.translate-menu {
  position: absolute;
  bottom: 64px;
  left: 0;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 200px;
  display: none;
  border: 1px solid var(--color-border);
}

.translate-menu.open { display: block; animation: fadeInUp .3s ease; }

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

.translate-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--color-text);
  text-align: left;
  border-radius: 6px;
  transition: background .2s ease;
  font-family: var(--font-body);
}

.translate-option:hover { background: var(--color-bg-soft); }

.translate-option.active {
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  font-weight: 600;
}

.translate-flag {
  font-size: 18px;
}

/* ==========================================================================
   ANIMATIONS - DPS Media Standard
   ========================================================================== */

[data-anim] {
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: var(--duration-anim);
  transition-timing-function: var(--ease-smooth);
  will-change: transform, opacity;
}

[data-anim="text-left"]  { transform: translateX(-80px); }
[data-anim="image-right"] { transform: translateX(80px); }
[data-anim="card-rise"]  { transform: translateY(40px) scale(0.96); }
[data-anim="fade-up"]    { transform: translateY(30px); }
[data-anim="fade"]       { transform: none; }

[data-anim].in-view {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   RESPONSIVE - TABLET
   ========================================================================== */
@media (max-width: 1024px) {
  :root {
    --section-pad-y: 72px;
    --section-pad-x: 24px;
  }

  .nav-menu { gap: 24px; }
  .nav-menu a { font-size: 14px; }

  .intro-grid { gap: 48px; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .diensten-grid { grid-template-columns: repeat(2, 1fr); }
  .projecten-grid { grid-template-columns: repeat(2, 1fr); }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }

  .werkwijze-steps { grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .werkwijze-num { width: 52px; height: 52px; font-size: 18px; }
  .werkwijze-step h4 { font-size: 14px; }
  .werkwijze-step p { font-size: 13px; }

  .aanmeld-grid { grid-template-columns: 1fr; gap: 48px; }
  .cta-band-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-band-actions { justify-content: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }

  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .content-grid.reversed .content-text { order: unset; }
  .content-grid.reversed .content-image { order: unset; }
}

/* ==========================================================================
   RESPONSIVE - MOBILE
   ========================================================================== */
@media (max-width: 768px) {
  :root {
    --section-pad-y: 48px;
    --section-pad-x: 16px;
  }

  body { font-size: 16px; }
  h1 { font-size: clamp(36px, 9vw, 42px); }
  h2 { font-size: clamp(28px, 7vw, 32px); }
  h3 { font-size: 20px; }

  /* NAV */
  .nav-inner { padding: 12px 16px; }
  .nav-logo-mark { width: 32px; height: 32px; font-size: 14px; border-radius: 7px; }
  .nav-logo-text { font-size: 15px; }
  .nav-logo-text small { font-size: 10px; }

  .nav-menu {
    position: fixed;
    top: 56px; left: 0; right: 0;
    background: var(--color-white);
    flex-direction: column;
    gap: 0;
    padding: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-110%);
    transition: transform .4s var(--ease-smooth);
    align-items: stretch;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
  }

  .nav-menu.open { transform: translateY(0); }

  .nav-menu li { width: 100%; }

  .nav-menu a {
    display: block;
    padding: 14px 8px;
    font-size: 16px;
    border-bottom: 1px solid var(--color-border);
    min-height: 48px;
  }

  .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: flex; }

  /* HERO */
  .hero { min-height: 90vh; padding-top: 70px; }
  .hero h1 { font-size: clamp(32px, 9vw, 42px); }
  .hero p { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; }
  .hero-indicators { bottom: 20px; }

  /* GRIDS */
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .usp-grid { grid-template-columns: 1fr; gap: 16px; }
  .diensten-grid { grid-template-columns: 1fr; gap: 20px; }
  .projecten-grid { grid-template-columns: 1fr; gap: 20px; }
  .tips-grid { grid-template-columns: 1fr; gap: 20px; }
  .reviews-grid { grid-template-columns: 1fr; }

  /* WERKWIJZE */
  .werkwijze-steps { grid-template-columns: 1fr; gap: 32px; }
  .werkwijze-line { display: none; }

  /* TICKER */
  .ticker { padding: 24px 0; }
  .ticker-track { gap: 48px; }

  /* AANMELD */
  .aanmeld-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* FOOTER */
  .footer { padding: 56px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* SUBPAGE */
  .subhero { height: 40vh; min-height: 280px; margin-top: 56px; }
  .subhero h1 { font-size: clamp(28px, 8vw, 36px); }

  /* CTA BAND */
  .cta-band { padding: 56px 0; }
  .cta-band-actions { flex-direction: column; }
  .cta-band-actions .btn { width: 100%; }

  /* WIDGETS */
  .whatsapp-widget { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .translate-widget { left: 16px; bottom: 16px; }
  .translate-toggle { width: 46px; height: 46px; font-size: 18px; }

  /* CONTENT */
  .content-block { padding: 56px 0; }
}

/* iOS form fix */
@media (max-width: 768px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-anim] { opacity: 1; transform: none !important; }
}
