
:root {
  --background-color: #f6fbfb;
  --background-soft: #edf8f7;
  --default-color: #24434a;
  --muted-color: #6a8287;
  --heading-color: #1c6979;
  --heading-color-2: #063f4d;
  --accent-color: #38b8ad;
  --accent-color-dark: #0e7580;
  --accent-blue: #4fc6cc;
  --accent-soft: #e5faf7;
  --accent-blue-soft: #e9f8f8;
  --surface-color: #ffffff;
  --surface-warm: #ffffff;
  --border-color: rgba(28, 105, 121, 0.12);
  --shadow-soft: 0 24px 70px rgba(6, 63, 77, 0.12);
  --contrast-color: #ffffff;
  --nav-color: #1c6979;
  --nav-hover-color: #38b8ad;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #1c6979;
  --nav-dropdown-hover-color: #38b8ad;
  --default-font: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --heading-font: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --nav-font: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }

body {
  color: var(--default-color);
  background: linear-gradient(180deg, var(--background-color) 0%, #ffffff 44%, var(--background-soft) 100%);
  font-family: var(--default-font);
  line-height: 1.68;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(28, 105, 121, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 105, 121, .03) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .75;
}

a { color: var(--heading-color); text-decoration: none; transition: .25s ease; }
a:hover { color: var(--accent-color); }

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 850;
  line-height: 1.12;
}
p { margin-bottom: 1rem; }
.lead { color: var(--muted-color); }

.section { padding: 86px 0; }
.section-sm { padding: 58px 0; }
.section-title { max-width: 790px; margin: 0 auto 42px; text-align: center; }
.section-title .eyebrow, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .79rem;
  margin-bottom: 13px;
}
.section-title h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 14px; letter-spacing: -.04em; }
.section-title p { font-size: 1.06rem; color: var(--muted-color); }

.header {
  background: rgba(255, 250, 243, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(28, 105, 121, .08);
  min-height: 94px;
  z-index: 997;
}
.header .container { min-height: 94px; }
.logo { gap: 12px; flex: 0 0 auto; }
.logo img { height: 68px; width: auto; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1; color: var(--heading-color); letter-spacing: -.02em; }
.brand-text strong { font-size: 1.06rem; font-weight: 900; }
.brand-text small { color: var(--accent-color); font-size: .76rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; margin-top: 4px; }

.navmenu { padding: 0; }
.navmenu ul { margin: 0; padding: 0; display: flex; align-items: center; list-style: none; gap: 2px; }
.navmenu li { position: relative; }
.navmenu a, .navmenu a:focus {
  color: var(--nav-color);
  padding: 18px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  font-family: var(--nav-font);
  font-size: 15px;
  font-weight: 800;
}
.navmenu a i, .navmenu a:focus i { font-size: 12px; margin-left: 5px; transition: .3s; }
.navmenu li:hover > a, .navmenu .active, .navmenu .active:focus { color: var(--nav-hover-color); }
.navmenu .dropdown ul {
  margin: 0;
  padding: 10px 0;
  background: var(--nav-dropdown-background-color);
  display: block;
  position: absolute;
  visibility: hidden;
  left: 0;
  top: 120%;
  opacity: 0;
  transition: .25s;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  min-width: 238px;
}
.navmenu .dropdown ul li { min-width: 210px; }
.navmenu .dropdown ul a { padding: 10px 18px; font-size: 14px; color: var(--nav-dropdown-color); }
.navmenu .dropdown ul a:hover, .navmenu .dropdown ul .active { color: var(--nav-dropdown-hover-color); background: var(--accent-soft); }
.navmenu .dropdown:hover > ul { opacity: 1; top: 100%; visibility: visible; }
.navmenu .booking-nav a {
  margin-left: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 14px 32px rgba(56, 184, 173, .26);
}
.navmenu .booking-nav a:hover, .navmenu .booking-nav a.active { background: var(--accent-color-dark); color: #fff; transform: translateY(-1px); }
.mobile-nav-toggle { color: var(--heading-color); font-size: 31px; line-height: 0; cursor: pointer; display: none; }

.home-page { overflow: hidden; }
.home-hero {
  min-height: calc(100svh - 94px);
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background-image: url('../img/van-dooren-sportzorg-praktijk.jpeg');
  background-size: cover;
  background-position: center right;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: inherit;
  background-size: cover;
  background-position: center right;
  transform: scale(1.015);
}
.home-hero::after {
  content: "";
  position: absolute;
  right: clamp(20px, 5vw, 90px);
  bottom: clamp(20px, 4vw, 80px);
  width: clamp(150px, 18vw, 270px);
  aspect-ratio: 1;
  z-index: -1;
  background: url('../img/logo.webp') center / contain no-repeat;
  opacity: .12;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,.22));
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 47, 59, .94) 0%, rgba(7, 61, 73, .84) 43%, rgba(7, 61, 73, .45) 72%, rgba(7, 61, 73, .18) 100%),
    linear-gradient(180deg, rgba(5, 47, 59, .08) 0%, rgba(5, 47, 59, .52) 100%);
}
.home-hero .container { display: flex; flex-direction: column; justify-content: center; padding-top: 58px; padding-bottom: 34px; }
.min-vh-row { flex: 1 1 auto; min-height: min(780px, calc(100svh - 205px)); }
.home-hero h1 {
  color: #fff;
  font-size: clamp(2.7rem, 7vw, 6.45rem);
  letter-spacing: -.07em;
  max-width: 950px;
  text-wrap: balance;
  margin-bottom: 22px;
}
.home-hero .lead {
  color: rgba(255,255,255,.86);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  max-width: 700px;
  line-height: 1.62;
}
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.82); border: 1px solid var(--border-color); box-shadow: 0 10px 28px rgba(8,36,61,.08); margin-bottom: 24px; color: var(--heading-color); font-weight: 900; }
.hero-badge i { color: var(--accent-color); }
.hero-badge-glass { background: rgba(255,255,255,.13); color: #fff; border-color: rgba(255,255,255,.22); backdrop-filter: blur(16px); box-shadow: none; }
.hero-badge-glass i { color: var(--accent-color); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.btn-main, .btn-soft, .btn-line { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: 999px; padding: 13px 22px; font-weight: 900; border: 1px solid transparent; }
.btn-main { background: var(--accent-color); color: #fff; box-shadow: 0 16px 34px rgba(56, 184, 173, .24); }
.btn-main:hover { background: var(--accent-color-dark); color: #fff; transform: translateY(-1px); }
.btn-main-light { background: #fff; color: var(--heading-color); }
.btn-main-light:hover { background: var(--accent-soft); color: var(--heading-color); }
.btn-soft { background: var(--accent-blue-soft); color: var(--heading-color); }
.btn-soft:hover { background: #d9f5f2; color: var(--heading-color); transform: translateY(-1px); }
.btn-ghost-light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.24); backdrop-filter: blur(14px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.22); color: #fff; }
.btn-line { border-color: rgba(12,54,88,.18); color: var(--heading-color); background: rgba(255,255,255,.58); }
.btn-line:hover { border-color: var(--accent-color); color: var(--heading-color); background: #fff; }

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: auto;
  padding: 14px;
  border-radius: 30px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 75px rgba(0,0,0,.18);
}
.trust-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.13);
  color: #fff;
}
.trust-item i {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(56, 184, 173, .22);
  color: #fff;
  font-size: 21px;
}
.trust-item strong { display: block; color: #fff; margin-bottom: 3px; }
.trust-item span { display: block; color: rgba(255,255,255,.75); font-size: .92rem; line-height: 1.45; }

.home-intro-section { padding-top: 76px; }
.section-title.compact { max-width: 720px; margin-bottom: 34px; }
.teaser-card {
  display: block;
  height: 100%;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(12,54,88,.10);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 18px 42px rgba(8,36,61,.075);
  color: var(--default-color);
  transition: .25s ease;
}
.teaser-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); color: var(--default-color); border-color: rgba(56,184,173,.34); }
.teaser-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.teaser-card p { color: var(--muted-color); }
.teaser-card span { color: var(--heading-color); font-weight: 900; display: inline-flex; gap: 8px; align-items: center; margin-top: 6px; }
.icon-circle {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent-blue-soft));
  color: var(--heading-color);
  font-size: 25px;
  margin-bottom: 18px;
}

