/* ===== DJ PEPZ – Volledige huisstijl ===== */
:root {
  --donkerblauw: #0039ff;
  --lichtblauw: #0059ff;
  --lichtgrijs: #eae8e8;
  --blok-achtergrond: #f7f7fb;
  --vormelement-grijs: #eae8e8;
  --wit: #ffffff;
  --tekst-donker: #11121f;
  --tekst-zacht: #4a4a5a;
  --shadow: 0 4px 24px rgba(0, 57, 255, 0.12);
  --shadow-hover: 0 12px 40px rgba(0, 57, 255, 0.18);
  --radius: 20px;
  --radius-klein: 12px;
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-titel: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 500;
  color: var(--tekst-donker);
  background-color: var(--wit);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 1.12rem;
}


.container {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 640px;
}

.container--offerte {
  max-width: 1140px;
}

.container--wide {
  max-width: 1280px;
}

/* ===== Header (scrollt mee) ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--donkerblauw);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
}

.logo-link img {
  height: 62px;
  width: auto;
  display: block;
}

.nav-desktop {
  display: none;
}

.nav-desktop a {
  color: var(--wit);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-klein);
  transition: background 0.2s, color 0.2s;
}

.nav-desktop a:hover {
  background: var(--lichtblauw);
}

.nav-mobile-btn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-btn span {
  width: 26px;
  height: 2px;
  background: var(--wit);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-mobile-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-mobile-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-mobile-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 88vw);
  background: var(--donkerblauw);
  padding: 5rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 99;
  box-shadow: -6px 0 30px rgba(0, 0, 0, 0.25);
}

.nav-mobile.open {
  transform: translateX(0);
}

.nav-mobile a {
  display: block;
  color: var(--wit);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 98;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .nav-mobile-btn,
  .nav-mobile,
  .nav-overlay {
    display: none;
  }
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

/* ===== Fade-in ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border-radius: var(--radius-klein);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--donkerblauw);
  color: var(--wit);
  box-shadow: 0 4px 16px rgba(0, 57, 255, 0.35);
}

.btn-primary:hover {
  background: var(--lichtblauw);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 57, 255, 0.4);
}

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

.btn-outline:hover {
  background: var(--donkerblauw);
  color: var(--wit);
}

/* ===== Main ===== */
main {
  padding: 0;
  min-height: 60vh;
}

/* WhatsApp floating button ===== */
.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  background: #25D366;
  color: #0b1b10;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.whatsapp-fab__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  color: #0b1b10;
  line-height: 0;
}

.whatsapp-fab__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.whatsapp-fab__label {
  font-weight: 800;
  font-size: 0.95rem;
}

@media (max-width: 520px) {
  .whatsapp-fab__label {
    display: none;
  }
}

