/* ══════════════════════════════════════
   ZUSTER OP REIS — 10 maart versie
   Fraunces serif · exacte logo kleuren
══════════════════════════════════════ */

:root {
  --sky:        #45a0cf;
  --sky-dark:   #165179;
  --sky-light:  #e3f3fb;
  --sun:        #e0b42f;
    /* Section background tokens for consistent theming */
    --section-light: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(240,248,255,0.8));
    --section-cream: linear-gradient(135deg, var(--cream), rgba(255,248,220,0.9));
    --section-sky: linear-gradient(135deg, var(--sky-light), rgba(240,248,255,0.9));
    --section-sand: linear-gradient(135deg, var(--sand-light), rgba(255,239,213,0.9));
  --sun-light:  #fdf6e0;
  --sand:       #d6b77e;
  --sand-light: #faf4ea;
  --palm:       #176a32;
  --trunk:      #7d4e24;
  --red:        #c1262a;
  --white:      #ffffff;
  --cream:      #fdfaf5;
  --text:       #165179;
  --muted:      #4a7a96;

  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Nunito', sans-serif;
  --radius: 20px;
  --shadow: 0 8px 32px rgba(22,81,121,0.10);
  --shadow-sun: 0 8px 28px rgba(224,180,47,0.28);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: linear-gradient(135deg, var(--cream), rgba(255,248,220,0.9));
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--sand-light);
  padding: 0 40px; height: 66px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 16px rgba(22,81,121,0.3);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img {
  height: 50px;
}
.nav-logo-text {
  font-family: var(--serif);
  font-size: 1.4rem; font-weight: 700;
  color: var(--white);
}
.nav-logo-text span { color: var(--sun); }

.nav-links { list-style: none; display: flex; gap: 4px; align-items: center; }
.nav-links a {
  color: var(--text); text-decoration: none;
  font-size: 0.9rem; font-weight: 600;
  padding: 7px 14px; border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: rgba(255,255,255,0.24); color: var(--sky-dark); }
.nav-cta { background: var(--sun) !important; color: var(--sky-dark) !important; border-radius: 12px !important; font-weight: 800 !important; }
.nav-cta:hover { background: #c9a228 !important; }

/* ── HERO ── */
.skip-link {
    position: absolute; left: -999px; top: 8px; background: var(--sky-dark); color: var(--white); padding: 8px 12px; z-index: 9999; border-radius: 6px; text-decoration: none; font-weight: 700;
}
.skip-link:focus { left: 16px; top: 12px; }

.nav-toggle {
    display: none; align-items: center; justify-content: center; gap: 8px; background: transparent; border: none; color: var(--text); font-size: 1.15rem; cursor: pointer;
}

:focus { outline: none; }
:focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; border-radius: 6px; }

.hero {
  min-height: 90vh;
  background: var(--sky);
  position: relative; display: flex; align-items: center;
  overflow: hidden; padding-top: 66px;
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.14) 1.5px, transparent 1.5px);
  background-size: 36px 36px; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 70px 40px 130px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px;
  align-items: center; width: 100%;
}
.hero-text { animation: fadeUp 0.9s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.18); border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 700;
  color: var(--white); line-height: 1.12;
  margin-bottom: 22px; letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; font-weight: 300; color: var(--sun); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.90); max-width: 480px; line-height: 1.8; margin-bottom: 40px; font-weight: 500; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn-sun {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--sun); color: var(--sky-dark);
  text-decoration: none; font-size: 0.95rem; font-weight: 800;
  padding: 14px 28px; border-radius: 14px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sun);
}
.btn-sun:hover { background: #c9a228; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(224,180,47,0.38); }

.btn-ghost-w {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--white); text-decoration: none;
  font-size: 0.9rem; font-weight: 600;
  padding: 14px 22px; border: 2px solid rgba(255,255,255,0.4); border-radius: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost-w:hover { border-color: var(--white); background: rgba(255,255,255,0.10); }

/* Hero logo — glassmorphism kaart */
.hero-logo-wrap { display: flex; justify-content: center; align-items: center; animation: fadeUp 0.9s 0.2s ease both; }
.hero-logo-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.30);
  border-radius: 32px;
  padding: 44px;
  display: flex; flex-direction: column;
  align-items: center; gap: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.hero-logo-img {
  width: 400px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
}
.hero-trust-row { display: flex; gap: 28px; justify-content: center; }
.trust-pill { display: flex; flex-direction: column; align-items: center; }
.trust-pill .num { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--sun); line-height: 1; }
.trust-pill .lbl { font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 3px; text-align: center; }