.soft-panel { background: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.76); box-shadow: var(--shadow-soft); border-radius: 34px; padding: clamp(24px, 4vw, 44px); }
.card-clean { height: 100%; background: rgba(255,255,255,.86); border: 1px solid rgba(12,54,88,.10); border-radius: 28px; padding: 28px; box-shadow: 0 18px 42px rgba(8,36,61,.075); transition: .25s ease; }
.card-clean:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.card-clean h3 { font-size: 1.32rem; margin-bottom: 12px; }
.card-clean p { color: var(--muted-color); }
.card-clean ul { padding-left: 0; list-style: none; margin: 18px 0 0; }
.card-clean li { margin: 8px 0; color: #38575d; }
.card-clean li i { color: var(--accent-color); margin-right: 8px; }

.split-image { border-radius: 32px; width: 100%; box-shadow: var(--shadow-soft); object-fit: cover; max-height: 620px; }
.feature-list { display: grid; gap: 14px; margin: 24px 0 0; }
.feature-list .item { display: flex; gap: 14px; align-items: flex-start; background: rgba(255,255,255,.72); border: 1px solid var(--border-color); border-radius: 20px; padding: 16px; }
.feature-list i { width: 36px; height: 36px; flex: 0 0 36px; display: inline-grid; place-items: center; border-radius: 12px; background: var(--accent-soft); color: var(--accent-color-dark); }
.feature-list h4 { font-size: 1rem; margin: 0 0 3px; }
.feature-list p { margin: 0; color: var(--muted-color); }

.strengths-section { position: relative; }
.strengths-photo-card { height: 100%; min-height: 500px; border-radius: 34px; overflow: hidden; box-shadow: var(--shadow-soft); position: relative; }
.strengths-photo-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(8,36,61,.36)); }
.strengths-photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.strengths-panel h2 { font-size: clamp(2rem, 4vw, 3.7rem); letter-spacing: -.045em; }
.mini-strength-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 24px; }
.mini-strength-grid > div { border-radius: 20px; padding: 18px; background: rgba(255,255,255,.72); border: 1px solid var(--border-color); }
.mini-strength-grid i { color: var(--accent-color); font-size: 22px; margin-bottom: 10px; display: inline-block; }
.mini-strength-grid strong { color: var(--heading-color); display: block; font-size: 1rem; margin-bottom: 4px; }
.mini-strength-grid span { color: var(--muted-color); font-size: .94rem; display: block; line-height: 1.48; }