/* Titels: zwart met laatste woord blauw */
.page-title,
.section-title,
.card-title,
.site-footer h4 {
  font-family: var(--font-titel);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.page-title,
.section-title {
  color: var(--tekst-donker);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.page-title span,
.section-title span,
.card-title span {
  color: var(--donkerblauw);
}

.page-title {
  font-size: clamp(2.4rem, 5.4vw, 3.25rem);
}

.lead {
  font-size: 1.2rem;
  color: var(--tekst-zacht);
  margin: 0 0 1rem;
  line-height: 1.6;
}

/* ===== Hero (homepage): links tekst, rechts logo/foto ===== */
.hero {
  background: linear-gradient(145deg, var(--donkerblauw) 0%, #0030d4 40%, var(--lichtblauw) 100%);
  color: var(--wit);
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  text-align: left;
}

.hero-tagline {
  font-family: var(--font-titel);
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 0.75rem;
  opacity: 0.98;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.15rem;
  opacity: 0.95;
  margin: 0 0 1.75rem;
  max-width: 480px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-buttons .btn {
  min-width: 160px;
}

/* Hero primary knop extra contrast op blauwe achtergrond */
.hero .btn-primary {
  background: var(--wit);
  color: var(--donkerblauw);
  border-radius: var(--radius-klein);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.hero .btn-primary:hover {
  background: #f2f4ff;
  color: var(--donkerblauw);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-outline {
  border-color: var(--wit);
  color: var(--wit);
}

.hero-buttons .btn-outline:hover {
  background: var(--wit);
  color: var(--donkerblauw);
}

.hero-meer {
  margin-top: 1.5rem;
}

.hero-meer .btn {
  min-width: auto;
}

.hero-visual {
  text-align: center;
}

.hero-logo {
  max-width: 100%;
  width: min(320px, 90%);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.25));
  border-radius: var(--radius);
}

.hero-visual .placeholder-img {
  max-width: 100%;
  aspect-ratio: 4/3;
  margin: 0 auto;
}

/* ===== Secties (meer ruimte boven/onder) ===== */
.section {
  padding: 5.9rem 0;
}

.section--wit {
  background: var(--wit);
}

.section--usp {
  background: #f7f7fb;
}

.section--decor-left {
  position: relative;
  overflow: hidden;
}

.section--decor-left::before {
  content: '';
  position: absolute;
  left: -560px;
  top: -140px;
  transform: rotate(-90deg);
  width: 720px;
  height: 720px;
  opacity: 0.16;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 162.88 155.91'%3E%3Cpath fill='%230039ff' d='M162.88,155.91l-50.67-3.46c-6.41-.44-9.14-9.21-4.34-13.92h0c5.58-5.46.91-15.55-6.37-13.74l-45.87,11.41c-7.07,1.76-11.81-7.82-6.65-13.44l20.05-21.87c4.72-5.15,1.17-14.02-5.45-13.63l-28.1,1.66c-7.29.43-10.48-10.01-4.44-14.54l25.5-19.17c6.16-4.63,2.7-15.28-4.72-14.52l-43.93,4.49c-7.03.72-10.71-8.99-5.32-14.02L35.92,0h126.96s0,155.91,0,155.91Z'/%3E%3C/svg%3E") no-repeat;
  background-size: contain;
  pointer-events: none;
}

.section-header {
  text-align: center;
}

.section-header .section-intro {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (max-width: 720px) {
  .section--decor-left::before {
    left: -640px;
    top: -200px;
    opacity: 0.13;
  }
}

.usp-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 1;
}

@media (min-width: 860px) {
  .usp-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.usp-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 57, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  box-shadow: 0 10px 26px rgba(17, 18, 31, 0.06);
  backdrop-filter: blur(6px);
}

.usp-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 57, 255, 0.10);
  color: var(--donkerblauw);
  margin-bottom: 0.9rem;
}

.usp-icon svg {
  width: 32px;
  height: 32px;
}

.usp-card h3 {
  font-family: var(--font-titel);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--tekst-donker);
}

.usp-card h3 span {
  color: var(--donkerblauw);
}

.usp-card p {
  margin: 0;
  color: var(--tekst-zacht);
  line-height: 1.65;
  font-size: 1rem;
}

.section--pakketten {
  background: var(--wit);
}

/* Gear page ===== */
.gear-stack {
  display: grid;
  gap: 7rem;
  margin-top: 4rem;
}

.gear-item {
  display: grid;
  gap: 3.75rem;
  align-items: center;
  grid-template-columns: 1fr;
  padding: 4rem 3.5rem;
  border-radius: var(--radius);
  background: #f7f7fb;
  border: 1px solid rgba(0, 57, 255, 0.08);
}

@media (min-width: 900px) {
  .gear-item {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .gear-item--reverse .gear-text {
    order: 2;
  }
  .gear-item--reverse .gear-media {
    order: 1;
  }
}

.gear-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--lichtblauw) 0%, var(--donkerblauw) 100%);
}

.gear-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.gear-photo-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  padding: 1.25rem;
  text-align: center;
}

