/* =========================================================
   MODA TRAVEL — Stylesheet
   Kleuren, typografie & animaties
   ========================================================= */

:root {
  --black:      #0c0c0e;
  --charcoal:   #16161a;
  --charcoal-2: #1e1e24;
  --white:      #ffffff;
  --off:        #f5f5f7;
  --muted:      #9a9aa5;
  --line:       rgba(255, 255, 255, 0.10);

  --red:        #e11d2a;
  --red-dark:   #b3141f;
  --gold:       #c9a24b;

  --radius:     18px;
  --radius-sm:  12px;
  --shadow:     0 20px 50px rgba(0, 0, 0, 0.35);
  --shadow-sm:  0 10px 30px rgba(0, 0, 0, 0.18);

  --maxw:       1180px;
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);

  --font-head:  'Sora', system-ui, sans-serif;
  --font-body:  'Inter', system-ui, sans-serif;

  /* -------- Thema-tokens (donker = standaard) -------- */
  --bg:            var(--black);
  --surface:       var(--charcoal);
  --surface-2:     var(--charcoal-2);
  --surface-3:     #14141a;
  --surface-soft:  rgba(255, 255, 255, 0.03);
  --footer-bg:     #08080a;
  --section-dark:  linear-gradient(180deg, #0a0a0c, #131318);
  --calc-result:   linear-gradient(160deg, #17171d, #101014);

  --text:          var(--off);
  --text-strong:   #ffffff;
  --input-bg:      var(--black);
  --faint:         rgba(255, 255, 255, 0.14);

  --ghost-bg:      rgba(255, 255, 255, 0.06);
  --ghost-bg-hover:rgba(255, 255, 255, 0.12);
  --ghost-text:    #ffffff;
}

/* -------- Licht thema -------- */
:root[data-theme="light"] {
  --surface:       #ececf1;
  --surface-2:     #ffffff;
  --surface-3:     #ffffff;
  --surface-soft:  #ffffff;
  --footer-bg:     #ececf1;
  --section-dark:  linear-gradient(180deg, #ecedf2, #f5f5f8);
  --calc-result:   linear-gradient(160deg, #ffffff, #edeef4);

  --bg:            #f5f5f8;
  --text:          #26262e;
  --text-strong:   #0c0c0e;
  --muted:         #63636e;
  --line:          rgba(0, 0, 0, 0.10);
  --input-bg:      #ffffff;
  --faint:         rgba(0, 0, 0, 0.12);

  --ghost-bg:      rgba(0, 0, 0, 0.05);
  --ghost-bg-hover:rgba(0, 0, 0, 0.09);
  --ghost-text:    #0c0c0e;

  --shadow:        0 20px 50px rgba(20, 20, 45, 0.12);
  --shadow-sm:     0 10px 30px rgba(20, 20, 45, 0.08);
}

/* -------------------- Reset -------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background .4s var(--ease), color .4s var(--ease);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; font-weight: 700; letter-spacing: -0.02em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.text-accent { color: var(--red); }

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
  padding: 14px 26px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn--sm  { padding: 9px 18px; font-size: .9rem; }
.btn--lg  { padding: 16px 32px; font-size: 1.05rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--red); color: #fff; box-shadow: 0 12px 28px rgba(225, 29, 42, 0.28); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-3px); box-shadow: 0 18px 36px rgba(225, 29, 42, 0.38); }

.btn--ghost { background: var(--ghost-bg); color: var(--ghost-text); border-color: var(--line); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: var(--ghost-bg-hover); transform: translateY(-3px); }

/* Hero-knoppen staan altijd op de donkere foto → altijd licht */
.hero .btn--ghost { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.28); }
.hero .btn--ghost:hover { background: rgba(255,255,255,0.16); }

.btn__icon { font-size: 1.05em; }

/* WhatsApp-knop */
.btn--wa { background: #25d366; color: #fff; box-shadow: 0 12px 28px rgba(37,211,102,0.32); }
.btn--wa:hover { background: #1fb457; transform: translateY(-3px); box-shadow: 0 18px 36px rgba(37,211,102,0.42); }
.btn__wa { fill: currentColor; flex-shrink: 0; }

/* -------------------- Navigatie -------------------- */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 16px 0;
}
.nav.is-scrolled {
  background: rgba(12, 12, 14, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 10px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { height: 44px; width: auto; display: block; transition: height .4s var(--ease); }
.nav.is-scrolled .nav__logo { height: 36px; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: .96rem; font-weight: 500; color: var(--off); transition: color .25s; position: relative; }
.nav__links a:not(.nav__cta)::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--red); transition: width .3s var(--ease);
}
.nav__links a:not(.nav__cta):hover { color: #fff; }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta { color: #fff; }

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

/* Wisselknop tussen luchthaven- en transportgedeelte (staat in de altijd-donkere nav) */
.nav__switch {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 100px;
  font-family: var(--font-head); font-weight: 600; font-size: .86rem;
  color: #fff; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.28); backdrop-filter: blur(6px);
  white-space: nowrap;
  transition: background .25s var(--ease), transform .25s var(--ease), border-color .25s;
}
.nav__switch:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); border-color: rgba(255,255,255,0.5); }
/* Op tablet/smal-laptop tonen de wisselknoppen enkel hun icoon (het
   aria-label blijft de betekenis geven), zodat de nav niet overloopt.
   Vanaf ~1120px verschijnt de tekst weer. */
@media (max-width: 1120px) {
  .nav__switch { padding: 8px 12px; }
  .nav__switch .nav__switch__txt { display: none; }
}

/* Licht/donker-knop (staat in de altijd-donkere nav) */
.theme-toggle {
  display: inline-grid; place-items: center; width: 40px; height: 40px;
  border-radius: 50%; cursor: pointer; color: #fff;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16);
  transition: background .25s var(--ease), transform .25s var(--ease), border-color .25s;
}
.theme-toggle:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.theme-toggle svg { display: block; }
/* Standaard (donker): toon de zon (klik → licht). In licht: toon de maan. */
.theme-toggle__moon { display: none; }
:root[data-theme="light"] .theme-toggle__sun { display: none; }
:root[data-theme="light"] .theme-toggle__moon { display: block; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 110; }
.nav__toggle span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------- Hero -------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__img {
  position: absolute; inset: -4%;
  background-size: cover; background-position: center;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.04) translate(0, 0); }
  to   { transform: scale(1.16) translate(-1.5%, -1.5%); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(12,12,14,0.94) 0%, rgba(12,12,14,0.72) 42%, rgba(12,12,14,0.35) 100%),
    linear-gradient(0deg, rgba(12,12,14,0.9) 0%, rgba(12,12,14,0) 45%);
}