.band { background: linear-gradient(135deg, var(--heading-color-2), var(--heading-color)); color: #fff; border-radius: 38px; padding: clamp(30px, 6vw, 58px); position: relative; overflow: hidden; }
.band:before { content: ""; position: absolute; inset: -38% -10% auto auto; width: 360px; height: 360px; border-radius: 50%; background: rgba(56,184,173,.18); }
.band:after { content: ""; position: absolute; right: 42px; bottom: -70px; width: 170px; height: 170px; border: 28px solid rgba(79,198,204,.14); border-radius: 50%; }
.band h2, .band h3 { color: #fff; }
.band p { color: rgba(255,255,255,.82); }
.band .eyebrow { color: #7be0d8; }
.band .btn-main { background: #fff; color: var(--heading-color); box-shadow: none; }
.band .btn-main:hover { background: var(--accent-soft); color: var(--heading-color); }
.band .btn-soft { background: rgba(255,255,255,.14); color: #fff; }
.band .btn-soft:hover { background: rgba(255,255,255,.22); }
.premium-band { margin-top: 8px; }

.page-hero { padding: 72px 0 38px; }
.page-hero .soft-panel { min-height: 250px; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(231,245,251,.58)); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); letter-spacing: -.045em; }
.breadcrumb-lite { color: #668186; font-weight: 800; margin-bottom: 12px; }
.breadcrumb-lite a { color: var(--accent-color-dark); }

.step-card { display: flex; gap: 18px; padding: 22px; border-radius: 24px; background: rgba(255,255,255,.78); border: 1px solid var(--border-color); height: 100%; }
.step-number { width: 42px; height: 42px; flex: 0 0 42px; display: inline-grid; place-items: center; border-radius: 50%; background: var(--heading-color); color: #fff; font-weight: 900; }

.price-card { height: 100%; background: #fff; border: 1px solid var(--border-color); border-radius: 28px; padding: 30px; box-shadow: 0 18px 46px rgba(8,36,61,.075); }
.price-card .price { font-size: 2rem; color: var(--heading-color); font-weight: 900; margin: 12px 0; }
.price-card .muted { color: var(--muted-color); }

.contact-card, .form-card { background: rgba(255,255,255,.86); border: 1px solid rgba(12,54,88,.10); border-radius: 30px; padding: 30px; box-shadow: var(--shadow-soft); height: 100%; }
.info-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(12,54,88,.10); }
.info-item:last-child { border-bottom: 0; }
.info-item .icon-box { width: 46px; height: 46px; flex: 0 0 46px; display: inline-grid; place-items: center; border-radius: 16px; background: var(--accent-soft); color: var(--accent-color-dark); font-size: 20px; }
.info-item h4 { font-size: 1rem; margin-bottom: 4px; }
.info-item p { margin: 0; color: var(--muted-color); }
.form-control, .form-select { border-radius: 16px; min-height: 52px; border: 1px solid rgba(12,54,88,.16); background: rgba(255,255,255,.84); color: var(--default-color); padding: 12px 15px; }
.form-control:focus, .form-select:focus { border-color: var(--accent-color); box-shadow: 0 0 0 .22rem rgba(56,184,173,.13); }
textarea.form-control { min-height: 150px; }
.php-email-form .loading, .php-email-form .error-message, .php-email-form .sent-message { display: none; margin: 14px 0; padding: 12px 14px; border-radius: 14px; font-weight: 800; }
.php-email-form .loading { background: var(--accent-blue-soft); color: var(--heading-color); }
.php-email-form .error-message { background: #ffe2df; color: #8b241b; }
.php-email-form .sent-message { background: #eaf7ee; color: var(--heading-color); }
.php-email-form .d-block { display: block !important; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.footer { background: #063f4d; color: rgba(255,255,255,.78); padding: 58px 0 28px; margin-top: 60px; }
.footer h3, .footer h4 { color: #fff; }
.footer a { color: rgba(255,255,255,.84); }
.footer a:hover { color: #7be0d8; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-tile { width: 72px; height: 72px; border-radius: 22px; background: #ffffff; display: inline-grid; place-items: center; box-shadow: 0 18px 42px rgba(0,0,0,.16); }
.footer-logo { width: 58px; height: 58px; object-fit: contain; }
.footer-wordmark { display: flex; flex-direction: column; line-height: 1; }
.footer-wordmark strong { color: #fff; font-size: 1.1rem; font-weight: 900; }
.footer-wordmark span { color: #7be0d8; font-size: .78rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; margin-top: 5px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin: 8px 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 34px; padding-top: 20px; font-size: .93rem; }
.scroll-top { position: fixed; right: 18px; bottom: 18px; width: 44px; height: 44px; border-radius: 50%; background: var(--accent-color); color: #fff; display: inline-grid; place-items: center; opacity: 0; visibility: hidden; z-index: 999; }
.scroll-top.active { opacity: 1; visibility: visible; }
.scroll-top:hover { color: #fff; background: var(--accent-color-dark); }

@media (max-width: 1199px) {
  .mobile-nav-toggle { display: block; }
  .navmenu { position: static; }
  .navmenu ul { display: none; position: fixed; inset: 94px 14px 14px 14px; padding: 18px 0; margin: 0; border-radius: 24px; background: var(--nav-mobile-background-color); overflow-y: auto; transition: .3s; z-index: 9998; box-shadow: var(--shadow-soft); border: 1px solid var(--border-color); }
  .navmenu a, .navmenu a:focus { padding: 13px 22px; font-size: 16px; }
  .navmenu .dropdown ul { position: static; display: none; margin: 4px 18px 10px; padding: 8px 0; box-shadow: none; border-radius: 16px; background: var(--accent-blue-soft); opacity: 1; visibility: visible; }
  .navmenu .dropdown ul.dropdown-active { display: block; }
  .navmenu .booking-nav a { margin: 10px 18px 0; justify-content: center; }
  .mobile-nav-active { overflow: hidden; }
  .mobile-nav-active .navmenu > ul { display: block; }
  .hero-trust { grid-template-columns: 1fr; }
  .min-vh-row { min-height: auto; padding: 82px 0 42px; }
}

@media (max-width: 991px) {
  .header, .header .container { min-height: 82px; }
  .logo img { height: 54px; }
  .brand-text strong { font-size: .98rem; }
  .brand-text small { font-size: .69rem; }
  .navmenu ul { inset: 82px 14px 14px 14px; }
  .home-hero { min-height: calc(100svh - 82px); background-position: 68% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(6,31,53,.94) 0%, rgba(8,41,70,.78) 58%, rgba(8,41,70,.44) 100%); }
  .home-hero .container { padding-top: 34px; }
  .home-hero h1 { font-size: clamp(2.45rem, 10vw, 4.7rem); }
  .strengths-photo-card { min-height: 380px; }
  .mini-strength-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

@media (max-width: 575px) {
  body::before { background-size: 44px 44px; opacity: .55; }
  .header, .header .container { min-height: 76px; }
  .logo { gap: 9px; }
  .logo img { height: 48px; }
  .brand-text strong { font-size: .9rem; }
  .brand-text small { font-size: .63rem; letter-spacing: .1em; }
  .navmenu ul { inset: 76px 10px 10px 10px; }
  .home-hero { min-height: calc(100svh - 76px); background-position: 72% center; }
  .home-hero .container { padding-bottom: 20px; }
  .min-vh-row { padding: 54px 0 24px; }
  .home-hero::after { width: 140px; opacity: .1; right: 14px; bottom: 18px; }
  .hero-actions .btn-main, .hero-actions .btn-soft, .hero-actions .btn-line { width: 100%; }
  .hero-badge-glass { border-radius: 18px; line-height: 1.35; }
  .hero-trust { border-radius: 22px; padding: 10px; }
  .trust-item { padding: 14px; border-radius: 18px; }
  .trust-item span { display: none; }
  .home-intro-section { padding-top: 58px; }
  .teaser-card { border-radius: 24px; padding: 24px; }
  .soft-panel, .contact-card, .form-card { border-radius: 24px; padding: 22px; }
}

/* Fase 4 - nieuwe hero, logo en focus op sportmassage / medical taping / cupping */
body {
  background: linear-gradient(180deg, #f6fbfb 0%, #ffffff 46%, #edf8f7 100%);
}
body::before {
  background-image:
    linear-gradient(rgba(28, 105, 121, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 105, 121, .02) 1px, transparent 1px);
  opacity: .48;
}
.logo img {
  height: 74px;
  width: 74px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(8,36,61,.16));
}
.footer-logo {
  width: 64px;
  height: 64px;
}
.home-hero {
  background-image: url('../img/hero-cupping.webp');
  background-position: center right;
  min-height: calc(100svh - 94px);
}
.home-hero::before {
  background-image: url('../img/hero-cupping.webp');
  background-position: center right;
}
.home-hero::after {
  opacity: .08;
  right: clamp(14px, 4vw, 62px);
  bottom: clamp(14px, 4vw, 58px);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 47, 59, .98) 0%, rgba(7, 61, 73, .93) 34%, rgba(7, 61, 73, .63) 58%, rgba(7, 61, 73, .22) 100%),
    linear-gradient(180deg, rgba(5, 47, 59, .08) 0%, rgba(5, 47, 59, .46) 100%);
}
.hero-logo-mark {
  width: clamp(92px, 11vw, 145px);
  height: auto;
  display: block;
  margin-bottom: 18px;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.24));
}
.home-hero h1 {
  max-width: 820px;
  font-size: clamp(2.6rem, 5.8vw, 5.6rem);
}
.home-hero .lead {
  max-width: 650px;
}
.hero-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.hero-service-pills span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 9px 14px;
  color: #fff;
  font-weight: 900;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
}
.hero-service-pills span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-color);
  margin-right: 9px;
}
.check-list {
  list-style: none;
  padding-left: 0;
  margin: 22px 0 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0;
  color: #38575d;
}
.check-list i {
  color: var(--accent-color);
  margin-top: 3px;
}
.card-clean .icon-circle,
.teaser-card .icon-circle,
.info-item .icon-box,
.feature-list i {
  background: linear-gradient(135deg, rgba(56,184,173,.16), rgba(79,198,204,.14));
}
@media (max-width: 991px) {
  .logo img { height: 58px; width: 58px; }
  .home-hero { background-position: 64% center; }
  .home-hero::before { background-position: 64% center; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5,25,45,.98) 0%, rgba(7,34,59,.88) 54%, rgba(7,34,59,.52) 100%),
      linear-gradient(180deg, rgba(6,31,53,.08) 0%, rgba(6,31,53,.54) 100%);
  }
}
@media (max-width: 575px) {
  .logo img { height: 52px; width: 52px; }
  .home-hero { background-position: 67% center; }
  .home-hero::before { background-position: 67% center; }
  .hero-logo-mark { width: 88px; margin-bottom: 14px; }
  .home-hero h1 { font-size: clamp(2.2rem, 12vw, 3.8rem); }
  .hero-service-pills span { padding: 8px 12px; font-size: .9rem; }
}


/* Fase 5 - nieuw Van Dooren Sportzorg logo + teal kleurpalet sitewide */
:root {
  --background-color: #f6fbfb;
  --background-soft: #edf8f7;
  --default-color: #24434a;
  --muted-color: #6a8287;
  --heading-color: #1c6979;
  --heading-color-2: #063f4d;
  --accent-color: #38b8ad;
  --accent-color-dark: #0e7580;
  --accent-blue: #4fc6cc;
  --accent-soft: #e5faf7;
  --accent-blue-soft: #e9f8f8;
  --surface-color: #ffffff;
  --surface-warm: #f8fdfc;
  --border-color: rgba(28, 105, 121, 0.14);
  --shadow-soft: 0 24px 70px rgba(6, 63, 77, 0.13);
  --nav-color: #1c6979;
  --nav-hover-color: #38b8ad;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #1c6979;
  --nav-dropdown-hover-color: #0e7580;
}

body {
  background: linear-gradient(180deg, #f6fbfb 0%, #ffffff 48%, #edf8f7 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(28,105,121,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,105,121,.016) 1px, transparent 1px);
  opacity: .42;
}

.header {
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(28,105,121,.10);
}

.logo {
  gap: 0;
  max-width: 250px;
}

.logo img {
  width: clamp(150px, 16vw, 230px);
  height: auto;
  max-height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(6,63,77,.14));
}

.brand-text { display: none !important; }

.navmenu .booking-nav a {
  background: linear-gradient(135deg, #38b8ad, #0e7580);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(56,184,173,.25);
}
.navmenu .booking-nav a:hover,
.navmenu .booking-nav a.active {
  background: linear-gradient(135deg, #0e7580, #063f4d);
  color: #ffffff;
}

.home-hero {
  background-image: url('../img/hero-cupping.webp');
  background-position: center right;
}
.home-hero::before {
  background-image: url('../img/hero-cupping.webp');
  background-position: center right;
}
.home-hero::after {
  background-image: url('../img/logo.webp');
  width: clamp(210px, 28vw, 430px);
  aspect-ratio: 927 / 459;
  opacity: .11;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5,47,59,.98) 0%, rgba(7,61,73,.91) 38%, rgba(7,61,73,.60) 63%, rgba(7,61,73,.20) 100%),
    linear-gradient(180deg, rgba(5,47,59,.06) 0%, rgba(5,47,59,.48) 100%);
}
.hero-logo-mark {
  width: clamp(160px, 20vw, 280px);
  max-height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.22));
}
.hero-service-pills span::before,
.hero-badge i,
.check-list i { color: var(--accent-color); }
.hero-service-pills span::before { background: var(--accent-color); }

.btn-main {
  background: linear-gradient(135deg, #38b8ad, #0e7580);
  color: #fff;
  box-shadow: 0 16px 34px rgba(56,184,173,.25);
}
.btn-main:hover {
  background: linear-gradient(135deg, #0e7580, #063f4d);
  color: #fff;
}
.btn-soft { background: #e9f8f8; color: #063f4d; }
.btn-soft:hover { background: #d9f5f2; color: #063f4d; }
.btn-line:hover { border-color: var(--accent-color); }

.trust-item i {
  background: rgba(56,184,173,.22);
}
.teaser-card:hover {
  border-color: rgba(56,184,173,.36);
}
.card-clean .icon-circle,
.teaser-card .icon-circle,
.info-item .icon-box,
.feature-list i {
  background: linear-gradient(135deg, rgba(56,184,173,.16), rgba(79,198,204,.14));
  color: #0e7580;
}

.soft-panel {
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(233,248,248,.62));
}
.form-control:focus,
.form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 .22rem rgba(56,184,173,.13);
}
.footer {
  background: linear-gradient(135deg, #052f3b 0%, #063f4d 55%, #0e7580 100%);
}
.footer a:hover,
.footer-wordmark span {
  color: #7be0d8;
}
.footer-logo-tile {
  background: #ffffff;
}
.footer-logo {
  width: 96px;
  height: auto;
  max-height: 66px;
  object-fit: contain;
}
.footer-logo-tile {
  width: 118px;
  height: 84px;
  border-radius: 24px;
}
.scroll-top {
  background: var(--accent-color);
}
.scroll-top:hover {
  background: var(--accent-color-dark);
}

@media (max-width: 991px) {
  .logo img {
    width: 180px;
    max-height: 62px;
  }
  .hero-logo-mark {
    width: 190px;
  }
}
@media (max-width: 575px) {
  .logo img {
    width: 148px;
    max-height: 54px;
  }
  .hero-logo-mark {
    width: 156px;
  }
  .home-hero::after {
    width: 190px;
  }
}


/* Fase 6 - hero-logo vervangen door transparante VDS-versie */
.home-hero::after {
  background-image: url('../img/logo-hero.webp');
  aspect-ratio: 1523 / 1131;
  width: clamp(230px, 31vw, 500px);
  opacity: .09;
}
.hero-logo-mark {
  width: clamp(210px, 25vw, 360px);
  max-height: 185px;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(0,0,0,.26));
}
@media (max-width: 991px) {
  .hero-logo-mark { width: 250px; max-height: 160px; }
}
@media (max-width: 575px) {
  .hero-logo-mark { width: 210px; max-height: 140px; }
  .home-hero::after { width: 210px; opacity: .07; }
}


/* Fase 7 - homepage hero carousel + dienstfoto's */
.home-hero.hero-carousel {
  min-height: calc(100svh - 94px);
  background-image: none !important;
  background: #052f3b;
  display: block;
  position: relative;
}

.home-hero.hero-carousel::before,
.home-hero.hero-carousel::after {
  display: none !important;
}

.home-hero.hero-carousel .carousel-inner,
.home-hero.hero-carousel .carousel-item {
  min-height: calc(100svh - 94px);
}

.hero-slide {
  position: relative;
  min-height: calc(100svh - 94px);
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: var(--hero-position, center center);
  transform: scale(1.015);
}

.hero-slide .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5,47,59,.98) 0%, rgba(7,61,73,.93) 34%, rgba(7,61,73,.62) 58%, rgba(7,61,73,.20) 100%),
    linear-gradient(180deg, rgba(5,47,59,.08) 0%, rgba(5,47,59,.52) 100%);
}

.hero-watermark {
  position: absolute;
  right: clamp(14px, 4vw, 62px);
  bottom: clamp(14px, 4vw, 58px);
  width: clamp(230px, 31vw, 500px);
  aspect-ratio: 1523 / 1131;
  z-index: -1;
  background: url('../img/logo-hero.webp') center / contain no-repeat;
  opacity: .075;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,.22));
  pointer-events: none;
}

.hero-slide .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 58px;
  padding-bottom: 86px;
}