@media (max-width: 520px) {
  .gear-item {
    padding: 2.25rem 1.6rem;
  }

  .gear-photo-placeholder {
    min-height: 280px;
  }
}

/* Sectie 1: vormelement grijs rechtsboven */
.section--first {
  position: relative;
  overflow: hidden;
}

.section--first::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -70px;
  width: 40%;
  max-width: 560px;
  min-width: 320px;
  height: 140%;
  background: url("../src/Vorm element.svg") no-repeat;
  background-size: contain;
  background-position: 100% 0;
  pointer-events: none;
  fill: var(--vormelement-grijs);
}

.section--first::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 162.88 155.91'%3E%3Cpath fill='%23d5d3d3' d='M162.88,155.91l-50.67-3.46c-6.41-.44-9.14-9.21-4.34-13.92h0c5.58-5.46.91-15.55-6.37-13.74l-45.87,11.41c-7.07,1.76-11.81-7.82-6.65-13.44l20.05-21.87c4.72-5.15,1.17-14.02-5.45-13.63l-28.1,1.66c-7.29.43-10.48-10.01-4.44-14.54l25.5-19.17c6.16-4.63,2.7-15.28-4.72-14.52l-43.93,4.49c-7.03.72-10.71-8.99-5.32-14.02L35.92,0h126.96s0,155.91,0,155.91Z'/%3E%3C/svg%3E");
}

.section--centered {
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 4.4vw, 2.7rem);
  margin: 0 0 0.75rem;
}

.section-intro {
  font-size: 1.15rem;
  color: var(--tekst-zacht);
  max-width: 620px;
  margin: 0 0 2.5rem;
  line-height: 1.7;
}

.section-intro.section-intro--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section--ervaringen {
  padding: 6rem 0;
}

/* Over mij blok ===== */
.over-mij {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .over-mij {
    grid-template-columns: 1.25fr 0.95fr;
    align-items: center;
  }
}

.over-mij-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: auto;
  background: linear-gradient(135deg, var(--lichtblauw) 0%, var(--donkerblauw) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wit);
  font-weight: 600;
  font-size: 1.1rem;
}

.section--first .section-intro {
  color: var(--tekst-donker);
}

.over-mij-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
}

.over-mij-text p {
  margin: 0 0 1rem;
  color: var(--tekst-donker);
}

.over-mij-text p:last-child {
  margin-bottom: 0;
}

.over-mij-actions {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.over-mij-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 48px;
  line-height: 1.2;
  vertical-align: middle;
}

@media (min-width: 900px) {
  .over-mij-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
  }

  .over-mij-image {
    max-width: 440px;
    width: 100%;
    justify-self: end;
  }
}

@media (max-width: 520px) {
  .over-mij-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* Diensten / feature grid ===== */
/* Diensten: titel + intro links uitgelijnd */
.section--diensten .section-title,
.section--diensten .section-intro {
  text-align: left;
}

.diensten-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .diensten-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .diensten-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.dienst-card {
  background: var(--blok-achtergrond);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0, 57, 255, 0.08);
}

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

.dienst-icon {
  width: 56px;
  height: 56px;
  margin: 0 0 1.25rem;
  background: linear-gradient(135deg, var(--lichtblauw), var(--donkerblauw));
  border-radius: var(--radius-klein);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wit);
  flex-shrink: 0;
}

.dienst-icon svg {
  width: 28px;
  height: 28px;
}

.dienst-card h3 {
  font-family: var(--font-titel);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--tekst-donker);
  margin: 0 0 0.5rem;
}

.dienst-card h3 span {
  color: var(--donkerblauw);
}

.dienst-card p {
  margin: 0;
  font-size: 1rem;
  color: var(--tekst-zacht);
  line-height: 1.6;
}

/* Card grid (pakketen etc) ===== */
.card-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .card-grid.three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--blok-achtergrond);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0, 57, 255, 0.06);
}

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