.hero__content { position: relative; padding-top: 120px; padding-bottom: 90px; max-width: 780px; }
.hero__eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; font-size: .74rem; color: var(--gold);
  padding: 8px 16px; border: 1px solid rgba(201,162,75,.4); border-radius: 100px; margin-bottom: 22px;
}
.hero__title { font-size: clamp(2.4rem, 6.2vw, 4.6rem); font-weight: 800; margin-bottom: 22px; color: #f6f6f8; }
.hero__sub { font-size: clamp(1rem, 2.2vw, 1.22rem); color: #d7d7de; max-width: 620px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero__badges { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; color: rgba(255,255,255,.72); font-size: .9rem; }
.hero__badges .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.6); }

.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero__mouse { display: block; width: 24px; height: 40px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px; position: relative; }
.hero__mouse::before {
  content: ''; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: #fff; border-radius: 3px; animation: scroll-wheel 1.7s infinite;
}
@keyframes scroll-wheel { 0% { opacity: 0; top: 7px; } 40% { opacity: 1; } 80% { opacity: 0; top: 20px; } 100% { opacity: 0; } }

/* -------------------- Stats -------------------- */
.stats { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 46px 22px; }
.stat { text-align: center; }
.stat__num { display: flex; align-items: center; justify-content: center; min-height: clamp(2.4rem, 5vw, 3.4rem); font-family: var(--font-head); font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--text-strong); line-height: 1; }
.stat__num--stars { color: var(--gold); font-size: clamp(1.3rem, 2.8vw, 1.9rem); letter-spacing: 3px; }
.stat__label { color: var(--muted); font-size: .92rem; }

/* -------------------- Secties algemeen -------------------- */
.section { padding: 96px 0; }
.section--alt { background: var(--surface); }
.section--dark { background: var(--section-dark); }