.hero-carousel .carousel-item {
  transition: transform .95s ease-in-out, opacity .95s ease-in-out;
}

.hero-carousel-indicators {
  right: auto;
  left: clamp(18px, calc((100vw - 1140px) / 2), 90px);
  bottom: 28px;
  margin: 0;
  justify-content: flex-start;
  gap: 9px;
  z-index: 4;
}

.hero-carousel-indicators [data-bs-target] {
  width: 42px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background-color: rgba(255,255,255,.48);
  opacity: 1;
  transition: .25s ease;
}

.hero-carousel-indicators .active {
  width: 64px;
  background-color: var(--accent-color);
}

.hero-control {
  width: 54px;
  height: 54px;
  top: auto;
  bottom: 24px;
  z-index: 5;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  opacity: 1;
}

.hero-control:hover {
  background: rgba(255,255,255,.18);
}

.hero-control.carousel-control-prev {
  left: auto;
  right: 92px;
}

.hero-control.carousel-control-next {
  right: 26px;
}

.hero-control .carousel-control-prev-icon,
.hero-control .carousel-control-next-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.hero-slide-taping .hero-slide-bg {
  background-position: center 38%;
}

.hero-slide-massage .hero-slide-bg {
  background-position: center center;
}

.split-image {
  width: 100%;
  min-height: 420px;
  max-height: 620px;
  object-fit: cover;
  object-position: center;
}

.medical-taping-page .split-image {
  object-position: center 42%;
}

.sportmassage-page .split-image {
  object-position: center center;
}

@media (max-width: 991px) {
  .home-hero.hero-carousel,
  .home-hero.hero-carousel .carousel-inner,
  .home-hero.hero-carousel .carousel-item,
  .hero-slide {
    min-height: calc(100svh - 82px);
  }

  .hero-slide .container {
    padding-top: 42px;
    padding-bottom: 94px;
  }

  .hero-slide .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5,47,59,.97) 0%, rgba(7,61,73,.88) 55%, rgba(7,61,73,.58) 100%),
      linear-gradient(180deg, rgba(5,47,59,.14) 0%, rgba(5,47,59,.66) 100%);
  }

  .hero-slide-bg {
    background-position: var(--hero-mobile-position, var(--hero-position, center center));
  }

  .hero-slide-cupping { --hero-mobile-position: 62% center; }
  .hero-slide-taping { --hero-mobile-position: center 34%; }
  .hero-slide-massage { --hero-mobile-position: 58% center; }

  .hero-control {
    display: none;
  }

  .hero-carousel-indicators {
    left: 24px;
    bottom: 24px;
  }

  .split-image {
    min-height: 340px;
    max-height: 520px;
  }
}

@media (max-width: 575px) {
  .home-hero.hero-carousel,
  .home-hero.hero-carousel .carousel-inner,
  .home-hero.hero-carousel .carousel-item,
  .hero-slide {
    min-height: calc(100svh - 76px);
  }

  .hero-slide .container {
    padding-top: 30px;
    padding-bottom: 78px;
  }

  .hero-slide .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5,47,59,.98) 0%, rgba(7,61,73,.92) 64%, rgba(7,61,73,.72) 100%),
      linear-gradient(180deg, rgba(5,47,59,.10) 0%, rgba(5,47,59,.70) 100%);
  }

  .hero-slide-taping { --hero-mobile-position: center top; }
  .hero-slide-massage { --hero-mobile-position: 62% center; }

  .hero-watermark {
    width: 210px;
    opacity: .055;
  }

  .hero-carousel-indicators [data-bs-target] {
    width: 30px;
  }

  .hero-carousel-indicators .active {
    width: 48px;
  }

  .split-image {
    min-height: 300px;
  }
}


/* Fase 8 - correcte hero-afbeelding per slide via echte img-tags */
.hero-slide-bg {
  display: none !important;
}

.hero-slide-img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.012);
  pointer-events: none;
  user-select: none;
}

.hero-slide-cupping .hero-slide-img {
  object-position: center right;
}

.hero-slide-taping .hero-slide-img {
  object-position: center 38%;
}

.hero-slide-massage .hero-slide-img {
  object-position: center center;
}

/* Iets zachtere overlay zodat de juiste foto duidelijker zichtbaar blijft */
.hero-slide .hero-overlay {
  background:
    linear-gradient(90deg, rgba(5,47,59,.97) 0%, rgba(7,61,73,.91) 32%, rgba(7,61,73,.58) 56%, rgba(7,61,73,.18) 100%),
    linear-gradient(180deg, rgba(5,47,59,.06) 0%, rgba(5,47,59,.48) 100%);
}

@media (max-width: 991px) {
  .hero-slide-cupping .hero-slide-img {
    object-position: 62% center;
  }

  .hero-slide-taping .hero-slide-img {
    object-position: center 32%;
  }

  .hero-slide-massage .hero-slide-img {
    object-position: 58% center;
  }
}

@media (max-width: 575px) {
  .hero-slide-cupping .hero-slide-img {
    object-position: 66% center;
  }

  .hero-slide-taping .hero-slide-img {
    object-position: center top;
  }

  .hero-slide-massage .hero-slide-img {
    object-position: 62% center;
  }

  .hero-slide .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5,47,59,.98) 0%, rgba(7,61,73,.93) 68%, rgba(7,61,73,.72) 100%),
      linear-gradient(180deg, rgba(5,47,59,.12) 0%, rgba(5,47,59,.70) 100%);
  }
}


/* Fase 11 - beheerbare galerij + lightbox */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.gallery-card {
  position: relative;
  display: block;
  min-height: 310px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  background: var(--surface-color);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}