.card-image {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--lichtblauw) 0%, var(--donkerblauw) 100%);
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.card-image .placeholder-img {
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wit);
  font-weight: 600;
  font-size: 1rem;
}

.card-body {
  padding: 1.75rem;
}

.card-title {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--tekst-donker);
  margin: 0 0 0.5rem;
}

.card-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--donkerblauw);
  margin: 0 0 0.75rem;
}

.card-text {
  margin: 0 0 1.25rem;
  color: var(--tekst-donker);
  font-size: 0.98rem;
  line-height: 1.65;
}

.card ul {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--tekst-zacht);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Testimonials ===== */
.testimonial-card {
  background: var(--wit);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--donkerblauw);
  transition: box-shadow 0.3s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  margin: 0 0 1.25rem;
  color: var(--tekst-donker);
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--donkerblauw);
  margin: 0;
  font-size: 0.95rem;
}

/* CTA sectie: vormelement donkerblauw ===== */
.cta-section {
  background: linear-gradient(135deg, var(--donkerblauw) 0%, #0030d4 50%, var(--lichtblauw) 100%);
  color: var(--wit);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: min(400px, 50vw);
  height: 140%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 162.88 155.91'%3E%3Cpath fill='%230039ff' fill-opacity='0.35' d='M162.88,155.91l-50.67-3.46c-6.41-.44-9.14-9.21-4.34-13.92h0c5.58-5.46.91-15.55-6.37-13.74l-45.87,11.41c-7.07,1.76-11.81-7.82-6.65-13.44l20.05-21.87c4.72-5.15,1.17-14.02-5.45-13.63l-28.1,1.66c-7.29.43-10.48-10.01-4.44-14.54l25.5-19.17c6.16-4.63,2.7-15.28-4.72-14.52l-43.93,4.49c-7.03.72-10.71-8.99-5.32-14.02L35.92,0h126.96s0,155.91,0,155.91Z'/%3E%3C/svg%3E") no-repeat;
  background-size: contain;
  background-position: 100% 0;
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section .section-title {
  color: var(--wit);
  margin-bottom: 0.75rem;
}

.cta-section .section-title span {
  color: rgba(255, 255, 255, 0.95);
}

.cta-section .section-intro {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-outline {
  border-color: var(--wit);
  color: var(--wit);
}

/* Speciale variant voor outline-knoppen op donkere achtergrond */
.btn-outline-light {
  border-color: var(--wit);
  color: var(--wit);
}

.btn-outline-light:hover {
  background: var(--wit);
  color: var(--donkerblauw);
}

.cta-section .btn-outline:hover {
  background: var(--wit);
  color: var(--donkerblauw);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Formulieren ===== */
.form-block {
  background: var(--blok-achtergrond);
  border-radius: var(--radius);
  padding: 2.25rem 2.25rem 2.5rem;
  box-shadow: var(--shadow);
  max-width: 560px;
  margin: 0 auto;
}

/* Offerte tabs / stappen ===== */
.offerte-tabs {
  max-width: 100%;
}

.offerte-tabs-nav {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.offerte-tab-btn {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-klein);
  border: 2px solid var(--vormelement-grijs);
  background: #fdfdff;
  color: var(--tekst-zacht);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.1s;
}

.offerte-tab-btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: var(--vormelement-grijs);
  color: var(--tekst-donker);
  font-size: 0.85rem;
}

.offerte-tab-btn.active {
  border-color: var(--donkerblauw);
  background: #eef2ff;
  color: var(--donkerblauw);
  box-shadow: 0 4px 16px rgba(0, 57, 255, 0.15);
}

.offerte-tab-btn.active span {
  background: var(--donkerblauw);
  color: var(--wit);
}

.offerte-tab-btn:hover {
  transform: translateY(-1px);
}

.offerte-step {
  display: none;
}

.offerte-step.active {
  display: block;
}

.offerte-step-actions {
  margin-top: 1.75rem;
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.offerte-summary-list {
  margin: 1rem 0 0.5rem;
  padding-left: 1.25rem;
  font-size: 0.98rem;
  color: var(--tekst-donker);
}

.prijs-calculator--full {
  max-width: 100%;
}

.prijs-calculator input[type="range"] {
  width: 100%;
  appearance: none;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--donkerblauw), var(--lichtblauw));
  outline: none;
}

.prijs-calculator input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--wit);
  border: 4px solid var(--donkerblauw);
  box-shadow: 0 4px 14px rgba(0, 57, 255, 0.25);
  cursor: pointer;
}