/* ── VERTROUWEN BAR ── */
.vertrouwen-bar { background: var(--sun); padding: 20px 40px; text-align: center; }
.vertrouwen-bar p { font-family: var(--serif); font-size: 1.15rem; font-style: italic; color: var(--sky-dark); font-weight: 600; }

/* ── CERTIFICATIES ── */
.certifications { background: var(--section-light); padding: 70px 40px 60px; border-top: 1px solid var(--sky-light); border-bottom: 1px solid var(--sky-light); }
.certifications-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.certifications .section-title { margin-top: 12px; margin-bottom: 20px; }
.certifications .section-sub { margin: 0 auto 36px; max-width: 560px; }
.certification-grid { display: flex; flex-wrap: nowrap; gap: 18px; justify-content: center; align-items: center; }
.cert-card { display: inline-flex; align-items: center; gap: 12px; padding: 12px 18px; background: var(--sky-dark); border-radius: 18px; box-shadow: 0 12px 28px rgba(22,81,121,0.08); color: var(--white); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; white-space: nowrap; }
.cert-card i { color: var(--white); font-size: 1.2rem; }

@media (max-width: 960px) {
  .certification-grid { flex-wrap: wrap; }
}

/* ── SECTION UTILITIES ── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--sky); margin-bottom: 12px;
}
.section-eyebrow::before { content: ''; display: inline-block; width: 22px; height: 3px; border-radius: 2px; background: var(--sky); }
.section-eyebrow.center { justify-content: center; }
.section-eyebrow.center::before { display: none; }
.section-eyebrow.on-dark { color: var(--sun); }
.section-eyebrow.on-dark::before { background: var(--sun); }

.section-title { font-family: var(--serif); font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 700; color: var(--text); line-height: 1.2; margin-bottom: 12px; display: flex; align-items: center; gap: 15px; }
.section-title.center { justify-content: center; }
.section-title em { font-style: italic; font-weight: 300; color: var(--sky); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--sun); }
.section-title i { color: var(--sand); font-size: 1.2em; }
.section-sub { color: var(--muted); font-size: 1rem; max-width: 500px; font-weight: 500; }
.section-sub.light { color: rgba(255,255,255,0.78); }

/* ── PIJLERS ── */
.pijlers { background: var(--sky-dark); padding: 90px 40px 80px; }
.pijlers-inner { max-width: 1200px; margin: 0 auto; }
.pijlers-header { text-align: center; margin-bottom: 56px; color: var(--white); }
.pijlers-header .section-title { color: var(--white); }
.pijlers-header .section-title em { color: var(--sun); }
.pijlers-header .section-sub { margin: 0 auto; color: rgba(255,255,255,0.82); }

.pijler-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pijler-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px 32px; box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; text-align: center;
}
.pijler-card:hover { transform: translateY(-6px); border-color: var(--sky-light); box-shadow: 0 20px 50px rgba(69,160,207,0.14); }

