/* ================================================
   bouwkundigplan.nl — stylesheet (v3: Leafy Green Garden)
   Palette: Evergreen / Hunter / Fern / Palm Leaf / Lime Cream
   ================================================ */

:root {
  /* Leafy Green Garden palet */
  --c-evergreen: #132A13;    /* schaduwrijk bos — donker, tekst */
  --c-hunter:    #31572C;    /* hunter green — hover, secundair */
  --c-fern:      #4F772D;    /* fern — primaire CTA-groen */
  --c-palm:      #90A955;    /* warme olive — accent op donker */
  --c-lime:      #ECF39E;    /* citrusgele highlight */
  --c-cream:     #f5f8e6;    /* afgeleide pale wash voor soft achtergronden */

  /* functionele aliassen */
  --c-green:       var(--c-fern);     /* primaire kleur op witte achtergrond */
  --c-green-dark:  var(--c-hunter);   /* hover-staat */
  --c-green-light: var(--c-palm);     /* accent op donkere achtergrond */
  --c-green-soft:  var(--c-cream);    /* zachte tinted achtergrond */
  --c-green-accent:var(--c-lime);     /* opvallende highlights */

  --c-black:       var(--c-evergreen);
  --c-black-soft:  #1f3b1f;
  --c-text:        #1f2a37;
  --c-text-light:  #6b7280;
  --c-bg:          #ffffff;
  --c-bg-soft:     #f5f6f7;
  --c-border:      #e5e7eb;
  --c-success:     #25d366;           /* whatsapp brand groen — niet wijzigen */

  /* schaduwen krijgen lichte groen-tint */
  --shadow-sm: 0 2px 6px rgba(19,42,19,0.08);
  --shadow-md: 0 8px 24px rgba(19,42,19,0.12);
  --shadow-lg: 0 18px 40px rgba(19,42,19,0.18);
  --radius: 8px;
  --radius-lg: 12px;
  --container: 1200px;
  --transition: 200ms ease;

  /* compatibiliteit met oude variabelen die elders worden gebruikt */
  --c-primary:      var(--c-evergreen);
  --c-primary-dark: #0a160a;
  --c-primary-light:var(--c-black-soft);
  --c-accent:       var(--c-fern);
  --c-accent-dark:  var(--c-hunter);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;          /* voorkomt horizontale scroll op mobiel */
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; display: block; }
a { color: var(--c-black); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-green); }

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-weight: 700;
  color: var(--c-black);
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: 0.5px;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); text-transform: uppercase; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); text-transform: uppercase; }
h3 { font-size: 1.35rem; text-transform: uppercase; }
p  { margin: 0 0 1em; color: var(--c-text); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;          /* ruim wit aan beide kanten */
}

/* ====================== buttons ====================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;            /* pill-stijl, zoals bouwplanvergunning */
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-transform: none;            /* normale capitalisatie */
  letter-spacing: 0.2px;
}
.btn-primary {
  background: var(--c-green);
  color: #FFFFFF;                /* lime cream tekst op fern groen */
  border-color: var(--c-green);
}
.btn-primary:hover {
  background: var(--c-green-dark);
  border-color: var(--c-green-dark);
  color: var(--c-lime);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--c-lime);              /* lime cream — leesbaar op donkere achtergronden */
  border-color: var(--c-lime);
}
.btn-outline:hover {
  background: var(--c-lime);
  color: var(--c-evergreen);
  border-color: var(--c-lime);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--c-black);
}
.btn-dark {
  background: var(--c-black);
  color: #fff;
  border-color: var(--c-black);
}
.btn-dark:hover {
  background: #000;
  color: #fff;
}
.btn-block { width: 100%; }

/* ====================== inline SVG iconen ====================== */
.ic-svg {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.18em;
  flex-shrink: 0;
}
.btn .ic-svg { width: 18px; height: 18px; vertical-align: -0.22em; }
.topbar .ic-svg { width: 14px; height: 14px; }
.footer li .ic-svg { width: 14px; height: 14px; margin-right: 4px; }
.contact-info .ic .ic-svg { width: 22px; height: 22px; vertical-align: middle; }
.package li .mark .ic-svg { width: 18px; height: 18px; vertical-align: middle; }
.check-circle .ic-svg { width: 50px; height: 50px; stroke-width: 3; }
.form-success .ic-svg { width: 18px; height: 18px; vertical-align: -3px; margin-right: 6px; }