.prijs-calculator input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--wit);
  border: 4px solid var(--donkerblauw);
  box-shadow: 0 4px 14px rgba(0, 57, 255, 0.25);
  cursor: pointer;
}

.calc-help {
  margin: 0.45rem 0 0;
  color: var(--tekst-zacht);
  font-size: 0.94rem;
}

.calc-location-actions {
  margin-top: 0.7rem;
}

.calc-options {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.calc-options input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.calc-options .calc-option {
  border: 2px solid var(--vormelement-grijs);
  border-radius: var(--radius);
  background: #fdfdff;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 148px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
}

.calc-options .calc-option:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.calc-options input[type="radio"]:checked + .calc-option {
  border-color: var(--donkerblauw);
  background: #eef2ff;
  box-shadow: 0 8px 24px rgba(0, 57, 255, 0.14);
}

.calc-option-icon {
  width: 44px;
  height: 44px;
  color: var(--donkerblauw);
}

.calc-option-icon svg {
  width: 100%;
  height: 100%;
}

.calc-option-label {
  font-weight: 700;
  text-align: center;
  color: var(--tekst-donker);
}

.calc-option-extra {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--donkerblauw);
}

.calc-result {
  margin-top: 1.1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-klein);
  background: #eef2ff;
  color: var(--donkerblauw);
  font-size: 1.2rem;
  font-weight: 800;
}

.calc-actions {
  margin-top: 1.25rem;
}

.package-card--check .card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.package-card--check .card-title {
  font-weight: 800;
}

.check-list {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.65rem;
  color: var(--tekst-donker);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #21a444;
  font-weight: 800;
}

.package-card--check .btn {
  margin-top: auto;
  align-self: center;
}

.offerte-page .form-block {
  max-width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field-icon {
  display: inline-flex;
  width: 1.25rem;
  justify-content: center;
  margin-right: 0.35rem;
  color: var(--donkerblauw);
  vertical-align: -0.15rem;
}

.field-icon svg {
  width: 1rem;
  height: 1rem;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.choice-grid input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card {
  border: 2px solid var(--vormelement-grijs);
  border-radius: var(--radius);
  background: #fdfdff;
  min-height: 56px;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
}

.choice-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 57, 255, 0.10);
}

.choice-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(0, 57, 255, 0.10);
  color: var(--donkerblauw);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.choice-card__icon svg {
  width: 19px;
  height: 19px;
  display: block;
}

.choice-card__label {
  font-weight: 800;
  color: var(--tekst-donker);
}

.choice-grid input[type="radio"]:checked + .choice-card {
  border-color: var(--donkerblauw);
  background: #eef2ff;
  box-shadow: 0 12px 28px rgba(0, 57, 255, 0.14);
}

.switch-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.switch {
  position: relative;
  width: 56px;
  height: 34px;
  display: inline-block;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  inset: 0;
  background: #dfe3f2;
  border-radius: 999px;
  transition: background 0.2s;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.switch-slider::before {
  content: '';
  position: absolute;
  height: 26px;
  width: 26px;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--wit);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s;
}

.switch input:checked + .switch-slider {
  background: rgba(0, 57, 255, 0.85);
}

.switch input:checked + .switch-slider::before {
  transform: translate(22px, -50%);
}

.switch-label {
  font-weight: 700;
  color: var(--tekst-donker);
}

