/* ============================================================
   SVV — Sloepverhuur Vinkeveen
   Design tokens + layout
   Thema: warm, zomers, "zorgeloos genieten op het water"
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Kleuren */
  --zand:          #f5f0e8;
  --zand-mid:      #ede5d5;
  --zand-diep:     #d8cdb8;
  --aqua-licht:    #e8f4f0;
  --aqua-mid:      #3a9e84;
  --aqua-diep:     #1d6b56;
  --aqua-donker:   #2c4a3e;
  --goud:          #f0c040;
  --goud-licht:    #f7d97a;
  --oranje:        #e87d3e;
  --wit:           #ffffff;
  --tekst:         #2c3a32;
  --tekst-zacht:   #4a6b5e;
  --tekst-muted:   #7a9488;
  --lijn:          rgba(44, 74, 62, 0.12);

  /* Typografie */
  --font-display:  'Fraunces', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;

  /* Layout */
  --container:     1140px;
  --radius:        14px;
  --radius-sm:     8px;

  /* Spacing */
  --section-py:    96px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--tekst);
  background: var(--wit);
  overflow-x: hidden;
}

/* ---------- UTILITIES ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aqua-mid);
  margin-bottom: 12px;
}

.section-head {
  max-width: 600px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  font-weight: 600;
  color: var(--aqua-donker);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--tekst-zacht);
}

/* ---------- KNOPPEN ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--goud);
  color: var(--aqua-donker);
}
.btn-primary:hover {
  background: var(--goud-licht);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,192,64,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--aqua-donker);
  border: 1.5px solid var(--aqua-donker);
}
.btn-secondary:hover {
  background: var(--aqua-donker);
  color: var(--wit);
}

.btn-aqua {
  background: var(--aqua-mid);
  color: var(--wit);
}
.btn-aqua:hover {
  background: var(--aqua-diep);
  transform: translateY(-2px);
}

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lijn);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--aqua-donker);
  text-decoration: none;
}

.nav-logo img {
  height: 74px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--tekst-zacht);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--aqua-diep); }

.nav-lang {
  display: flex;
  gap: 6px;
  list-style: none;
}

.nav-lang a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--tekst-muted);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.nav-lang a:hover,
.nav-lang a.actief {
  background: var(--aqua-licht);
  color: var(--aqua-diep);
}

.nav-cta {
  background: var(--goud);
  color: var(--aqua-donker);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover {
  background: var(--goud-licht);
  transform: translateY(-1px);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(155deg, var(--aqua-licht) 0%, var(--zand) 50%, #fff8ee 100%);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 80px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aqua-mid);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--aqua-mid);
  border-radius: 2px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 600;
  color: var(--aqua-donker);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--oranje);
}

.hero p {
  font-size: 1.12rem;
  color: var(--tekst-zacht);
  max-width: 500px;
  margin-bottom: 34px;
  line-height: 1.75;
}

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

/* Golflijnen decoratie onderaan hero */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 3;
}
.hero-wave svg { display: block; width: 100%; }

/* ---------- BOTEN ---------- */
.sectie-boten {
  padding: var(--section-py) 0;
  background: var(--wit);
}

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

.boot-kaart {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.boot-kaart:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(44,74,62,0.1);
  border-color: var(--aqua-mid);
}

.boot-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--aqua-licht);
}
.boot-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.boot-kaart:hover .boot-media img { transform: scale(1.04); }

.boot-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--goud);
  color: var(--aqua-donker);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.boot-body {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.boot-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--aqua-donker);
}

.boot-body p {
  font-size: 0.95rem;
  color: var(--tekst-zacht);
  line-height: 1.65;
}

.boot-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
  color: var(--aqua-mid);
  margin: 4px 0;
}
.boot-specs span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.boot-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--lijn);
}

.boot-prijs {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--aqua-donker);
}
.boot-prijs span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--tekst-muted);
  font-family: var(--font-body);
}

.boot-actieprijs {
  display: inline-block;
  background: var(--oranje);
  color: var(--wit);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}