.gallery-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.04);
}
.gallery-card-overlay {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 6px;
  padding: 24px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(5,47,59,.92));
}
.gallery-card-overlay strong {
  font-size: 1.22rem;
  line-height: 1.15;
}
.gallery-card-overlay small {
  color: rgba(255,255,255,.82);
}
.gallery-category {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #063f4d;
  background: rgba(255,255,255,.88);
}
.vds-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 52px);
  background: rgba(3, 24, 32, .92);
}
.vds-lightbox.active { display: flex; }
.vds-lightbox-inner {
  position: relative;
  width: min(1120px, 100%);
  max-height: 92vh;
}
.vds-lightbox img {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
  background: #000;
}
.vds-lightbox-caption {
  margin-top: 14px;
  color: #fff;
}
.vds-lightbox-caption strong { display: block; font-size: 1.15rem; }
.vds-lightbox-caption span { color: rgba(255,255,255,.78); }
.vds-lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #063f4d;
  background: #fff;
  font-size: 26px;
  line-height: 1;
  box-shadow: 0 14px 38px rgba(0,0,0,.35);
}
@media (max-width: 991px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card, .gallery-card img { min-height: 260px; }
}


/* Fase 12 - premium booking module */
.booking-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(56,184,173,.10), transparent 30%),
    linear-gradient(180deg, rgba(246,251,251,.8), rgba(237,248,247,.7));
}
.booking-wizard {
  max-width: 1040px;
  margin: 0 auto;
}
.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}
.booking-step {
  border: 1px solid var(--border-color);
  background: rgba(255,255,255,.72);
  border-radius: 20px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  color: var(--heading-color);
}
.booking-step span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-color-dark);
  font-weight: 900;
}
.booking-step strong {
  font-size: .95rem;
}
.booking-step.active {
  background: linear-gradient(135deg, rgba(56,184,173,.16), rgba(255,255,255,.9));
  border-color: rgba(56,184,173,.36);
  box-shadow: 0 18px 48px rgba(6,63,77,.10);
}
.booking-step.active span {
  background: var(--accent-color);
  color: #fff;
}
.booking-panel {
  display: none;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 32px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
}
.booking-panel.active {
  display: block;
  animation: bookingFade .28s ease;
}
@keyframes bookingFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.booking-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.booking-category-card,
.booking-date-card,
.booking-slot-card {
  border: 1px solid var(--border-color);
  background: #fff;
  color: var(--heading-color);
  border-radius: 24px;
  padding: 22px;
  text-align: left;
  transition: .25s ease;
}
.booking-category-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.booking-category-card i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(56,184,173,.16), rgba(79,198,204,.14));
  color: var(--accent-color-dark);
  font-size: 24px;
}
.booking-category-card strong {
  font-size: 1.25rem;
}
.booking-category-card span {
  color: var(--muted-color);
  line-height: 1.55;
}
.booking-category-card small {
  margin-top: auto;
  color: var(--accent-color-dark);
  font-weight: 800;
}
.booking-category-card:hover,
.booking-date-card:hover,
.booking-slot-card:hover,
.booking-category-card.active,
.booking-date-card.active,
.booking-slot-card.active {
  transform: translateY(-2px);
  border-color: rgba(56,184,173,.50);
  box-shadow: 0 18px 42px rgba(6,63,77,.10);
}
.booking-category-card.active,
.booking-date-card.active,
.booking-slot-card.active {
  background: linear-gradient(135deg, rgba(56,184,173,.18), rgba(255,255,255,.96));
}
.booking-date-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}
.booking-date-card {
  display: grid;
  gap: 6px;
  padding: 18px;
}
.booking-date-card span {
  font-size: 1.5rem;
  font-weight: 900;
}
.booking-date-card strong {
  text-transform: capitalize;
}
.booking-date-card small {
  color: var(--muted-color);
}
.booking-slots-wrap {
  padding: 20px;
  border-radius: 24px;
  background: var(--background-soft);
  border: 1px solid var(--border-color);
}
.booking-slots-wrap h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.booking-slot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.booking-slot-card {
  padding: 12px 16px;
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.booking-slot-card strong {
  font-size: 1rem;
}
.booking-slot-card span {
  color: var(--muted-color);
}
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.booking-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr);
  gap: 22px;
  align-items: start;
}
.booking-review-card,
.booking-success-panel,
.booking-empty {
  border: 1px solid var(--border-color);
  background: rgba(255,255,255,.94);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}
.booking-review-card h3 {
  margin-bottom: 18px;
}
.booking-review-card div,
.booking-summary div {
  display: grid;
  gap: 4px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border-color);
}
.booking-review-card div:last-of-type,
.booking-summary div:last-child {
  border-bottom: 0;
}
.booking-review-card span,
.booking-summary span {
  color: var(--muted-color);
  font-size: .88rem;
}
.booking-review-card strong,
.booking-summary strong {
  color: var(--heading-color);
}
.booking-review-card p {
  margin: 18px 0 0;
  color: var(--muted-color);
}
.booking-success-panel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.success-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(56,184,173,.14);
  color: var(--accent-color-dark);
  font-size: 38px;
}
.booking-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  text-align: left;
  margin-top: 22px;
}
.honeypot {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}
@media (max-width: 991px) {
  .booking-category-grid,
  .booking-date-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .booking-details-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .booking-steps {
    grid-template-columns: 1fr;
  }
  .booking-category-grid,
  .booking-date-grid,
  .booking-summary {
    grid-template-columns: 1fr;
  }
  .booking-category-card {
    min-height: auto;
  }
}


/* Fase 13 - footer/header/social/reviews/contact/mail polish */
.navmenu .booking-nav a {
  background: linear-gradient(135deg, #38b8ad, #0e7580);
  color: #fff !important;
  border: 1px solid rgba(56,184,173,.38);
  box-shadow: 0 16px 34px rgba(14,117,128,.25);
}
.navmenu .booking-nav a:hover,
.navmenu .booking-nav a.active {
  background: linear-gradient(135deg, #0e7580, #052f3b);
  color: #fff !important;
}
.footer-logo-tile {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  display: inline-flex;
  place-items: initial;
  box-shadow: none;
}
.footer-logo {
  width: 88px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.22));
}
.footer-booking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 13px 22px;
  background: #7be0d8;
  color: #052f3b !important;
  font-weight: 950;
  border: 1px solid rgba(255,255,255,.32);
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}
.footer-booking-btn:hover {
  background: #fff;
  color: #052f3b !important;
  transform: translateY(-1px);
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.footer-socials a,
.contact-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}
.footer-socials a:hover,
.contact-socials a:hover {
  background: #7be0d8;
  color: #052f3b;
}
.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 6px;
}
.contact-socials a {
  background: var(--heading-color-2);
}

.reviews-cta-section {
  position: relative;
}
.reviews-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(237,248,247,.88));
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
}
.reviews-cta-copy h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -.045em;
}
.google-rating-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 11px;
  margin: 18px 0 22px;
}
.google-rating-line .stars,
.review-stars {
  color: #f6a800;
  letter-spacing: .05em;
}
.google-rating-line strong {
  color: var(--heading-color-2);
  font-size: 1.45rem;
}
.google-rating-line small {
  color: var(--muted-color);
}
.google-review-stack {
  display: grid;
  gap: 14px;
}
.google-review-card {
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--border-color);
  box-shadow: 0 14px 38px rgba(6,63,77,.08);
}
.google-review-card:nth-child(2) { margin-left: 28px; }
.google-review-card:nth-child(3) { margin-left: 56px; }
.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.review-head img,
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 44px;
}
.review-avatar {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #38b8ad, #0e7580);
  color: #fff;
  font-weight: 950;
}
.review-head strong,
.review-head small {
  display: block;
}
.review-head small {
  color: var(--muted-color);
}
.google-review-card p {
  color: var(--muted-color);
  margin: 8px 0 0;
}
@media (max-width: 1199px) {
  body.mobile-nav-active::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9997;
    background: rgba(5,47,59,.58);
    backdrop-filter: blur(8px);
  }
  .navmenu ul {
    background: rgba(255,255,255,.97);
    padding: 18px;
  }
  .navmenu a,
  .navmenu a:focus {
    border-radius: 14px;
    margin: 3px 10px;
  }
  .navmenu a:hover,
  .navmenu .active {
    background: var(--accent-soft);
  }
  .navmenu .booking-nav a {
    margin: 12px 10px 0;
    padding: 14px 18px;
  }
}
@media (max-width: 991px) {
  .reviews-cta-grid {
    grid-template-columns: 1fr;
  }
  .google-review-card:nth-child(2),
  .google-review-card:nth-child(3) {
    margin-left: 0;
  }
}


/* Fase 14 - VDB geïnspireerd fullscreen mobile menu + extra dienst */
.card-soon {
  opacity: .86;
  background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(237,248,247,.82));
}
.soon-pill {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--heading-color-2);
  background: var(--accent-soft);
}
.feature-list a.item {
  color: inherit;
}
.feature-list a.item:hover {
  color: inherit;
  border-color: rgba(56,184,173,.36);
  transform: translateY(-1px);
}

/* Oude bootstrap-icons mobile toggle verbergen indien nog aanwezig */
.mobile-nav-toggle {
  display: none !important;
}