.pijler-icon { width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 22px; }
.pi-sky  { background: var(--sky-light); color: var(--sky); }
.pi-sun  { background: var(--sun-light); color: var(--trunk); }
.pi-palm { background: #e3f2e8; color: var(--palm); }

.pijler-card h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.pijler-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 20px; font-weight: 500; }
.card-link { color: var(--sky); font-size: 0.875rem; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.card-link:hover { gap: 10px; }

/* ── PROCES ── */ 
.proces-section { background: var(--section-sand); padding: 100px 40px; position: relative; } 
.proces-inner { max-width: 1100px; margin: 0 auto; } 
.proces-header { text-align: center; margin-bottom: 55px; } 
.proces-content { background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); border-radius: 30px; padding: 55px; border: 1px solid rgba(69,160,207,0.12); box-shadow: 0 25px 60px rgba(22,81,121,0.08), 0 8px 20px rgba(22,81,121,0.04); } 
.proces-highlight { display: flex; align-items: center; gap: 25px; background: linear-gradient( 135deg, var(--sky-dark), var(--sky) ); padding: 30px; border-radius: 24px; margin-bottom: 40px; } 
.proces-highlight-icon { width: 90px; height: 90px; flex-shrink: 0; border-radius: 24px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: white; font-size: 2rem; } 
.proces-highlight h3 { font-family: var(--serif); color: white; font-size: 1.6rem; margin-bottom: 10px; } 
.proces-highlight p { color: rgba(255,255,255,0.9); margin: 0; } 
.proces-content > p { font-size: 1.05rem; line-height: 1.95; color: var(--muted); margin-bottom: 28px; } 
.proces-subtitle { display: flex; align-items: center; gap: 12px; font-family: var(--serif); color: var(--text); font-size: 1.8rem; margin-top: 50px; margin-bottom: 30px; } 
.proces-subtitle i { color: var(--sand); } 
.proces-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; } 
.proces-point { display: flex; gap: 18px; background: white; border-radius: 22px; padding: 24px; border: 1px solid rgba(69,160,207,0.12); transition: all .3s ease; min-width: 0; } 
.proces-point:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(22,81,121,0.08); } 
.proces-point > div { min-width: 0; } 
.proces-point-icon { width: 56px; height: 56px; flex-shrink: 0; border-radius: 16px; background: var(--sky-light); display: flex; align-items: center; justify-content: center; color: var(--sky); font-size: 1.2rem; } 
.proces-point h4 { font-family: var(--serif); font-size: 1.1rem; color: var(--text); margin-bottom: 8px; } 
.proces-point p { margin: 0; color: var(--muted); line-height: 1.75; font-size: 0.95rem; min-width: 0; overflow-wrap: anywhere; } 
.proces-footer-note { margin-top: 40px; display: flex; align-items: center; gap: 16px; background: rgba(69,160,207,0.08); padding: 24px; border-radius: 18px; } 
.proces-footer-note i { color: var(--red); font-size: 1.4rem; } 
.proces-footer-note p { margin: 0; color: var(--text); font-weight: 600; } @media (max-width: 900px) { 
.proces-content { padding: 35px; } 
.proces-highlight { flex-direction: column; text-align: center; } 
.proces-points { grid-template-columns: 1fr; } } @media (max-width: 600px) { 
.proces-section { padding: 70px 20px; } 
.proces-content { padding: 24px; } 
.proces-highlight { padding: 24px; } 
.proces-highlight h3 { font-size: 1.3rem; } 
.proces-subtitle { font-size: 1.4rem; } }