.switch-easter {
  margin: 0.65rem 0 0;
  color: var(--donkerblauw);
  font-weight: 700;
  font-size: 0.95rem;
}

.summary-block {
  background: #f7f7fb;
  border: 1px solid rgba(0, 57, 255, 0.10);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.25rem;
}

.summary-section + .summary-section {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 57, 255, 0.10);
}

.summary-section h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: var(--donkerblauw);
}

.summary-section dl {
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.summary-section dl > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0.75rem;
}

.summary-section dt {
  font-weight: 800;
  color: var(--tekst-donker);
}

.summary-section dd {
  margin: 0;
  color: var(--tekst-zacht);
}

.contact-pref {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-pref input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-pref-btn {
  border: 2px solid var(--vormelement-grijs);
  border-radius: var(--radius);
  background: #fdfdff;
  min-height: 56px;
  padding: 1rem 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--tekst-donker);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
}

.contact-pref-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 57, 255, 0.10);
}

.contact-pref-icon {
  width: 22px;
  height: 22px;
  color: var(--donkerblauw);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-pref-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-pref input[type="radio"]:checked + .contact-pref-btn {
  border-color: var(--donkerblauw);
  background: #eef2ff;
  box-shadow: 0 12px 28px rgba(0, 57, 255, 0.14);
}

@media (max-width: 640px) {
  .offerte-page .form-block {
    padding: 1.5rem 1.1rem 1.75rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .offerte-tab-btn {
    flex: 1 1 100%;
  }

  .calc-options {
    grid-template-columns: 1fr;
  }

  .choice-grid {
    grid-template-columns: 1fr;
  }

  .contact-pref {
    grid-template-columns: 1fr;
  }

  .summary-section dl > div {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--tekst-donker);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--vormelement-grijs);
  border-radius: var(--radius-klein);
  font-family: var(--font);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--donkerblauw);
}

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

.form-actions {
  margin-top: 1.75rem;
}

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-klein);
  margin-bottom: 1.5rem;
}

.alert--error {
  background: #fee;
  color: #c00;
  border: 1px solid #fcc;
}

/* Contactblok ===== */
.contact-page .page-title,
.contact-page .lead {
  max-width: 760px;
}

.contact-layout {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
  margin-top: 1.5rem;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.contact-profile {
  background: var(--blok-achtergrond);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
  height: 100%;
}

@media (min-width: 760px) {
  .contact-profile {
    grid-template-columns: 220px 1fr;
    align-items: center;
  }
}

.contact-profile__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 57, 255, 0.14);
}

.contact-profile__photo img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.contact-profile__text p {
  margin: 0;
  color: var(--tekst-zacht);
}

.contact-note {
  margin: 0.6rem 0 0;
  color: var(--tekst-zacht);
  font-size: 0.95rem;
}

.contact-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.contact-actions .btn {
  min-width: 160px;
  justify-content: center;
  min-height: 54px;
  padding: 0.85rem 1.25rem;
  border-radius: 18px;
}

.contact-actions .btn-outline {
  background: rgba(0, 57, 255, 0.07);
  border-color: rgba(0, 57, 255, 0.55);
}

.contact-actions .btn-outline:hover {
  background: var(--donkerblauw);
  border-color: var(--donkerblauw);
  color: var(--wit);
}

.contact-blok {
  background: var(--blok-achtergrond);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  max-width: 520px;
  margin: 0 auto;
  height: 100%;
}

.contact-blok h3 {
  margin: 0 0 1.25rem;
  color: var(--donkerblauw);
  font-size: 1.35rem;
}

.contact-blok a {
  color: var(--donkerblauw);
  font-weight: 600;
  text-decoration: none;
}

.contact-blok a:hover {
  text-decoration: underline;
}

.contact-actions .btn-primary {
  color: var(--wit);
  text-decoration: none;
}

.contact-actions .btn-outline {
  color: var(--donkerblauw);
  text-decoration: none;
}