/* Desktop nav blijft desktop; custom fullscreen menu neemt mobiel over */
.vds-mobile-toggle,
.vds-mobile-menu {
  display: none;
}

@media (max-width: 1199px) {
  .navmenu > ul {
    display: none !important;
  }

  .vds-mobile-toggle {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(56,184,173,.28);
    background:
      radial-gradient(circle at 30% 20%, rgba(56,184,173,.28), transparent 44%),
      linear-gradient(135deg, #063f4d, #0e7580);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    z-index: 100002;
    transition: .25s ease;
    box-shadow: 0 14px 32px rgba(6,63,77,.18);
  }

  .vds-mobile-toggle:hover,
  .vds-mobile-toggle:focus-visible {
    outline: none;
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(6,63,77,.24);
  }

  .vds-mobile-toggle-line {
    width: 23px;
    height: 2px;
    border-radius: 99px;
    background: #fff;
    display: block;
    transition: transform .28s ease, opacity .22s ease, width .22s ease, background .22s ease;
  }

  .vds-mobile-toggle-line:nth-child(2) {
    width: 17px;
    margin-left: 6px;
  }

  body.vds-mobile-menu-open {
    overflow: hidden;
  }

  body.vds-mobile-menu-open .vds-mobile-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: #7be0d8;
  }

  body.vds-mobile-menu-open .vds-mobile-toggle-line:nth-child(2) {
    opacity: 0;
    transform: translateX(8px);
  }

  body.vds-mobile-menu-open .vds-mobile-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: #7be0d8;
  }

  .vds-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 100000;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
  }

  .vds-mobile-menu.is-open,
  body.vds-mobile-menu-open .vds-mobile-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .vds-mobile-menu-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 12%, rgba(56,184,173,.18), transparent 32%),
      radial-gradient(circle at 88% 78%, rgba(79,198,204,.18), transparent 38%),
      linear-gradient(145deg, #052f3b 0%, #0b5362 48%, #031d25 100%);
  }

  .vds-mobile-menu-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,.82), transparent 78%);
    -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,.82), transparent 78%);
    pointer-events: none;
  }

  .vds-mobile-menu-panel {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 96px 24px 34px;
    overflow-y: auto;
    transform: translateY(16px) scale(.985);
    opacity: 0;
    transition: transform .34s ease, opacity .34s ease;
  }

  .vds-mobile-menu.is-open .vds-mobile-menu-panel,
  body.vds-mobile-menu-open .vds-mobile-menu-panel {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  .vds-mobile-menu-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 18px;
    pointer-events: none;
  }

  .vds-mobile-menu-logo,
  .vds-mobile-menu-close {
    pointer-events: auto;
  }

  .vds-mobile-menu-logo img {
    height: 52px;
    width: auto;
    display: block;
    filter: drop-shadow(0 12px 26px rgba(0,0,0,.35));
  }

  .vds-mobile-menu-close {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.10);
    color: #fff;
    display: inline-grid;
    place-items: center;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: .24s ease;
  }

  .vds-mobile-menu-close:hover,
  .vds-mobile-menu-close:focus-visible {
    outline: none;
    background: rgba(123,224,216,.18);
    border-color: rgba(123,224,216,.42);
  }

  .vds-mobile-nav {
    width: min(420px, 100%);
    display: grid;
    gap: 9px;
    margin: auto 0 24px;
  }

  .vds-mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    padding: 11px 18px;
    text-align: center;
    color: rgba(255,255,255,.86);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
    font-size: 1rem;
    font-weight: 850;
    letter-spacing: -.01em;
    transition: .24s ease;
  }

  .vds-mobile-menu-link:hover,
  .vds-mobile-menu-link.active,
  .vds-mobile-menu-link.is-active {
    color: #052f3b;
    background: #7be0d8;
    border-color: #7be0d8;
    transform: translateY(-1px);
  }

  .vds-mobile-actions {
    width: min(420px, 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 22px;
  }

  .vds-mobile-action {
    min-height: 54px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px;
    color: #fff;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    font-weight: 900;
  }

  .vds-mobile-action-book {
    background: linear-gradient(135deg, #38b8ad, #7be0d8);
    color: #052f3b;
  }

  .vds-mobile-action:hover {
    color: #052f3b;
    background: #fff;
  }

  .vds-mobile-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .vds-mobile-socials a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
  }

  .vds-mobile-socials a:hover {
    color: #052f3b;
    background: #7be0d8;
  }
}

@media (max-width: 575px) {
  .vds-mobile-menu-panel {
    justify-content: flex-start;
    padding-top: 88px;
  }

  .vds-mobile-nav {
    gap: 8px;
  }

  .vds-mobile-menu-link {
    min-height: 43px;
    font-size: .96rem;
  }

  .vds-mobile-actions {
    grid-template-columns: 1fr;
  }
}


/* Fase 15 - Google reviews write button + zachte verticale carousel */
.google-review-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.google-write-review-btn {
  padding: 13px 20px;
  box-shadow: 0 16px 34px rgba(14,117,128,.18);
}
.google-review-carousel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  max-height: 560px;
  padding: 2px 4px;
  mask-image: linear-gradient(180deg, transparent 0, #000 9%, #000 91%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}
.google-review-track {
  position: relative;
  will-change: transform;
  transition: transform .85s cubic-bezier(.22, .78, .24, 1);
}
.google-review-carousel.is-moving .google-review-track {
  transform: translateY(calc(-1 * var(--review-shift, 0px)));
}
.google-review-carousel:hover .google-review-track {
  transition-duration: .35s;
}
.google-review-carousel .google-review-card {
  margin-left: 0 !important;
}
.google-review-carousel .google-review-card + .google-review-card {
  margin-top: 14px;
}
@media (max-width: 991px) {
  .google-review-carousel {
    min-height: 430px;
    max-height: 460px;
  }
}
@media (max-width: 575px) {
  .google-review-actions {
    align-items: stretch;
  }
  .google-review-actions .btn-line,
  .google-review-actions .btn-main {
    width: 100%;
    justify-content: center;
  }
  .google-review-carousel {
    min-height: 390px;
    max-height: 430px;
  }
}


/* Fase 16 - footer credit + beheerbare tarieven */
.footer .dotpixel-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  color: rgba(255,255,255,.86);
  text-decoration: none;
  font-weight: 800;
  font-size: .95rem;
}
.footer .dotpixel-credit i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(123,224,216,.16);
  color: #7be0d8;
  border: 1px solid rgba(123,224,216,.24);
}
.footer .dotpixel-credit strong {
  color: #7be0d8;
}
.footer .dotpixel-credit:hover {
  color: #fff;
}
.footer .dotpixel-credit:hover i {
  background: #7be0d8;
  color: #052f3b;
}
.pricing-section {
  background:
    radial-gradient(circle at 8% 0%, rgba(56,184,173,.10), transparent 31%),
    linear-gradient(180deg, rgba(246,251,251,.68), rgba(255,255,255,.95));
}
.pricing-board {
  padding: clamp(22px, 4vw, 44px);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(237,248,247,.90));
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
}
.pricing-board-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--border-color);
}
.pricing-board-header h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0;
}
.pricing-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.pricing-service-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--border-color);
  box-shadow: 0 16px 44px rgba(6,63,77,.08);
}
.pricing-service-head {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-color);
}
.pricing-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(56,184,173,.16), rgba(79,198,204,.14));
  color: var(--accent-color-dark);
  font-size: 23px;
}
.pricing-service-head h3 {
  margin: 0 0 6px;
  color: var(--heading-color-2);
}
.pricing-service-head p {
  margin: 0;
  color: var(--muted-color);
  font-size: .98rem;
}
.pricing-lines {
  display: grid;
  gap: 0;
}
.pricing-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}
.pricing-line:last-child {
  border-bottom: 0;
}
.pricing-line strong,
.pricing-line small {
  display: block;
}
.pricing-line strong {
  color: var(--default-color);
  font-weight: 850;
}
.pricing-line small {
  margin-top: 3px;
  color: var(--muted-color);
  font-size: .86rem;
}
.pricing-line span {
  color: var(--heading-color-2);
  font-size: 1.15rem;
  font-weight: 950;
  white-space: nowrap;
}
.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(56,184,173,.10);
  color: var(--heading-color-2);
}
.pricing-note i {
  color: var(--accent-color-dark);
  margin-top: 4px;
}
@media (max-width: 991px) {
  .pricing-board-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .pricing-service-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .pricing-board {
    padding: 20px;
    border-radius: 26px;
  }
  .pricing-service-card {
    padding: 20px;
  }
  .pricing-line {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}


/* Fase 17 - booking duur/prijs selectie */
.booking-duration-box {
  margin-top: 24px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(237,248,247,.78);
  border: 1px solid var(--border-color);
  display: grid;
  gap: 10px;
}
.booking-duration-box[hidden] {
  display: none !important;
}
.booking-duration-box label {
  color: var(--heading-color-2);
  font-weight: 900;
}
.booking-price-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 15px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border-color);
}
.booking-price-preview[hidden] {
  display: none !important;
}
.booking-price-preview span {
  color: var(--muted-color);
  font-size: .9rem;
}
.booking-price-preview strong {
  color: var(--heading-color-2);
  font-size: 1.22rem;
}
.booking-review-card div[hidden] {
  display: none !important;
}
.booking-slot-card span {
  font-weight: 750;
}