/* ── OVER ONS ── */
.overons { background: var(--section-cream); padding: 90px 40px; }
.overons-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.overons-blob {
  width: 100%; padding-bottom: 100%;
  background: var(--sky);
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  position: relative; overflow: hidden;
}
.overons img { width: 70%; height: 550px; object-fit: cover; border-radius: 20px; margin-left: 100px; }
.overons-content { max-width: 520px; }
.overons-content p { font-size: 1rem; color: var(--muted); font-weight: 500; line-height: 1.85; margin-bottom: 24px; }
.waarden-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.waarden-list li { display: flex; align-items: center; gap: 16px; font-size: 0.95rem; color: var(--text); font-weight: 600; }
.w-icon { width: 44px; height: 44px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.wi-red  { background: #fde8e8; color: var(--red); }
.wi-sky  { background: var(--sky-light); color: var(--sky); }
.wi-palm { background: #e3f2e8; color: var(--palm); }

/* ── ERVARINGEN ── */
.ervaringen { background: var(--section-sky); padding: 90px 40px; }
.ervaringen-inner { max-width: 1100px; margin: 0 auto; }
.ervaringen-header { text-align: center; margin-bottom: 56px; }
.ervaringen-header .section-sub { margin: 0 auto; }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 44px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 32px; box-shadow: var(--shadow);
  border: 2px solid transparent; transition: border-color 0.3s; position: relative;
}
.testimonial-card:hover { border-color: rgba(69,160,207,0.22); }
.t-open-quote { font-family: var(--serif); font-size: 5rem; line-height: 1; color: var(--sky); opacity: 0.18; position: absolute; top: 12px; left: 24px; pointer-events: none; }
.testimonial-card blockquote { font-size: 1rem; color: var(--text); font-style: italic; line-height: 1.8; margin-bottom: 24px; margin-top: 20px; font-weight: 500; position: relative; }
.t-footer { display: flex; align-items: center; justify-content: space-between; }
.t-author strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text); }
.t-author span { font-size: 0.8rem; color: var(--muted); font-weight: 500; }
.t-stars { color: var(--sun); font-size: 1.1rem; letter-spacing: 2px; }
.btn-sky-outline { display: inline-flex; align-items: center; gap: 8px; color: var(--sky-dark); border: 2px solid var(--sky); padding: 12px 28px; border-radius: 12px; text-decoration: none; font-size: 0.875rem; font-weight: 700; transition: background 0.2s, color 0.2s; }
.btn-sky-outline:hover { background: var(--sky); color: var(--white); }

/* ── FAQ ── */
.faq { background: var(--section-light); padding: 90px 40px; }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 52px; }
.faq-item { border-bottom: 2px solid var(--sky-light); }
.faq-item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-weight: 700; color: var(--text); font-size: 0.98rem; user-select: none; transition: color 0.2s; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--sky); }
.faq-toggle { width: 32px; height: 32px; border-radius: 50%; background: var(--sky-light); color: var(--sky); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; flex-shrink: 0; transition: background 0.2s, transform 0.25s; }
.faq-item[open] summary .faq-toggle { background: var(--sky); color: var(--white); transform: rotate(45deg); }
.faq-item p { padding: 0 0 20px 0; font-size: 0.95rem; color: var(--muted); font-weight: 500; line-height: 1.8; }