.section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section__eyebrow { font-family: var(--font-head); font-weight: 600; letter-spacing: .16em; text-transform: uppercase; font-size: .76rem; color: var(--red); margin-bottom: 14px; }
.section__title { font-size: clamp(1.9rem, 4.4vw, 3rem); margin-bottom: 18px; }
.section__lead { color: var(--muted); font-size: 1.06rem; }

/* -------------------- Diensten cards -------------------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.card:hover { transform: translateY(-8px); border-color: rgba(225,29,42,.35); box-shadow: var(--shadow); }
.card:hover::before { transform: scaleX(1); }
.card__icon { font-size: 2.1rem; margin-bottom: 16px; }
.card h3 { font-size: 1.16rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .96rem; }

/* Inline tekstlinks (verwijzen naar andere secties) — subtiel maar duidelijk */
.card p a, .section__lead a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; font-weight: 600; transition: color .25s; }
.card p a:hover, .section__lead a:hover { color: var(--red-dark); }

.destinations { margin-top: 46px; text-align: center; padding: 30px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); }
.destinations__label { color: var(--muted); margin-bottom: 16px; font-weight: 500; }
.destinations__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.destinations__list li {
  padding: 9px 18px; border: 1px solid var(--line); border-radius: 100px; font-size: .92rem; font-weight: 500;
  transition: background .3s, border-color .3s, transform .3s;
}
.destinations__list li:hover { background: rgba(225,29,42,.12); border-color: rgba(225,29,42,.4); transform: translateY(-2px); }

/* -------------------- Waarom Moda -------------------- */
.waarom__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: start; }
.waarom__intro { position: sticky; top: 110px; }
.waarom__intro .section__eyebrow, .waarom__intro .section__title, .waarom__intro .section__lead { text-align: left; }
.waarom__intro .btn { margin-top: 26px; }

.features { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.feature { display: flex; gap: 16px; padding: 22px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-sm); transition: transform .35s var(--ease), border-color .35s; }
.feature:hover { transform: translateY(-5px); border-color: rgba(201,162,75,.35); }
.feature__icon { font-size: 1.7rem; flex-shrink: 0; }
.feature h3 { font-size: 1.05rem; margin-bottom: 5px; }
.feature p { color: var(--muted); font-size: .92rem; }

/* -------------------- Vloot / gallery -------------------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 18px; }
.gallery__item { position: relative; border-radius: var(--radius); overflow: hidden; grid-column: span 1; }
.gallery__item--feature { grid-column: span 2; grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item figcaption {
  position: absolute; left: 0; bottom: 0; width: 100%; padding: 22px 20px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,.85), transparent); font-family: var(--font-head);
  font-weight: 600; font-size: .98rem; transform: translateY(6px); opacity: 0; transition: .4s var(--ease);
}
.gallery__item:hover figcaption { transform: translateY(0); opacity: 1; }

/* -------------------- Reviews (lopende rij) -------------------- */
.reviews-marquee {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reviews-row { display: flex; gap: 22px; width: max-content; will-change: transform; }
.reviews-row.is-animated { animation: reviews-scroll var(--marquee-dur, 60s) linear infinite; }
.reviews-marquee:hover .reviews-row.is-animated,
.reviews-marquee:focus-within .reviews-row.is-animated { animation-play-state: paused; }
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(var(--marquee-distance, 1000px) * -1)); }
}
.review {
  background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 14px;
  width: min(340px, 80vw); flex: 0 0 auto;
}
.review__stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 2px; }
.review__text {
  font-size: 1rem; color: var(--text); line-height: 1.7; flex-grow: 1;
  /* Zeer lange reviews netjes inkorten zodat alle kaarten even hoog blijven */
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 5;
  line-clamp: 5; overflow: hidden;
}
.review__author { display: flex; align-items: center; gap: 12px; margin-top: 6px; }
.review__avatar {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 1rem; flex-shrink: 0;
  overflow: hidden;
}
.review__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.review__name { font-weight: 600; font-size: .96rem; }
.review__meta { color: var(--muted); font-size: .82rem; }
.review__google { margin-left: auto; opacity: .5; font-size: .78rem; }
.reviews__cta { text-align: center; margin-top: 40px; }

/* Wie animaties uitzet: geen auto-scroll, wél handmatig vegen */
@media (prefers-reduced-motion: reduce) {
  .reviews-marquee { overflow-x: auto; }
  .reviews-row.is-animated { animation: none; }
}