/* ====================== topbar ====================== */
.topbar {
  background: var(--c-black);
  color: #d1d5db;
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.topbar a { color: #d1d5db; }
.topbar a:hover { color: var(--c-green-light); }
.topbar-info { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 6px; }

/* ====================== header / nav ====================== */
.header {
  background: #fff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
/* Tekst-logo, opvallend, gestapeld zoals het origineel */
.logo {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  line-height: 0.95;
  color: var(--c-green);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-flex;
  flex-direction: column;
}
.logo .line2 { color: var(--c-black); font-size: 1.55rem; }
.logo:hover { color: var(--c-green-dark); }

.nav { display: flex; align-items: center; gap: 8px; }
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--c-black);
  border-radius: 6px;
  position: relative;
}
.nav-list > li > a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: transparent;
  transition: background var(--transition);
}
.nav-list > li > a:hover::after,
.nav-list > li > a.active::after {
  background: var(--c-green);
}
.dropdown > a::after { /* don't override the underline; add chevron via separate ::before */ }
.dropdown > a {
  padding-right: 26px;
}
.dropdown > a > span.chev {
  margin-left: 4px;
  font-size: 0.7em;
  color: var(--c-text-light);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 240px;
  padding: 8px;
  list-style: none;
  margin: 8px 0 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--c-black);
  font-weight: 500;
}
.dropdown-menu a:hover {
  background: var(--c-green-soft);
  color: var(--c-green-dark);
}
.nav-cta { margin-left: 12px; }
/* nav-CTA knop overschrijft de algemene nav-link kleur */
.nav-list > li.nav-cta > a {
  color: var(--c-lime);
}
.nav-list > li.nav-cta > a:hover {
  color: var(--c-lime);
}
.nav-list > li.nav-cta > a::after { display: none; }   /* geen underline onder de knop */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--c-black);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ====================== hero ====================== */
.hero {
  position: relative;
  background:
    linear-gradient(rgba(19,42,19,0.65), rgba(19,42,19,0.65)),
    url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  color: #fff;
  padding: 100px 0 200px;             /* extra ruimte onder zodat 3 cards overlappen */
}
.hero h1 { color: #fff; max-width: 900px; }
.hero .lead {
  color: rgba(255,255,255,0.92);
  font-size: 1.15rem;
  max-width: 640px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* dynamische subtekst (rotator) — op donkere hero, lime cream highlight */
.rotator { display: inline-block; min-height: 1.4em; color: var(--c-lime); font-weight: 600; }

/* 3 hero-cards die over de hero heen vallen */
.hero-cards-wrap { background: var(--c-bg-soft); padding-bottom: 60px; }
.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: -150px;                /* zodat ze over de hero heen vallen */
  position: relative;
  z-index: 5;
}
.hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px 36px;
  box-shadow: var(--shadow-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.hero-card .ic-wrap {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--c-green);
}
.hero-card .ic-wrap svg { width: 56px; height: 56px; stroke: var(--c-green); }
.hero-card h3 { color: var(--c-black); margin-bottom: 10px; font-size: 1.5rem; }
.hero-card p { color: var(--c-text-light); font-size: 0.95rem; flex-grow: 1; font-style: italic; }
.hero-card .btn { margin-top: 12px; }

/* ====================== sections ====================== */
.section { padding: 80px 0; }
.section-soft { background: var(--c-bg-soft); }
.section-black { background: var(--c-black); color: #fff; }
.section-black h2 { color: #fff; }
.section-black p { color: rgba(255,255,255,0.85); }
.section-header { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.section-header p { font-size: 1.05rem; }

/* ====================== "wat wil je verbouwen" SVG-grid ====================== */
.bouwtype-intro { max-width: 720px; }
.bouwtype-intro h2 { margin-bottom: 12px; }
.bouwtype-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.bouwtype-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px 18px 20px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.bouwtype-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-green);
  box-shadow: var(--shadow-md);
}
.bouwtype-card .ic {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-green-soft);
  border-radius: 50%;
  margin-bottom: 14px;
  transition: background var(--transition);
}
.bouwtype-card:hover .ic { background: var(--c-green); }
.bouwtype-card .ic svg {
  width: 48px;
  height: 48px;
  stroke: var(--c-green);
  fill: none;
  stroke-width: 1.6;
  transition: stroke var(--transition);
}
.bouwtype-card:hover .ic svg { stroke: #fff; }
.bouwtype-card h3 {
  font-size: 1.05rem;
  margin: 0 0 6px;
  color: var(--c-black);
}
.bouwtype-card p {
  font-size: 0.85rem;
  color: var(--c-text-light);
  margin: 0;
}
.bouwtype-card.selected {
  border-color: var(--c-green);
  box-shadow: 0 0 0 2px var(--c-green-light);
  transform: translateY(-4px);
}
.bouwtype-card.selected .ic { background: var(--c-green); }
.bouwtype-card.selected .ic svg { stroke: #fff; }

/* ====================== diensten-grid (diensten.html) ====================== */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.dienst-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  color: inherit;
}
a.dienst-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-green);
  box-shadow: var(--shadow-md);
}
.dienst-card .ic-wrap {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--c-green-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--c-green);
  transition: background var(--transition), color var(--transition);
}
.dienst-card .ic-wrap svg { width: 36px; height: 36px; }
a.dienst-card:hover .ic-wrap { background: var(--c-green); color: #fff; }
.dienst-card h3 {
  color: var(--c-black);
  font-size: 1.4rem;
  margin: 0 0 10px;
}
.dienst-card p {
  color: var(--c-text-light);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 18px;
}
.dienst-card .link {
  color: var(--c-green);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
}
.dienst-card .link .arrow { transition: transform var(--transition); }
a.dienst-card:hover .link .arrow { transform: translateX(4px); }
.dienst-card.no-link { cursor: default; }
.dienst-card.no-link .link { color: var(--c-text-light); }

/* ====================== stats ====================== */
.stats {
  background: var(--c-black);
  color: #fff;
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item .num {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--c-green-light);   /* op evergreen achtergrond — palm leaf */
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.stat-item .lbl {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* ====================== packages ====================== */
.packages-wrap { background: var(--c-bg-soft); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.package {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 0 0 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border-top: 5px solid var(--c-green);
}
.package:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.package.featured {
  box-shadow: var(--shadow-md);
  transform: translateY(-10px);
}
.package.featured .badge {
  background: var(--c-green);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin: -5px -1px 0;       /* over de top-border heen */
}
.package.featured { border-top: none; }
.package h3 {
  font-size: 2rem;
  color: var(--c-green);
  text-align: center;
  margin: 30px 0 4px;
}
.package .price {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--c-black);
  margin: 14px 0 0;
  text-align: center;
}
.package .price small {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-text-light);
  text-transform: none;
  letter-spacing: 0;
}
.package .vanaf {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: var(--c-text-light);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-top: 4px;
}
.package ul {
  list-style: none;
  padding: 0 32px;
  margin: 24px 0;
  flex-grow: 1;
}
.package li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 500;
}
.package li.included { color: var(--c-black); }
.package li.excluded { color: #c8ccd2; text-decoration: none; }
.package li .mark {
  width: 20px; height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}
.package li.included .mark { color: var(--c-green); }
.package li.excluded .mark { color: #c8ccd2; }
.package .btn-wrap { padding: 0 32px; }

/* outline-knoppen in pakketten staan op WIT — dus evergreen i.p.v. lime cream */
.package .btn-outline {
  color: var(--c-evergreen);
  border-color: var(--c-evergreen);
}
.package .btn-outline:hover {
  background: var(--c-evergreen);
  color: var(--c-lime);
  border-color: var(--c-evergreen);
}

/* check / cross marks in pakketlijst */
.package li .mark.check { color: var(--c-fern); }
.package li .mark.cross { color: #c8ccd2; }

/* ====================== reviews ====================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--c-green);
}
.review .stars { color: var(--c-lime); margin-bottom: 12px; font-size: 1.3rem; -webkit-text-stroke: 0.5px var(--c-palm); }
.review p {
  font-style: italic;
  color: var(--c-text);
  flex-grow: 1;
  font-size: 1rem;
}
.review .author { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.review .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-black);
  color: var(--c-lime);          /* lime cream initialen op evergreen */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.review .name { font-weight: 700; color: var(--c-black); text-transform: none; }
.review .role { font-size: 0.85rem; color: var(--c-text-light); }
.reviews-summary {
  text-align: center;
  margin-top: 36px;
  font-size: 1.05rem;
  color: var(--c-text-light);
}
.reviews-summary strong { color: var(--c-black); }

/* ====================== about / process ====================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split ul { list-style: none; padding: 0; }
.split ul li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--c-text);
}
.split ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 22px; height: 22px;
  background: var(--c-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  top: 12px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.process-step { text-align: center; padding: 24px 16px; }
.process-step .step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-green);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.process-step p { font-size: 0.95rem; color: var(--c-text-light); }

/* ====================== CTA banner ====================== */
.cta-banner {
  background: var(--c-black);
  color: #fff;
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 28px; }
.cta-banner .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ====================== multi-step offerte-wizard ====================== */
.wizard {
  background:
    linear-gradient(rgba(49,87,44,0.94), rgba(19,42,19,0.94)),
    url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  padding: 70px 0;
}
.wizard-header { text-align: center; color: #fff; margin-bottom: 36px; }
.wizard-header h2 { color: #fff; }
.wizard-header p { color: rgba(255,255,255,0.92); }

.wizard-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 880px;
  margin: 0 auto;
  overflow: hidden;
}

.wizard-progress {
  background: var(--c-bg-soft);
  padding: 18px 32px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.wizard-progress .step {
  flex: 1;
  height: 6px;
  background: var(--c-border);
  border-radius: 3px;
  position: relative;
  transition: background var(--transition);
}
.wizard-progress .step.active,
.wizard-progress .step.done { background: var(--c-green); }
.wizard-progress .step-label {
  position: absolute;
  top: 14px;
  left: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.wizard-progress .step.active .step-label,
.wizard-progress .step.done .step-label { color: var(--c-black); }

.wizard-step { padding: 48px 40px 24px; display: none; }
.wizard-step.active { display: block; }
.wizard-step h3 {
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 28px;
  color: var(--c-black);
}
.wizard-step h3 .req { color: #d33; }

.choices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.choice {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 500;
  transition: all var(--transition);
  background: #fff;
}
.choice:hover {
  border-color: var(--c-green);
  background: var(--c-green-soft);
}
.choice input { accent-color: var(--c-green); width: 18px; height: 18px; }
.choice.full { grid-column: 1 / -1; }
.choice.has-input input[type="text"] {
  flex: 1;
  border: none;
  border-bottom: 1px dashed var(--c-border);
  padding: 4px 0;
  font: inherit;
  background: transparent;
  outline: none;
}

.wizard-fields { display: grid; gap: 14px; }
.wizard-fields .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.wizard-fields label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-black);
  display: block;
  margin-bottom: 4px;
}
.wizard-fields input,
.wizard-fields select,
.wizard-fields textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  transition: border-color var(--transition);
}
.wizard-fields input:focus,
.wizard-fields select:focus,
.wizard-fields textarea:focus {
  outline: none;
  border-color: var(--c-green);
  box-shadow: 0 0 0 3px rgba(79,119,45,0.18);
}
.wizard-fields textarea { min-height: 100px; resize: vertical; }

.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px 40px;
  gap: 12px;
}
.wizard-nav .btn { min-width: 140px; }
.wizard-nav .spacer { flex: 1; }

.wizard-finish { text-align: center; padding: 48px 40px; }
.wizard-finish .check-circle {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--c-green);
  color: #fff;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.wizard-finish h3 { font-size: 1.8rem; }

/* ====================== wizard pakket-choices (stap 2) ====================== */
.pakket-choices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.pakket-choice {
  position: relative;
  display: block;
  background: #fff;
  border: 2px solid var(--c-border);
  border-radius: var(--radius);
  padding: 12px 14px 12px;
  cursor: pointer;
  transition: all var(--transition);
}
.pakket-choice:hover {
  border-color: var(--c-green);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
/* verberg de native radio, gebruik :has() voor visuele staat */
.pakket-choice input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pakket-choice:has(input[type="radio"]:checked) {
  border-color: var(--c-green);
  box-shadow: 0 0 0 2px rgba(79,119,45,0.18), var(--shadow-sm);
  background: var(--c-green-soft);
}
.pakket-choice.featured {
  border-color: var(--c-green);
}
.pakket-choice.featured:has(input[type="radio"]:checked) {
  box-shadow: 0 0 0 2px rgba(79,119,45,0.25), var(--shadow-md);
}
.pakket-choice .badge {
  position: absolute;
  top: -8px;
  right: 10px;
  background: var(--c-green);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 2px 8px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.pakket-choice .pakket-content { display: block; }
.pakket-choice .pakket-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 2px;
}
.pakket-choice h4 {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 1.05rem;
  margin: 0;
  color: var(--c-black);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.pakket-choice .pakket-price {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-weight: 800;
  color: var(--c-green);
  font-size: 1.05rem;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
}
.pakket-choice .pakket-price small {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.58rem;
  color: var(--c-text-light);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.pakket-choice .pakket-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--c-green-dark);
  background: rgba(79,119,45,0.10);
  padding: 1px 7px;
  border-radius: 999px;
  margin-bottom: 6px;
}
.pakket-choice ul {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
}
.pakket-choice ul li {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 1px 0;
  font-size: 0.78rem;
  color: var(--c-text);
  line-height: 1.3;
}
.pakket-choice ul li .ic-svg {
  color: var(--c-green);
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}
.pakket-choice.op-maat {
  border-style: dashed;
}
.pakket-choice.op-maat p {
  margin: 4px 0 0;
  color: var(--c-text-light);
  font-size: 0.78rem;
  line-height: 1.4;
}

.custom-services h4,
.extra-services h4 {
  font-family: 'Inter', sans-serif;
  text-transform: none;
  letter-spacing: 0;
  color: var(--c-black);
  margin: 16px 0 8px !important;
  font-size: 0.95rem !important;
}
.custom-services .choices,
.extra-services .choices {
  gap: 8px;
}
.custom-services .choice,
.extra-services .choice {
  padding: 8px 12px;
  font-size: 0.88rem;
}
/* compactere stap 2 om alles in één scherm te passen */
.wizard-step:has(.pakket-choices) {
  padding: 28px 32px 16px;
}
.wizard-step:has(.pakket-choices) h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}
.wizard-step:has(.pakket-choices) > p {
  margin-bottom: 16px !important;
  font-size: 0.9rem;
}

/* ====================== wizard nav: vorige knop in zwart ====================== */
.wizard-nav .btn-prev {
  background: var(--c-black);
  color: #fff;
  border-color: var(--c-black);
}
.wizard-nav .btn-prev:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* ====================== contact / form (simple) ====================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info ul { list-style: none; padding: 0; }
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-border);
}
.contact-info li:last-child { border-bottom: none; }
.contact-info .ic {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--c-green-soft);
  color: var(--c-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info .lbl-sm { font-size: 0.85rem; color: var(--c-text-light); display: block; }
.contact-info .val { font-weight: 600; color: var(--c-black); }

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 { color: var(--c-black); margin-top: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--c-black);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-green);
  box-shadow: 0 0 0 3px rgba(79,119,45,0.18);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-success {
  display: none;
  padding: 14px 16px;
  background: var(--c-green-soft);
  border: 1px solid var(--c-green);
  color: #145d2c;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* ====================== footer ====================== */
.footer {
  background: var(--c-black);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 24px;
  font-size: 0.95rem;
}
.footer p { color: rgba(255,255,255,0.7); }
.footer .logo { font-size: 1.4rem; }
.footer .logo .line2 { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer h4 {
  color: #fff; font-size: 1rem; margin-bottom: 14px;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { padding: 4px 0; }
.footer a { color: rgba(255,255,255,0.7); }
.footer a:hover { color: var(--c-green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ====================== whatsapp floating button ====================== */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  background: var(--c-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 1000;
  transition: all var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }
.whatsapp-float .tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--c-black);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.whatsapp-float .tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--c-black);
}
.whatsapp-float:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

/* ====================== service detail page ====================== */
.page-hero {
  background:
    linear-gradient(rgba(19,42,19,0.78), rgba(19,42,19,0.78)),
    url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.page-hero h1 { color: #fff; }
.page-hero .breadcrumb {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.page-hero .breadcrumb a { color: var(--c-green-light); }

.content-section { padding: 70px 0; }
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}
.content-main h2 { margin-top: 1.4em; }
.content-main h2:first-child { margin-top: 0; }
.content-main ul { padding-left: 22px; }
.content-main li { padding: 4px 0; color: var(--c-text); }
.sidebar-card {
  background: var(--c-black);
  color: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  position: sticky;
  top: 100px;
}
.sidebar-card h3 { color: #fff; }
.sidebar-card p { color: rgba(255,255,255,0.9); }
.sidebar-card .btn { width: 100%; margin-top: 12px; }

/* ====================== responsive ====================== */

/* --- Tablet (≤1024px) --- */
@media (max-width: 1024px) {
  .hero-cards { grid-template-columns: 1fr; margin-top: -120px; max-width: 520px; margin-left: auto; margin-right: auto; }
  .bouwtype-grid { grid-template-columns: repeat(2, 1fr); }
  .diensten-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .content-grid { grid-template-columns: 1fr; gap: 32px; }
  .sidebar-card { position: static; }
  .packages-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .package.featured { transform: none; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 620px; margin-left: auto; margin-right: auto; }
}

/* --- Mobile (≤768px) --- */
@media (max-width: 768px) {
  /* container & body schaling — container blijft 25px voor consistentie */
  body { font-size: 15px; }
  h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
  h3 { font-size: 1.2rem; }

  /* topbar: alleen telefoon/email tonen, werktijden verbergen */
  .topbar { padding: 6px 0; font-size: 0.78rem; }
  .topbar .container { justify-content: center; gap: 8px; }
  .topbar-info { gap: 12px; justify-content: center; flex-wrap: wrap; }
  .topbar .container > .topbar-info:nth-of-type(2) { display: none; }

  /* navbar */
  .menu-toggle { display: flex; }
  .header .container { padding-top: 14px; padding-bottom: 14px; position: relative; }
  .logo { font-size: 1.3rem; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 16px 18px; box-shadow: var(--shadow-md); align-items: stretch; max-height: calc(100vh - 80px); overflow-y: auto; }
  .nav.open { display: flex; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; width: 100%; }
  .nav-list > li > a { padding: 12px 14px; font-size: 1rem; }
  .nav-list > li > a::after { display: none; }
  .dropdown > a { padding-right: 14px; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding: 4px 0 4px 16px; margin: 0; min-width: auto; display: none; background: var(--c-bg-soft); border-radius: var(--radius); }
  .dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu a { padding: 10px 14px; font-size: 0.95rem; }
  .nav-cta { margin: 10px 0 0; }
  .nav-list > li.nav-cta > a { background: var(--c-green); border-radius: 999px; text-align: center; color: var(--c-lime) !important; padding: 14px 16px; }

  /* hero */
  .hero { padding: 50px 0 160px; }
  .hero .lead { font-size: 1rem; margin-bottom: 22px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { flex: 1 1 auto; min-width: 0; padding: 12px 18px; font-size: 0.92rem; }
  .hero-cards { gap: 18px; margin-top: -130px; }
  .hero-card { padding: 28px 22px 24px; }
  .hero-card h3 { font-size: 1.25rem; }

  /* secties */
  .section { padding: 50px 0; }
  .section-header { margin-bottom: 32px; }

  /* bouwtype-grid: 2 cols compacter */
  .bouwtype-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px; }
  .bouwtype-card { padding: 16px 10px 14px; }
  .bouwtype-card .ic { width: 60px; height: 60px; margin-bottom: 10px; }
  .bouwtype-card .ic svg { width: 34px; height: 34px; }
  .bouwtype-card h3 { font-size: 0.92rem; }
  .bouwtype-card p { font-size: 0.78rem; }

  /* diensten-grid */
  .diensten-grid { grid-template-columns: 1fr; gap: 18px; }
  .dienst-card { padding: 28px 22px; }

  /* stats */
  .stats { padding: 50px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .stat-item .num { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .stat-item .lbl { font-size: 0.8rem; letter-spacing: 1px; }

  /* packages */
  .packages-grid { gap: 20px; }
  .package h3 { font-size: 1.7rem; margin-top: 24px; }
  .package .price { font-size: 2rem; }
  .package ul { padding: 0 22px; margin: 18px 0; }
  .package .btn-wrap { padding: 0 22px; }

  /* reviews */
  .review { padding: 22px; }

  /* split (over ons) */
  .split { gap: 24px; }
  .split img { max-height: 320px; object-fit: cover; }

  /* process — step-num links, daarnaast titel + beschrijving onder elkaar */
  .process-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
  .process-step {
    padding: 16px 14px;
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "num title"
      "num desc";
    column-gap: 16px;
    row-gap: 2px;
    align-items: start;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
  }
  .process-step .step-num {
    grid-area: num;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    margin: 0;
    align-self: start;
  }
  .process-step h3 {
    grid-area: title;
    margin: 4px 0 0;
    font-size: 1.05rem;
    align-self: end;
  }
  .process-step p {
    grid-area: desc;
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  /* CTA banner */
  .cta-banner { padding: 50px 0; }
  .cta-banner p { font-size: 1rem; }
  .cta-banner .actions { flex-direction: column; gap: 10px; align-items: stretch; }
  .cta-banner .actions .btn { width: 100%; }

  /* contact */
  .contact-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .form-row .form-group { margin-bottom: 14px; }

  /* page hero (interne pagina's) */
  .page-hero { padding: 50px 0; }
  .content-section { padding: 50px 0; }

  /* wizard */
  .wizard { padding: 50px 0; }
  .wizard-progress { padding: 14px 18px 14px; gap: 6px; }
  .wizard-progress .step-label { display: none; }
  .wizard-step { padding: 28px 20px 14px; }
  .wizard-step h3 { font-size: 1.4rem; margin-bottom: 22px; }
  .wizard-step:has(.pakket-choices) { padding: 22px 18px 14px; }
  .wizard-step:has(.pakket-choices) h3 { font-size: 1.25rem; }
  .wizard-nav { padding: 0 20px 24px; flex-wrap: wrap; gap: 10px; }
  .wizard-nav .btn { min-width: 0; flex: 1; padding: 12px 16px; font-size: 0.92rem; }
  .wizard-fields .form-row { grid-template-columns: 1fr; gap: 12px; }
  .choices { grid-template-columns: 1fr; gap: 8px; }
  .choice { padding: 12px 14px; font-size: 0.92rem; }
  .pakket-choices { grid-template-columns: 1fr; gap: 12px; }
  .pakket-choice { padding: 14px 14px; }
  .pakket-choice ul li { font-size: 0.85rem; padding: 2px 0; }
  .pakket-choice h4 { font-size: 1.15rem; }
  .pakket-choice .pakket-price { font-size: 1.15rem; }
  .pakket-choice .pakket-price small { font-size: 0.62rem; }
  .pakket-choice ul li .ic-svg { width: 13px; height: 13px; }

  /* footer */
  .footer { padding: 44px 0 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; margin-bottom: 24px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 8px; font-size: 0.85rem; }

  /* whatsapp button */
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .whatsapp-float .tooltip { display: none; }
}

/* --- Smartphone (≤480px) --- */
@media (max-width: 480px) {
  .topbar-info { font-size: 0.72rem; gap: 8px; }
  .topbar-info span { font-size: 0.72rem; }
  .hero { padding: 40px 0 150px; }
  .hero h1 { font-size: clamp(1.7rem, 9vw, 2.3rem); }
  .hero .lead { font-size: 0.95rem; }
  .hero-cards { margin-top: -120px; gap: 14px; }
  .hero-card { padding: 24px 18px 20px; }
  .hero-card .ic-wrap { width: 56px; height: 56px; margin-bottom: 12px; }
  .hero-card .ic-wrap svg { width: 44px; height: 44px; }
  .hero-card h3 { font-size: 1.15rem; }
  .hero-card p { font-size: 0.88rem; }
  .btn { padding: 11px 18px; font-size: 0.92rem; }
  .section { padding: 40px 0; }
  .stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .review { padding: 18px; font-size: 0.95rem; }
  .review p { font-size: 0.95rem; }
  .reviews-summary { font-size: 0.95rem; }
  .package h3 { font-size: 1.5rem; }
  .package .price { font-size: 1.8rem; }
  .package li { font-size: 0.9rem; padding: 8px 0; }
  .wizard-step { padding: 22px 14px 12px; }
  .wizard-step h3 { font-size: 1.2rem; margin-bottom: 18px; }
  .wizard-nav { padding: 0 14px 20px; }
  /* font-size 16px op inputs voorkomt iOS auto-zoom */
  .wizard-fields input,
  .wizard-fields select,
  .wizard-fields textarea { font-size: 16px; padding: 10px 12px; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; padding: 10px 12px; }
  .contact-info li { padding: 10px 0; }
  .contact-info .ic { width: 36px; height: 36px; }
  .page-hero { padding: 40px 0; }
}