/* ── CONTACT ── */
.contact { background: var(--sky); padding: 90px 40px; position: relative; overflow: hidden; }
.contact::after { content: ''; position: absolute; bottom: -100px; right: -100px; width: 360px; height: 360px; border-radius: 50%; background: rgba(22,81,121,0.15); pointer-events: none; }
.contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; position: relative; z-index: 1; }
.contact-left { padding-top: 16px; }
.contact-left .section-sub { max-width: 400px; margin-bottom: 40px; }
.contact-details-block { display: flex; flex-direction: column; gap: 18px; }
.contact-detail-item { display: flex; align-items: center; gap: 16px; }
.cd-icon { width: 48px; height: 48px; background: rgba(22,81,121,0.25); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--sun); font-size: 1.1rem; flex-shrink: 0; }
.cd-text strong { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.60); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 2px; font-weight: 700; }
.cd-text span { font-size: 0.98rem; color: var(--white); font-weight: 600; }
.contact-form-card { background: var(--white); border-radius: var(--radius); padding: 44px 36px; box-shadow: 0 20px 60px rgba(22,81,121,0.18); display: grid; gap: 22px; justify-content: center; min-height: 280px; }
.contact-form-card p { color: rgba(22,81,121,0.85); line-height: 1.7; margin: 0; }
.form-title { font-family: var(--serif); font-size: 1.4rem; line-height: 2.05; font-weight: 700; color: var(--text); margin-bottom: 0; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; border: 2px solid rgba(69,160,207,0.22); border-radius: 12px; font-family: var(--sans); font-size: 0.95rem; color: var(--text); font-weight: 500; background: var(--cream); transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(69,160,207,0.13); }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit { width: 100%; padding: 15px; background: var(--sky-dark); color: var(--white); border: none; border-radius: 12px; font-family: var(--sans); font-size: 0.98rem; font-weight: 800; cursor: pointer; letter-spacing: 0.02em; margin-top: 8px; transition: background 0.2s, transform 0.2s; }
.btn-submit:hover { background: #0f3d5c; transform: translateY(-1px); }

/* ── AANMELDFORMULIER STYLES ── */
body.aanmeldformulier-page {
    background: linear-gradient(135deg, var(--sky-light) 0%, #e6f7ff 100%);
    min-height: 100vh;
}

body.aanmeldformulier-page .container {
    max-width: 900px;
    margin: auto;
    margin-top: 80px;
    margin-bottom: 60px;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(22,81,121,0.1);
}

body.aanmeldformulier-page header {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 3px solid var(--sky-light);
    padding-bottom: 20px;
}

body.aanmeldformulier-page .back-link {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(22,81,121,0.12);
    color: var(--sky-dark);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: background 0.2s, transform 0.2s;
}

body.aanmeldformulier-page .back-link:hover {
    background: var(--sky);
    color: var(--white);
    transform: translateY(-1px);
}

body.aanmeldformulier-page header img {
    height: 80px;
    margin-bottom: 15px;
}

body.aanmeldformulier-page h1 {
    font-family: 'Fraunces', serif;
    color: var(--sky-dark);
    font-size: 2.2rem;
    margin: 0;
}

body.aanmeldformulier-page .intro {
    background: var(--sand-light);
    padding: 20px;
    border-radius: 12px;
    border-left: 5px solid var(--sand);
    margin-bottom: 30px;
}

body.aanmeldformulier-page section {
    margin-bottom: 40px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,248,255,0.7));
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--sky-light);
    box-shadow: 0 4px 12px rgba(22,81,121,0.08);
}

body.aanmeldformulier-page h2 {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    color: var(--sky-dark);
    border-bottom: 2px solid var(--sky-light);
    padding-bottom: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

body.aanmeldformulier-page h2 i {
    margin-right: 15px;
    color: var(--sand);
    font-size: 1.2rem;
}

body.aanmeldformulier-page .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

body.aanmeldformulier-page .form-group.full-width {
    grid-column: 1 / -1;
}

body.aanmeldformulier-page label {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--sky-dark);
}

body.aanmeldformulier-page input[type="text"],
body.aanmeldformulier-page input[type="email"],
body.aanmeldformulier-page input[type="tel"],
body.aanmeldformulier-page input[type="date"],
body.aanmeldformulier-page input[type="number"],
body.aanmeldformulier-page textarea,
body.aanmeldformulier-page select {
    padding: 12px;
    border: 2px solid var(--sky-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

body.aanmeldformulier-page input:focus,
body.aanmeldformulier-page textarea:focus {
    outline: none;
    border-color: var(--sky);
    background-color: #faffff;
}

body.aanmeldformulier-page .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 5px;
}

body.aanmeldformulier-page .checkbox-item {
    display: flex;
    align-items: center;
    background: var(--sky-light);
    padding: 8px 15px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: transform 0.2s;
}

body.aanmeldformulier-page .checkbox-item:hover {
    transform: translateY(-2px);
    background: var(--sky);
    color: white;
}

body.aanmeldformulier-page .checkbox-item input {
    margin-right: 10px;
    transform: scale(1.2);
}

body.aanmeldformulier-page .checkbox-agreement {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0;
    margin-bottom: 15px;
    background: transparent;
    border-radius: 0;
    color: var(--text);
}

body.aanmeldformulier-page .checkbox-agreement:hover {
    background: transparent;
    transform: none;
    color: var(--text);
}

body.aanmeldformulier-page .checkbox-agreement input {
    margin-top: 3px;
    margin-right: 10px;
    transform: scale(1.2);
}

body.aanmeldformulier-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

body.aanmeldformulier-page th {
    background: var(--sky-dark);
    color: white;
    padding: 15px;
    text-align: left;
    font-size: 0.9rem;
}

body.aanmeldformulier-page td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--sky-light);
    font-size: 0.9rem;
}