/* -------------------- Prijscalculator -------------------- */
.calc { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; max-width: 960px; margin: 0 auto; }
.calc__form { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.calc__form .field:last-of-type { margin-bottom: 22px; }
.calc__form select,
.calc__form input {
  width: 100%; padding: 13px 15px; background: var(--input-bg); color: var(--text-strong);
  border: 1px solid var(--line); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .98rem;
  transition: border-color .25s, box-shadow .25s;
}
.calc__form select:focus,
.calc__form input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(225,29,42,.15); }
.field__hint { display: block; margin-top: 7px; font-size: .8rem; color: var(--muted); }

/* Segment-keuze (type rit) */
.calc__segment {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  background: var(--input-bg); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 5px;
}
/* Radio's onzichtbaar houden — selector specifiek genoeg zodat .field input
   (width:100%) ze niet uitrekt (anders steken ze buiten beeld → horizontaal scrollen). */
.calc__form .calc__segment input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; margin: 0; padding: 0; border: 0; }
.calc__segment label {
  display: flex; align-items: center; justify-content: center; text-align: center;
  margin: 0; padding: 11px 8px; border-radius: calc(var(--radius-sm) - 3px);
  font-family: var(--font-body); font-size: .9rem; font-weight: 500; line-height: 1.15;
  color: var(--muted); cursor: pointer; transition: background .2s, color .2s, box-shadow .2s;
}
.calc__segment label:hover { color: var(--text-strong); }
.calc__segment input:checked + label { background: var(--red); color: #fff; font-weight: 600; box-shadow: 0 6px 16px rgba(225,29,42,.28); }
.calc__segment input:focus-visible + label { outline: 2px solid var(--red); outline-offset: 2px; }
@media (max-width: 560px) { .calc__segment { grid-template-columns: 1fr; } }

/* Adres-autocomplete */
.autocomplete { position: relative; }
.autocomplete__list {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 30;
  list-style: none; margin: 0; padding: 4px;
  background: var(--surface-3); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); max-height: 292px; overflow-y: auto;
  animation: calc-in .18s var(--ease);
}
.autocomplete__item {
  display: flex; flex-direction: column; gap: 1px;
  padding: 10px 13px; border-radius: 9px; cursor: pointer;
  transition: background .15s;
}
.autocomplete__item:hover,
.autocomplete__item.is-active { background: rgba(225,29,42,.16); }
.autocomplete__line1 { color: var(--text-strong); font-size: .95rem; font-weight: 500; }
.autocomplete__line2 { color: var(--muted); font-size: .82rem; }

/* Tussenstop toevoegen (subtiel, groen accent) */
.calc__addstop {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 12px;
  background: none; border: 1px dashed rgba(74, 222, 128, .45); color: var(--text);
  font-family: var(--font-body); font-size: .88rem; font-weight: 500;
  padding: 9px 14px; border-radius: 100px; cursor: pointer;
  transition: background .25s, border-color .25s, transform .2s;
}
.calc__addstop:hover { background: rgba(74, 222, 128, .1); border-color: rgba(74, 222, 128, .8); transform: translateY(-1px); }
.calc__addstop-icon {
  display: inline-grid; place-items: center; width: 18px; height: 18px;
  background: #22c55e; color: #06210f; border-radius: 50%; font-size: .72rem; font-weight: 800;
}
.calc__addstop-fee { color: var(--muted); font-size: .8rem; }

.calc__stops { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.calc__stop {
  display: flex; align-items: center; gap: 8px;
  padding-left: 12px; border-left: 2px solid rgba(74, 222, 128, .5);
  animation: calc-in .28s var(--ease);
}
.calc__stop-ac { flex: 1; }
.calc__stop-input {
  width: 100%; padding: 11px 13px; background: var(--input-bg); color: var(--text-strong);
  border: 1px solid var(--line); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .92rem;
  transition: border-color .25s, box-shadow .25s;
}
.calc__stop-input:focus { outline: none; border-color: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.15); }
.calc__stop-fee { color: var(--muted); font-size: .82rem; white-space: nowrap; }
.calc__stop-remove {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--ghost-bg); border: 1px solid var(--line); color: var(--muted);
  font-size: 1.2rem; line-height: 1; cursor: pointer; transition: background .2s, color .2s;
}
.calc__stop-remove:hover { background: rgba(225,29,42,.2); color: var(--text-strong); }