.contact-blok p {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.contact-row .icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 57, 255, 0.1);
  border-radius: var(--radius-klein);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--donkerblauw);
  flex-shrink: 0;
}

.contact-row .icon svg {
  width: 22px;
  height: 22px;
}

/* Wat zit erin lijst ===== */
.included-list {
  max-width: 560px;
  margin: 0 auto;
  background: var(--blok-achtergrond);
  padding: 2rem 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.included-list ul {
  margin: 0;
  padding-left: 1.5rem;
  line-height: 2.1;
  font-size: 1.05rem;
  color: var(--tekst-donker);
}

.included-list li {
  margin-bottom: 0.35rem;
}

/* Bedankt pagina ===== */
.bedankt-pagina {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.bedankt-block {
  padding: 2.5rem;
}

.bedankt-icon {
  display: inline-flex;
  width: 72px;
  height: 72px;
  background: var(--donkerblauw);
  color: var(--wit);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.bedankt-block .lead {
  margin-bottom: 1rem;
}

.bedankt-block .btn {
  margin-top: 0.5rem;
}

/* Footer: wit, logo groter, contact met iconen ===== */
.site-footer {
  background: var(--wit);
  color: var(--tekst-donker);
  padding: 2.5rem 0 1.5rem;
  margin-top: 0;
  border-top: 1px solid var(--vormelement-grijs);
}

/* Cookie banner ===== */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 999;
}

.cookie-banner__inner {
  max-width: 1140px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 57, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(17, 18, 31, 0.16);
  backdrop-filter: blur(10px);
  padding: 1rem 1.1rem;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 820px) {
  .cookie-banner__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 1.1rem 1.25rem;
  }
}

.cookie-banner__text {
  color: var(--tekst-donker);
  font-size: 0.98rem;
  line-height: 1.55;
}

.cookie-banner__text a {
  color: var(--donkerblauw);
  font-weight: 800;
  text-decoration: none;
}

.cookie-banner__text a:hover {
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-banner__actions .btn {
  padding: 0.7rem 1.1rem;
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-brand .footer-logo {
  height: 220px;
  width: auto;
  margin-bottom: 0.25rem;
  /* logo in footer donker maken (hoofdlogo blijft wit in header) */
  filter: invert(1);
}

.footer-brand p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--tekst-zacht);
  line-height: 1.5;
}

.footer-social {
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--donkerblauw);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-social a:hover {
  text-decoration: underline;
}

.footer-social .social-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social .social-icon svg {
  width: 100%;
  height: 100%;
}

/* Instagram camera-stijl icoon: blauw lijntje, transparante achtergrond */
.footer-social .social-icon svg rect {
  fill: none;
  stroke: var(--donkerblauw);
  stroke-width: 2;
}

.footer-social .social-icon svg circle {
  fill: none;
  stroke: var(--donkerblauw);
  stroke-width: 2;
}

.footer-nav h4,
.footer-contact h4 {
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
  color: var(--tekst-donker);
}

.footer-nav h4 span,
.footer-contact h4 span {
  color: var(--donkerblauw);
}

.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-nav a {
  color: var(--tekst-donker);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-nav a:hover {
  color: var(--donkerblauw);
  text-decoration: underline;
}

.footer-contact a {
  color: var(--donkerblauw);
  font-weight: 600;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-contact .contact-row {
  margin-bottom: 0.6rem;
}

.footer-contact .contact-row .icon {
  background: rgba(0, 57, 255, 0.1);
  color: var(--donkerblauw);
}

.footer-contact .contact-row .icon svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--vormelement-grijs);
  text-align: center;
}

.site-footer .copyright {
  font-size: 0.9rem;
  color: var(--tekst-zacht);
  margin: 0;
}

/* Afbeeldingen ===== */
img.rounded,
.rounded img {
  border-radius: var(--radius);
}

.placeholder-img {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--lichtblauw) 0%, var(--donkerblauw) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wit);
  font-size: 1rem;
  font-weight: 600;
}