/* Fase 18 - reCAPTCHA v3, mobile dropdown en z-index motieven */
.grecaptcha-badge {
  visibility: hidden !important;
}
.recaptcha-notice {
  margin: 0;
  color: var(--muted-color);
  font-size: .84rem;
  line-height: 1.55;
}
.recaptcha-notice a {
  color: var(--accent-color-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.band,
.premium-band,
.soft-panel,
.card-clean,
.hero-content-card,
.reviews-cta-grid,
.pricing-board {
  position: relative;
  overflow: hidden;
}
.band > *,
.premium-band > *,
.soft-panel > *,
.card-clean > *,
.hero-content-card > *,
.reviews-cta-grid > *,
.pricing-board > * {
  position: relative;
  z-index: 2;
}
.band::before,
.premium-band::before,
.soft-panel::before,
.card-clean::before,
.hero-content-card::before,
.pricing-board::before,
.site-footer::before {
  pointer-events: none;
}
.band .btn-main,
.band .btn-line,
.premium-band .btn-main,
.premium-band .btn-line {
  position: relative;
  z-index: 5;
}
.site-footer {
  position: relative;
  overflow: hidden;
}
.site-footer::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,224,216,.16), transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.site-footer .container,
.site-footer .footer-top,
.site-footer .footer-bottom {
  position: relative;
  z-index: 2;
}

@media (max-width: 1199px) {
  .vds-mobile-dropdown {
    width: min(420px, 100%);
    display: grid;
    gap: 8px;
  }
  .vds-mobile-dropdown-toggle {
    width: 100%;
    cursor: pointer;
  }
  .vds-mobile-dropdown-toggle span {
    flex: 1;
    text-align: center;
  }
  .vds-mobile-dropdown-toggle i {
    transition: transform .24s ease;
  }
  .vds-mobile-dropdown.is-open .vds-mobile-dropdown-toggle i {
    transform: rotate(180deg);
  }
  .vds-mobile-dropdown-panel {
    display: none;
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 8px;
    border-radius: 24px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
  }
  .vds-mobile-dropdown.is-open .vds-mobile-dropdown-panel {
    display: grid;
  }
  .vds-mobile-dropdown-panel a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    border-radius: 999px;
    color: rgba(255,255,255,.80);
    background: rgba(255,255,255,.06);
    font-weight: 800;
    text-align: center;
  }
  .vds-mobile-dropdown-panel a:hover,
  .vds-mobile-dropdown-panel a.active {
    color: #052f3b;
    background: #7be0d8;
  }
}


/* Fase 19 - BMF lidmaatschap en diploma’s */
.credentials-section {
  background:
    radial-gradient(circle at 8% 5%, rgba(56,184,173,.12), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(237,248,247,.72));
}
.credentials-panel {
  padding: clamp(24px, 4vw, 44px);
  border-radius: 36px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.credentials-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 12%, rgba(56,184,173,.12), transparent 26%),
    linear-gradient(rgba(14,117,128,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,117,128,.035) 1px, transparent 1px);
  background-size: auto, 38px 38px, 38px 38px;
  pointer-events: none;
  z-index: 0;
}
.credentials-panel > * {
  position: relative;
  z-index: 1;
}
.credentials-grid {
  display: grid;
  grid-template-columns: minmax(300px, .95fr) repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.federation-card,
.diploma-card {
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--border-color);
  box-shadow: 0 16px 44px rgba(6,63,77,.08);
  overflow: hidden;
}
.federation-card {
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 20px;
}
.federation-logo-wrap {
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--border-color);
  display: grid;
  place-items: center;
}
.federation-logo-wrap img {
  max-width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
}
.federation-card h3,
.diploma-card h3 {
  margin-bottom: 9px;
  color: var(--heading-color-2);
}
.federation-card p,
.diploma-card p {
  color: var(--muted-color);
  margin-bottom: 0;
}
.diploma-preview {
  position: relative;
  display: block;
  height: 280px;
  overflow: hidden;
  background: rgba(237,248,247,.75);
}
.diploma-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .35s ease;
}
.diploma-preview span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(5,47,59,.88);
  color: #fff;
  font-size: .86rem;
  font-weight: 850;
}
.diploma-preview:hover img {
  transform: scale(1.035);
}
.diploma-card-body {
  padding: 22px;
}
.diploma-card-body .btn-line {
  margin-top: 16px;
}
.footer-bmf-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.88);
}
.footer-bmf-card img {
  width: 140px;
  max-width: 38vw;
  height: auto;
  border-radius: 12px;
  background: #fff;
  padding: 6px;
}
.footer-bmf-card strong,
.footer-bmf-card span {
  display: block;
}
.footer-bmf-card strong {
  color: #fff;
}
.footer-bmf-card span {
  color: rgba(255,255,255,.68);
  font-size: .9rem;
}
@media (max-width: 1199px) {
  .credentials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .federation-card {
    grid-column: 1 / -1;
  }
}
@media (max-width: 767px) {
  .credentials-grid {
    grid-template-columns: 1fr;
  }
  .footer-bmf-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-bmf-card img {
    max-width: 210px;
  }
}


/* Fase 21 - footer BMF netjes onder intro en boven socials */
.footer .col-lg-5 .footer-bmf-card {
  margin-top: 20px;
  margin-bottom: 18px;
  max-width: 520px;
}
.footer .col-lg-5 .footer-socials {
  margin-top: 0;
}
.footer-bmf-card img {
  flex: 0 0 auto;
}
@media (max-width: 575px) {
  .footer .col-lg-5 .footer-bmf-card {
    width: 100%;
  }
}


/* Fase 22 - strak hero-logo, subtiel sitewide patroon en dotPixel-logo */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 14%, rgba(56,184,173,.10), transparent 34%),
    radial-gradient(circle at 88% 38%, rgba(79,198,204,.08), transparent 30%),
    linear-gradient(rgba(28,105,121,.030) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,105,121,.026) 1px, transparent 1px);
  background-size: auto, auto, 54px 54px, 54px 54px;
  opacity: .74;
}
.main,
.section,
.section-sm,
.page-hero,
.home-intro-section,
.pricing-section,
.credentials-section,
.reviews-cta-section {
  position: relative;
}
.main::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(45deg, rgba(56,184,173,.035) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(56,184,173,.026) 25%, transparent 25%);
  background-position: 0 0, 22px 22px;
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 22%, rgba(0,0,0,.55), transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 22%, rgba(0,0,0,.55), transparent 72%);
}
.hero-logo-mark {
  width: clamp(88px, 10vw, 132px);
  max-width: 132px;
  margin-left: 0;
  margin-bottom: 14px;
  object-fit: contain;
  object-position: left center;
  transform: translateX(-2px);
}
.home-hero h1 {
  margin-top: 0;
}
.dotpixel-credit {
  gap: 10px;
  font-weight: 500 !important;
  letter-spacing: 0;
}
.dotpixel-credit img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.18));
}
.dotpixel-credit span,
.dotpixel-credit strong {
  font-weight: 500 !important;
}
.dotpixel-credit:hover img {
  transform: translateY(-1px);
}
@media (max-width: 575px) {
  body::after {
    background-size: auto, auto, 42px 42px, 42px 42px;
    opacity: .55;
  }
  .main::before {
    background-size: 36px 36px;
  }
  .hero-logo-mark {
    width: 82px;
    max-width: 82px;
    margin-bottom: 12px;
  }
}