@keyframes calc-out { to { opacity: 0; transform: translateX(-12px); height: 0; margin: 0; padding: 0; } }

.calc__route--via { color: var(--muted); font-size: .86rem; margin-top: -12px; margin-bottom: 18px; }

.calc__result {
  background: var(--calc-result); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px; display: flex; align-items: center; justify-content: center;
  min-height: 320px; text-align: center; overflow: hidden;
}
.calc__placeholder { color: var(--muted); }
.calc__euro { display: block; font-family: var(--font-head); font-weight: 800; font-size: 3rem; color: var(--faint); margin-bottom: 12px; }

.calc__state { width: 100%; animation: calc-in .5s var(--ease); }
@keyframes calc-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.calc__state h3 { font-size: 1.2rem; margin: 12px 0 8px; }
.calc__state p { color: var(--muted); font-size: .95rem; }

.calc__spinner {
  display: inline-block; width: 40px; height: 40px; margin-bottom: 14px;
  border: 3px solid var(--line); border-top-color: var(--red); border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.calc__emoji { font-size: 2.4rem; }

.calc__badge {
  display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: .72rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(201,162,75,.4); border-radius: 100px; padding: 6px 14px; margin-bottom: 14px;
}
.calc__price { font-family: var(--font-head); font-weight: 800; font-size: clamp(3rem, 9vw, 4.4rem); color: var(--text-strong); line-height: 1; }
.calc__route { color: var(--text); font-weight: 500; margin: 10px 0 20px; font-size: .98rem; }

.calc__breakdown { text-align: left; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 6px 0; margin-bottom: 16px; }
.calc__row { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; color: var(--muted); font-size: .95rem; }
.calc__row--total { color: var(--text-strong); font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; border-top: 1px dashed var(--line); margin-top: 2px; }
.calc__fineprint { font-size: .8rem; color: var(--muted); margin-bottom: 18px; }
.calc__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 18px; }