.boot-borg {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.9rem;
}
.boot-borg span {
    color: var(--kleur-tekst-licht, #666);
}
.boot-voorwaarden-link {
    background: none;
    border: none;
    padding: 0;
    color: var(--kleur-primair, #0f4c5c);
    text-decoration: underline;
    font-size: 0.85rem;
    cursor: pointer;
    text-align: left;
    width: fit-content;
}
.boot-voorwaarden-link:hover {
    color: var(--kleur-primair-donker, #0a3542);
}

.boot-reserveer {
  color: var(--aqua-mid);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.2s;
}
.boot-reserveer:hover { color: var(--aqua-diep); }

/* ---------- TARIEVEN ---------- */
.tarieven-tabel {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 10px;
}
.tarieven-tabel th {
  text-align: left;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--tekst-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 10px 6px 0;
  border-bottom: 1px solid var(--lijn);
}
.tarieven-tabel td {
  padding: 8px 10px 8px 0;
  color: var(--tekst-zacht);
  border-bottom: 1px solid var(--lijn);
}
.tarieven-tabel td:last-child { font-weight: 600; color: var(--aqua-donker); }
.tarief-actie { color: var(--oranje); font-weight: 700; }
.tarief-doorgestreept {
  text-decoration: line-through;
  color: var(--tekst-muted);
  font-weight: 400;
  margin-right: 6px;
}

.tarieven-tabel.verberg-normaal .th-normaal,
.tarieven-tabel.verberg-normaal .td-normaal {
    display: none;
}
.tarieven-tabel.verberg-weekend .th-weekend,
.tarieven-tabel.verberg-weekend .td-weekend {
    display: none;
}
.tarieven-tabel.verberg-seizoen .th-seizoen,
.tarieven-tabel.verberg-seizoen .td-seizoen {
    display: none;
}

.boot-borg {
    font-size: 0.9rem;
    color: var(--kleur-tekst-licht, #666);
    margin-top: 8px;
}

/* ---------- EXTRA'S ---------- */
.sectie-extras {
  padding: var(--section-py) 0;
  background: var(--zand);
}

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

.extra-kaart {
  position: relative;
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s;
}
.extra-kaart:hover {
  transform: translateY(-4px);
  border-color: var(--aqua-mid);
}

.extra-icoon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--aqua-licht);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.extra-kaart h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--aqua-donker);
  margin-bottom: 8px;
}

.extra-kaart p {
  font-size: 0.88rem;
  color: var(--tekst-zacht);
  line-height: 1.6;
  margin-bottom: 14px;
}

.extra-prijs {
  font-weight: 700;
  color: var(--aqua-mid);
  font-size: 0.94rem;
  position: absolute;
  bottom: 10px;
  left: 0;
  text-align: center;
  width: 100%;
}

.extra-categorie {
    margin-bottom: 16px;
}
.extra-categorie-titel {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--kleur-tekst-licht, #666);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
}
.extra-categorie-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.extra-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding: 4px 0;
}
.extra-item label {
	width: 50%;
}
.extra-item input {
	width: 20px;
}

.extra-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}
.extra-aantal {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}
.extra-aantal input[type="number"] {
    width: 55px;
}

#aantal_ {
	width: 80px;
}



/* ---------- EXTRA KEUZE ---------- */
.extra-keuze {
  background: var(--zand);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: border-color 0.2s;
}

.extra-keuze:has(.extra-checkbox:checked) {
  border-color: var(--aqua-mid);
  background: var(--aqua-licht);
}

.extra-aantal {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--tekst-zacht);
}

.extra-aantal select {
  width: auto;
  padding: 6px 10px;
}

.checkbox-groep {
  display: flex;
  flex-direction: column;
  gap: 8px;
}



/* ---------- OVER / VAARGEBIED ---------- */
.sectie-over {
  padding: var(--section-py) 0;
  background: var(--wit);
}

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

.over-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--lijn);
}
.over-media img { width: 100%; height: 100%; object-fit: cover; }

.over-tekst h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--aqua-donker);
  line-height: 1.15;
  margin-bottom: 18px;
}

.over-tekst p {
  font-size: 1rem;
  color: var(--tekst-zacht);
  margin-bottom: 14px;
  line-height: 1.75;
}

.usps {
  list-style: none;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.usps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--tekst-zacht);
}
.usps li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--aqua-licht);
  border: 2px solid var(--aqua-mid);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233a9e84' 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: 10px;
}

/* ---------- KALENDER ---------- */
.sectie-contact {
  padding: var(--section-py) 0;
  background: var(--zand);
  border-top: 1px solid var(--lijn);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--aqua-donker);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--tekst-zacht);
  margin-bottom: 28px;
  font-size: 1rem;
}

.kanalen {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kanaal {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--tekst);
  transition: border-color 0.2s, transform 0.2s;
}
.kanaal:hover {
  border-color: var(--aqua-mid);
  transform: translateX(4px);
}