/* Fase 23 - wettelijke pagina's + cookie/privacy banner */
.legal-main .page-hero {
  padding-bottom: 42px;
}
.legal-section {
  background:
    radial-gradient(circle at 8% 5%, rgba(56,184,173,.10), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(237,248,247,.70));
}
.legal-layout {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.45fr);
  gap: 26px;
  align-items: start;
}
.legal-side-card,
.legal-content-card {
  border-radius: 32px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.legal-side-card::before,
.legal-content-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(28,105,121,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,105,121,.026) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
  z-index: 0;
}
.legal-side-card > *,
.legal-content-card > * {
  position: relative;
  z-index: 1;
}
.legal-side-card {
  padding: 28px;
  position: sticky;
  top: 112px;
}
.legal-side-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(56,184,173,.18), rgba(79,198,204,.12));
  color: var(--accent-color-dark);
  font-size: 26px;
  margin-bottom: 18px;
}
.legal-side-card h2 {
  color: var(--heading-color-2);
  margin-bottom: 10px;
}
.legal-side-card p {
  color: var(--muted-color);
}
.legal-side-links {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.legal-side-links a {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  width: fit-content;
  color: var(--heading-color-2);
  font-weight: 850;
}
.legal-content-card {
  padding: clamp(24px, 4vw, 42px);
}
.legal-article + .legal-article {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}
.legal-article h2 {
  color: var(--heading-color-2);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  margin-bottom: 10px;
}
.legal-article p {
  color: var(--muted-color);
  line-height: 1.75;
  margin-bottom: 0;
}
.legal-final-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 30px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(56,184,173,.10);
  color: var(--heading-color-2);
}
.legal-final-note i {
  color: var(--accent-color-dark);
  margin-top: 4px;
}
.cookie-consent {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 100010;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity .26s ease, transform .26s ease;
}
.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-consent__inner {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 10%, rgba(123,224,216,.18), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(237,248,247,.96));
  border: 1px solid rgba(56,184,173,.28);
  box-shadow: 0 24px 70px rgba(6,63,77,.22);
}
.cookie-consent__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #38b8ad, #0e7580);
  color: #fff;
  font-size: 26px;
}
.cookie-consent__copy strong {
  display: block;
  color: var(--heading-color-2);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.cookie-consent__copy p {
  margin: 0 0 6px;
  color: var(--muted-color);
  line-height: 1.55;
  font-size: .95rem;
}
.cookie-consent__copy a {
  color: var(--accent-color-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.cookie-consent__actions .btn-line,
.cookie-consent__actions .btn-main {
  white-space: nowrap;
  border: 0;
}
.cookie-consent__secondary {
  background: #fff;
}
@media (max-width: 991px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-side-card {
    position: relative;
    top: auto;
  }
  .cookie-consent__inner {
    grid-template-columns: 48px 1fr;
  }
  .cookie-consent__actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }
  .cookie-consent__actions .btn-line,
  .cookie-consent__actions .btn-main {
    flex: 1 1 220px;
    justify-content: center;
  }
  .cookie-consent__icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .legal-content-card,
  .legal-side-card {
    border-radius: 24px;
    padding: 22px;
  }
  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .cookie-consent__inner {
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 24px;
  }
  .cookie-consent__icon {
    display: none;
  }
}


/* Fase 24 - uitgebreidere dienstpagina's en Over-mij blok */
.service-detail-section {
  background:
    radial-gradient(circle at 12% 4%, rgba(56,184,173,.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(237,248,247,.66));
}
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-detail-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--border-color);
  box-shadow: 0 16px 44px rgba(6,63,77,.08);
  position: relative;
  overflow: hidden;
}
.service-detail-card::before,
.about-story-panel::before,
.about-approach-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(28,105,121,.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,105,121,.026) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
  z-index: 0;
}
.service-detail-card > *,
.about-story-panel > *,
.about-approach-card > * {
  position: relative;
  z-index: 1;
}
.service-detail-card-featured {
  grid-column: span 3;
  padding: clamp(26px, 4vw, 42px);
  background:
    radial-gradient(circle at 12% 10%, rgba(56,184,173,.16), transparent 34%),
    rgba(255,255,255,.96);
}
.service-detail-card-wide {
  grid-column: span 3;
}
.service-detail-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(56,184,173,.16), rgba(79,198,204,.12));
  color: var(--accent-color-dark);
  font-size: 23px;
  margin-bottom: 14px;
}
.service-detail-card h2,
.service-detail-card h3,
.about-story-panel h2,
.about-approach-card h3 {
  color: var(--heading-color-2);
}
.service-detail-card p,
.about-story-panel p,
.about-approach-card p {
  color: var(--muted-color);
  line-height: 1.72;
  margin-bottom: 0;
}
.about-story-section {
  background:
    radial-gradient(circle at 82% 8%, rgba(56,184,173,.10), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,251,251,.84));
}
.about-story-panel {
  position: relative;
  overflow: hidden;
}
.about-story-panel blockquote {
  margin: 22px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--accent-color);
  border-radius: 18px;
  background: rgba(56,184,173,.10);
  color: var(--heading-color-2);
  font-weight: 850;
}
.about-approach-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 22px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.about-approach-card .service-detail-icon {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  .service-detail-card-featured,
  .service-detail-card-wide {
    grid-column: auto;
  }
}
@media (max-width: 575px) {
  .service-detail-card,
  .about-approach-card {
    padding: 20px;
    border-radius: 24px;
  }
  .about-approach-card {
    grid-template-columns: 1fr;
  }
}


/* Fase 26 - regio, doelgroep en sterkere copy */
.audience-panel {
  margin-top: 34px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 10%, rgba(56,184,173,.15), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(237,248,247,.90));
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.audience-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(28,105,121,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,105,121,.028) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
  z-index: 0;
}
.audience-panel > * {
  position: relative;
  z-index: 1;
}
.audience-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.audience-card-grid article {
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--border-color);
  box-shadow: 0 16px 42px rgba(6,63,77,.07);
}
.audience-card-grid i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  margin-bottom: 14px;
  background: rgba(56,184,173,.13);
  color: var(--accent-color-dark);
  font-size: 22px;
}
.audience-card-grid h3 {
  color: var(--heading-color-2);
  margin-bottom: 8px;
  font-size: 1.18rem;
}
.audience-card-grid p {
  color: var(--muted-color);
  margin-bottom: 0;
  line-height: 1.65;
}
.audience-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.region-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(56,184,173,.12);
  color: var(--heading-color-2);
  font-weight: 800;
}
.region-note i {
  color: var(--accent-color-dark);
  margin-top: 3px;
}
@media (max-width: 991px) {
  .audience-card-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .audience-panel {
    padding: 22px;
    border-radius: 26px;
  }
  .audience-card-grid article {
    padding: 19px;
  }
}


/* Fase 28 - FAQ accordions en extra dienstsecties */
.service-combine-section {
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(237,248,247,.66));
}
.service-combine-panel,
.service-final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 12%, rgba(56,184,173,.16), transparent 34%),
    rgba(255,255,255,.96);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
}
.service-combine-panel::before,
.service-final-cta::before,
.service-faq-accordion .accordion-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(28,105,121,.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,105,121,.026) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
  z-index: 0;
}
.service-combine-panel > *,
.service-final-cta > *,
.service-faq-accordion .accordion-item > * {
  position: relative;
  z-index: 1;
}
.service-combine-panel h2,
.service-final-cta h2 {
  color: var(--heading-color-2);
  margin-bottom: 12px;
}
.service-combine-panel p,
.service-final-cta p {
  color: var(--muted-color);
  line-height: 1.75;
  margin-bottom: 0;
}
.service-faq-section {
  background:
    radial-gradient(circle at 85% 8%, rgba(56,184,173,.10), transparent 30%),
    linear-gradient(180deg, rgba(247,252,251,.92), rgba(255,255,255,.96));
}
.service-faq-accordion {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.service-faq-accordion .accordion-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 42px rgba(6,63,77,.07);
}
.service-faq-accordion .accordion-button {
  border: 0;
  box-shadow: none;
  color: var(--heading-color-2);
  background: transparent;
  font-weight: 900;
  padding: 20px 22px;
}
.service-faq-accordion .accordion-button:not(.collapsed) {
  color: var(--accent-color-dark);
  background: rgba(56,184,173,.08);
}
.service-faq-accordion .accordion-body {
  color: var(--muted-color);
  line-height: 1.75;
  padding: 0 22px 22px;
}
.service-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background:
    radial-gradient(circle at 10% 10%, rgba(123,224,216,.22), transparent 30%),
    linear-gradient(135deg, #073f4b, #0e7580);
}
.service-final-cta h2,
.service-final-cta p,
.service-final-cta .eyebrow {
  color: #fff;
}
.service-final-cta p {
  color: rgba(255,255,255,.80);
}
.service-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.service-final-cta .btn-line {
  background: rgba(255,255,255,.92);
  color: var(--heading-color-2);
}
@media (max-width: 767px) {
  .service-final-cta {
    grid-template-columns: 1fr;
  }
  .service-final-cta-actions {
    justify-content: flex-start;
  }
}