/* -------------------- Reserveer / formulier -------------------- */
.booking { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.booking__intro .section__eyebrow, .booking__intro .section__title, .booking__intro .section__lead { text-align: left; }
.booking__intro { position: sticky; top: 110px; }
.booking__contactlist { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.booking__contactlist li { display: flex; align-items: center; gap: 12px; font-size: 1.02rem; }
.booking__contactlist span { font-size: 1.2rem; }
.booking__contactlist a:hover { color: var(--red); }

.booking__form { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: .86rem; font-weight: 500; color: var(--muted); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; background: var(--input-bg); color: var(--text-strong);
  border: 1px solid var(--line); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .98rem;
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(225,29,42,.15); }
.field textarea { resize: vertical; }
.booking__form .btn { margin-top: 6px; }
.booking__note { text-align: center; margin-top: 14px; font-size: .92rem; min-height: 1.2em; }
.booking__note.is-ok { color: #4ade80; }
.booking__note.is-err { color: #f87171; }

/* -------------------- Footer -------------------- */
.footer { background: var(--footer-bg); padding: 66px 0 26px; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer__logo { height: 64px; width: auto; display: block; margin-bottom: 16px; }
/* Het logo heeft zwarte letters, dus in de footer tonen we de witte versie
   zodra het donkere thema aanstaat. In de nav staat altijd de witte versie,
   want die balk is sowieso donker. */
.footer__logo--op-donker { display: none; }
[data-theme="dark"] .footer__logo--op-licht { display: none; }
[data-theme="dark"] .footer__logo--op-donker { display: block; }
.footer__slogan { font-family: var(--font-head); color: var(--gold); font-style: italic; margin-bottom: 10px; }
.footer__desc { color: var(--muted); font-size: .94rem; max-width: 320px; }
.footer__legal { color: var(--muted); font-size: .82rem; margin-top: 12px; opacity: .85; max-width: 320px; }
.footer__col h4 { font-size: 1rem; margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a, .footer__col li { color: var(--muted); font-size: .94rem; transition: color .25s; }
.footer__col a:hover { color: var(--text-strong); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: .86rem; }
.footer__made { color: var(--gold); font-style: italic; }

/* -------------------- Zwevende WhatsApp-knop (linksonder) -------------------- */
.floating-wa {
  /* Rechtsonder, zoals op de andere Moda-sites. */
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 10px 28px rgba(37,211,102,.45); animation: pulse-wa 2.4s infinite;
  transition: transform .25s var(--ease);
}
.floating-wa:hover { transform: scale(1.08); }
.floating-wa svg { fill: currentColor; }
@keyframes pulse-wa {
  0%   { box-shadow: 0 10px 28px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 10px 28px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 28px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* -------------------- Reveal-animaties -------------------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .waarom__grid, .booking { grid-template-columns: 1fr; gap: 40px; }
  .waarom__intro, .booking__intro { position: static; }
  .cards { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery__item--feature { grid-column: span 2; grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }

  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px); height: 100vh;
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px;
    background: rgba(12,12,14,.97); backdrop-filter: blur(16px); padding: 40px;
    transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: -20px 0 60px rgba(0,0,0,.5);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 1.15rem; }
  .nav__toggle { display: flex; }
  .nav__cta { margin-top: 10px; }

  .stats__grid { grid-template-columns: 1fr 1fr; gap: 30px 16px; }
  .cards { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .calc { grid-template-columns: 1fr; }
  .calc__result { min-height: 240px; }
  .hero__actions .btn { flex: 1 1 auto; }
  .footer__bottom { justify-content: center; text-align: center; }
}

/* -------------------- Toegankelijkheid -------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__img { animation: none; }
}

/* -------------------- Kaart in de footer -------------------- */
.footer__kaart {
  margin-top: 34px; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; height: 280px; background: var(--surface-2);
}
.footer__kaart iframe { width: 100%; height: 100%; border: 0; display: block; }
/* In het donkere thema iets temperen zodat de kaart niet uit de pagina springt. */
[data-theme="dark"] .footer__kaart iframe { filter: grayscale(.35) brightness(.88); }
.footer__route {
  display: inline-block; margin-top: 14px; font-family: var(--font-head);
  font-weight: 600; font-size: .92rem; color: var(--text-strong); transition: color .25s;
}
.footer__route:hover { color: var(--red); }
@media (max-width: 620px) { .footer__kaart { height: 220px; } }


/* -------------------- Fotovenster (transport en travel) -------------------- */
.fotobox { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 24px; }
.fotobox.is-open { display: flex; }
.fotobox__achtergrond { position: absolute; inset: 0; background: rgba(6,6,8,.88); backdrop-filter: blur(3px); }
.fotobox__paneel { position: relative; z-index: 1; max-width: min(1100px, 100%); width: 100%; text-align: center; }
.fotobox__foto {
  max-width: 100%; max-height: 78vh; margin: 0 auto; display: block;
  border-radius: var(--radius-sm); box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.fotobox__bijschrift { margin-top: 14px; color: #d8d8e0; font-size: .95rem; }
.fotobox__teller { color: #8b8b96; margin-left: 8px; }
.fotobox__sluit, .fotobox__nav {
  position: absolute; z-index: 3; border: 0; cursor: pointer; color: #fff;
  background: rgba(255,255,255,.12); border-radius: 50%; display: grid; place-items: center;
  transition: background .25s, transform .25s var(--ease);
}
.fotobox__sluit { top: -6px; right: -6px; width: 44px; height: 44px; font-size: 1.7rem; line-height: 1; }
.fotobox__sluit:hover { background: var(--red); transform: rotate(90deg); }
.fotobox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; line-height: 1; }
.fotobox__nav:hover { background: var(--red); }
.fotobox__nav--vorige { left: -8px; }
.fotobox__nav--volgende { right: -8px; }


/* -------------------- Losse pagina's -------------------- */
/* De eerste sectie moet onder de vaste balk beginnen. Pagina's die met een
   hero openen hebben hun eigen ruimte en vallen hier bewust buiten. */
.pagina > .section:first-child { padding-top: 142px; }
@media (max-width: 720px) { .pagina > .section:first-child { padding-top: 116px; } }

/* Zonder hero is de balk doorzichtig over een lichte sectie, waardoor het menu
   onleesbaar wordt. Op die pagina's krijgt de balk meteen een achtergrond. */
.nav--vast {
  background: rgba(12, 12, 14, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