body.aanmeldformulier-page tr:hover {
    background-color: var(--sky-light);
}

body.aanmeldformulier-page .radio-cell {
    text-align: center;
}

body.aanmeldformulier-page .btn-container {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: none; /* Removed top border to eliminate the line above the buttons */
}

body.aanmeldformulier-page .btn-print {
    background-color: var(--sky-dark);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

body.aanmeldformulier-page .btn-print:hover {
    background-color: var(--sky);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-form-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 24px;
    background: var(--sky-dark);
    color: var(--white);
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.2s, transform 0.2s;
}

.btn-form-link:hover {
    background: #0f3d5c;
    transform: translateY(-1px);
}

@media print {
    body.aanmeldformulier-page .btn-container,
    body.aanmeldformulier-page .no-print {
        display: none;
    }
    body.aanmeldformulier-page {
        background: white;
        margin: 0;
        padding: 0;
    }
    body.aanmeldformulier-page .container {
        box-shadow: none;
        margin: 0;
        padding: 20px 15px;
        max-width: 100%;
    }
    body.aanmeldformulier-page header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    body.aanmeldformulier-page header img {
        height: 60px;
        margin-bottom: 10px;
    }
    body.aanmeldformulier-page h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    body.aanmeldformulier-page h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
        padding-bottom: 6px;
    }
    body.aanmeldformulier-page section {
        margin-bottom: 15px;
        padding: 12px 15px;
        background: transparent;
        border: 1px solid #ddd;
        box-shadow: none;
        page-break-inside: avoid;
    }
    body.aanmeldformulier-page .form-grid {
        gap: 10px;
        margin-bottom: 12px;
    }
    body.aanmeldformulier-page .form-group {
        margin-bottom: 8px;
    }
    body.aanmeldformulier-page label {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }
    body.aanmeldformulier-page input[type="text"],
    body.aanmeldformulier-page input[type="email"],
    body.aanmeldformulier-page input[type="tel"],
    body.aanmeldformulier-page input[type="date"],
    body.aanmeldformulier-page input[type="number"],
    body.aanmeldformulier-page textarea,
    body.aanmeldformulier-page select {
        font-size: 0.9rem;
        padding: 8px;
    }
    body.aanmeldformulier-page .checkbox-group {
        gap: 10px;
        margin-top: 4px;
    }
    body.aanmeldformulier-page .checkbox-item {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    body.aanmeldformulier-page .checkbox-item input {
        transform: scale(1);
    }
    body.aanmeldformulier-page .checkbox-agreement {
        margin-bottom: 10px;
        font-size: 0.9rem;
    }
    body.aanmeldformulier-page .checkbox-agreement input {
        transform: scale(1);
    }
    body.aanmeldformulier-page p {
        margin-bottom: 10px;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    body.aanmeldformulier-page .back-link {
        display: none;
    }
}

@media (max-width: 600px) {
    body.aanmeldformulier-page .container {
        padding: 20px;
        margin: 10px;
    }
    body.aanmeldformulier-page h1 { font-size: 1.6rem; }
}

/* ── FOOTER ── */
footer { background: var(--sand-light); padding: 40px; text-align: center; }
footer p { font-size: 0.82rem; color: var(--text); margin-bottom: 12px; }
.footer-links { display: flex; justify-content: center; gap: 24px; }
.footer-links a { font-size: 0.82rem; color: var(--text); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 48px 32px 120px; gap: 28px; }
  .hero-text { order: 2; }
  .hero-logo-wrap { order: 1; }
  .hero-logo-img { width: 160px; height: 160px; }
  .hero-logo-card { padding: 28px; gap: 16px; }
  .hero-actions { justify-content: center; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-badge { display: inline-flex; }
  .pijler-grid, .pakket-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .proces-stappen { grid-template-columns: 1fr 1fr; }
  .proces-stappen::before { display: none; }
  .overons-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .overons-blob { padding-bottom: 70%; }
  .overons-blob-inner { padding: 32px; }
  .overons-blob-inner .big-quote { font-size: 1.1rem; }
  .overons-blob-inner .quote-from { font-size: 0.72rem; letter-spacing: 0.06em; }
  .section-title { display: block; text-align: center; }
  .section-title i { display: block; margin: 0 auto 14px; }
}

@media (max-width: 960px) {
  .overons img {
    width: min(88vw, 340px);
    height: min(88vw, 340px);
    margin: 0 auto 18px;
    border-radius: 50%;
    display: block;
    object-fit: cover;
    object-position: center 38%;
  }
  .overons-inner {
    text-align: center;
  }
  .overons-content {
    max-width: 100%;
    text-align: center;
  }
  .overons-content p,
  .overons-content .waarden-list {
    text-align: center;
  }
  .waarden-list li {
    justify-content: center;
    text-align: left;
  }
  .navbar { padding: 0 20px; }
    .nav-links { display: none; }
    .nav-toggle { display: inline-flex; }
    body.nav-open .nav-links { display: flex; position: absolute; top: 66px; right: 16px; background: var(--sand-light); flex-direction: column; padding: 14px; gap: 10px; border-radius: 12px; box-shadow: 0 12px 40px rgba(22,81,121,0.14); }
    body.nav-open .nav-links a { color: var(--text); }
  .hero-inner { padding: 32px 20px 110px; gap: 20px; }
  .hero-logo-img { width: 130px; height: 130px; }
  .hero-logo-card { padding: 20px; gap: 12px; }
  .hero-trust-row { gap: 18px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .btn-sun { font-size: 0.88rem; padding: 12px 20px; }
  .btn-ghost-w { font-size: 0.85rem; padding: 12px 18px; }
  .pijlers, .diensten, .proces-section, .overons, .ervaringen, .faq, .contact { padding: 64px 24px; }
  .proces-stappen { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
  .section-title { font-size: clamp(1.6rem, 7vw, 2rem); }
  .proces-point { flex-direction: column; align-items: flex-start; }
  .proces-point-icon { width: 48px; height: 48px; }
  .proces-point p { font-size: 0.94rem; }
}

@media (max-width: 600px) {
  .hero-inner { padding: 32px 20px 110px; gap: 20px; }
  .hero-logo-img { width: 130px; height: 130px; }
  .hero-logo-card { padding: 20px; gap: 12px; }
  .hero-trust-row { gap: 18px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .btn-sun { font-size: 0.88rem; padding: 12px 20px; }
  .btn-ghost-w { font-size: 0.85rem; padding: 12px 18px; }
  .pijlers, .diensten, .proces-section, .overons, .ervaringen, .faq, .contact { padding: 64px 24px; }
  .proces-stappen { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
  .overons-blob-inner { padding: 24px; }
  .overons-blob-inner .big-icon { font-size: 2.8rem; }
  .overons-blob-inner .big-quote { font-size: 1rem; }
  .section-title { font-size: clamp(1.6rem, 7vw, 2rem); }
  .proces-point { flex-direction: column; align-items: flex-start; }
  .proces-point-icon { width: 48px; height: 48px; }
  .proces-point p { font-size: 0.94rem; }
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