.kanaal-icoon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.kanaal-icoon.wa  { background: #25D366; color: #fff; }
.kanaal-icoon.tel { background: var(--aqua-mid); color: #fff; }
.kanaal-icoon.mail{ background: var(--goud); color: var(--aqua-donker); }

.kanaal strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.kanaal span   { font-size: 0.83rem; color: var(--tekst-muted); }

/* ---------- FORMULIER ---------- */
.boek-formulier {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  padding: 36px 36px 32px;
}

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

.form-groep {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-groep.vol { grid-column: 1 / -1; }

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--aqua-donker);
  letter-spacing: 0.02em;
}

input, select, textarea {
  background: var(--zand);
  border: 1px solid var(--zand-diep);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--tekst);
  font-family: var(--font-body);
  font-size: 0.93rem;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
input::placeholder, textarea::placeholder { color: var(--tekst-muted); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--aqua-mid);
  background: var(--wit);
  box-shadow: 0 0 0 3px rgba(58,158,132,0.12);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233a9e84' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

textarea {
  resize: vertical;
  min-height: 96px;
}

.checkbox-groep {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--tekst-zacht);
  cursor: pointer;
}
.checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--aqua-mid);
  cursor: pointer;
  flex-shrink: 0;
}

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

.form-melding {
  display: none;
  background: var(--aqua-licht);
  border: 1px solid var(--aqua-mid);
  color: var(--aqua-diep);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 16px;
  text-align: center;
}
.form-melding.toon { display: block; }

.form-fout {
  background: #fdecea;
  border: 1px solid #e87d7d;
  color: #a32d2d;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.veld-fout {
  font-size: 0.8rem;
  color: #a32d2d;
  margin-top: 3px;
}

.form-noot {
  font-size: 0.79rem;
  color: var(--tekst-muted);
  text-align: center;
  margin-top: 12px;
}

/* ---------- BESCHIKBAARHEIDSKALENDER ---------- */
.kalender-wrap {
  margin-bottom: 16px;
}

.kalender-wrap .pika-single {
  font-family: var(--font-body);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-sm);
  box-shadow: none;
  background: var(--zand);
  width: 100%;
}

.pika-day.is-disabled {
  background: #fdecea !important;
  color: #a32d2d !important;
  text-decoration: line-through;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--aqua-donker);
  color: rgba(245,240,232,0.85);
  padding: 56px 0 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(245,240,232,0.12);
  margin-bottom: 28px;
}

.footer-merk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--zand);
}
.footer-merk img { height: 36px; filter: invert(1) brightness(1.4); }

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.55);
  margin-top: 8px;
  max-width: 260px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-kolom h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--goud);
  margin-bottom: 14px;
}

.footer-kolom ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-kolom a,
.footer-kolom button {
  color: rgba(245,240,232,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
  text-align: left;
  transition: color 0.2s;
}
.footer-kolom a:hover,
.footer-kolom button:hover { color: var(--goud); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.4);
}

/* ---------- MODAL ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,74,62,0.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.modal-overlay.actief { display: flex; }

.modal {
  background: var(--wit);
  border-radius: var(--radius);
  max-width: 620px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 36px 40px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}

.modal h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--aqua-donker);
  margin-bottom: 16px;
}

.modal h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--aqua-donker);
  margin: 20px 0 8px;
}

.modal p {
  font-size: 0.93rem;
  color: var(--tekst-zacht);
  margin-bottom: 10px;
  line-height: 1.7;
}

.modal ul {
	margin-left: 1rem;
}

.modal-sluit {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--zand);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tekst-zacht);
  transition: background 0.2s;
}
.modal-sluit:hover { background: var(--zand-mid); }

/* ---------- TAALKEUZE ---------- */
.babel-links {
  display: flex;
  gap: 6px;
  list-style: none;
}
.babel-links a {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 9px;
/*  border-radius: var(--radius-sm);
  color: var(--tekst-muted);
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s; */
}
.babel-links a:hover,
.babel-links a.actief {
  background: var(--aqua-licht);
  color: var(--aqua-diep);
  border-color: var(--aqua-mid);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .boten-grid { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: repeat(2, 1fr); }
  .over-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-rij { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-links { gap: 28px; }
}

@media (max-width: 540px) {
  :root { --section-py: 64px; }
  .extras-grid { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
  .hero { min-height: auto; }
  .hero-content { padding: 80px 0 60px; }
  .checkbox-groep { grid-template-columns: 1fr; }
  .modal { padding: 28px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}


/*---------Bedankt pagina styling--------------------*/
.sectie-bedankt {
    padding: 100px 0 60px;
    text-align: center;
}
.bedankt-content {
    max-width: 560px;
    margin: 0 auto;
}
.bedankt-icoon {
    color: var(--kleur-primair, #0f4c5c);
    margin-bottom: 24px;
}
.bedankt-details {
    margin: 24px 0 32px;
    color: var(--kleur-tekst-licht, #666);
}