/* ===== Nijmegen Badkamer — Waalstad Theme ===== */
:root {
  --primary: #0E4F76;
  --primary-light: #1678AE;
  --primary-dark: #0A3B59;
  --accent: #F28A2E;
  --accent-soft: rgba(242,138,46,0.12);
  --accent-hover: #D9740F;
  --light: #F8F8F8;
  --white: #fff;
  --text: #1B1E22;
  --text-muted: #6A6F76;
  --border: #E4E7EB;
  --blue-tint: #EAF4FB;
  --shadow: 0 2px 14px rgba(10,59,89,0.08);
  --shadow-lg: 0 14px 40px rgba(10,59,89,0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --font: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --header-h: 76px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.7; font-size: 16px; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ===== LAYOUT ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
section { padding: 84px 0; }
.bg-light { background: var(--light); }
.text-center { text-align: center; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { line-height: 1.22; color: var(--primary-dark); font-weight: 800; }
h1 { font-size: clamp(2rem, 4.6vw, 3rem); }
h2 { font-size: clamp(1.55rem, 3.4vw, 2.2rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 2.4px; color: var(--primary-light); margin-bottom: 12px;
}
.kicker::before { content: ''; width: 26px; height: 3px; border-radius: 3px; background: var(--accent); }
.section-head { max-width: 780px; margin-bottom: 44px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.centered .kicker { justify-content: center; }
.section-head p { color: var(--text-muted); margin-top: 12px; font-size: 1.04rem; }
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.head-row p { color: var(--text-muted); margin-top: 12px; max-width: 560px; }
.head-link { color: var(--accent); font-weight: 700; font-size: 0.95rem; white-space: nowrap; }
.head-link:hover { color: var(--accent-hover); }

/* ===== BUTTONS (pill) ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; border-radius: 999px; font-weight: 700;
  font-size: 0.95rem; transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 6px 18px rgba(242,138,46,0.35); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-blue { background: var(--primary); color: var(--white); }
.btn-blue:hover { background: var(--primary-light); transform: translateY(-2px); }
.btn-ghost { border: 2px solid var(--primary); color: var(--primary); }
.btn-ghost:hover { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary-dark); }
.btn-white:hover { background: var(--primary-dark); color: var(--white); }
.btn-dark { background: var(--primary-dark); color: var(--white); }
.btn-dark:hover { background: var(--primary); transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary-dark); }

/* ===== TOPBAR ===== */
.topbar { background: var(--primary-dark); color: rgba(255,255,255,0.85); font-size: 0.8rem; padding: 8px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar-inner span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-left, .topbar-right { display: flex; gap: 22px; align-items: center; }
.topbar a { color: rgba(255,255,255,0.9); }
.topbar a:hover { color: var(--accent); }

/* ===== HEADER (white, sticky) ===== */
.header {
  position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white); border-bottom: 1px solid var(--border);
  height: var(--header-h); transition: var(--transition);
}
.header.scrolled { box-shadow: 0 6px 24px rgba(10,59,89,0.10); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.logo { display: inline-flex; align-items: center; line-height: 1; }
.logo-img { height: 44px; width: auto; display: block; }
.nav ul { display: flex; align-items: center; gap: 2px; }
.nav ul li a {
  display: block; padding: 9px 14px; color: var(--text);
  font-size: 0.92rem; font-weight: 600; border-radius: 999px;
  transition: var(--transition);
}
.nav ul li a:hover, .nav ul li a.active { color: var(--primary-light); background: var(--blue-tint); }
.nav-cta a {
  background: var(--primary-light) !important; color: var(--white) !important;
  padding: 11px 22px !important; border-radius: 999px !important;
  font-weight: 800 !important; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(22,120,174,0.30);
}
.nav-cta a:hover { background: var(--primary) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 230px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px 0; border: 1px solid var(--border);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: var(--transition);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 10px 20px; color: var(--text) !important;
  font-size: 0.9rem !important; background: none !important; border-radius: 0 !important;
}
.dropdown-menu a:hover, .dropdown-menu a.active { background: var(--blue-tint) !important; color: var(--primary-light) !important; }

/* ===== HERO (light, split with form card) ===== */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, #F0F5F9 100%);
  padding: 72px 0 84px;
}
.hero::before {
  content: ''; position: absolute; top: -180px; right: -160px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(22,120,174,0.14) 0%, transparent 68%);
}
.hero::after {
  content: ''; position: absolute; bottom: -220px; left: -140px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,138,46,0.12) 0%, transparent 68%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,0.95fr); gap: 56px; align-items: center; position: relative; z-index: 2; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-tint); color: var(--primary);
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.6px;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 20px;
}
.hero h1 { margin-bottom: 18px; }
.hero h1 .mark { position: relative; white-space: nowrap; z-index: 1; }
.hero h1 .mark::after {
  content: ''; position: absolute; left: -2px; right: -2px; bottom: 3px;
  height: 12px; background: var(--accent-soft); border-left: 4px solid var(--accent);
  z-index: -1; border-radius: 3px;
}
.hero-lead { color: var(--text-muted); font-size: 1.08rem; margin-bottom: 22px; max-width: 540px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-bottom: 28px; }
.hero-points li { font-size: 0.92rem; font-weight: 700; color: var(--primary-dark); position: relative; padding-left: 24px; }
.hero-points li::before { content: '\2713'; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 800; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat b { display: block; font-size: 1.7rem; font-weight: 800; color: var(--primary); line-height: 1.15; }
.hero-stat span { font-size: 0.85rem; color: var(--text-muted); }

/* Form card (hero + contact) */
.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  padding: 34px 32px 30px; position: relative; overflow: hidden;
}
.form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, var(--accent) 0%, var(--primary-light) 100%); }
.form-card-head { margin-bottom: 22px; }
.form-card-head h2, .form-card-head h3 { font-size: 1.35rem; margin-bottom: 6px; }
.form-card-head p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== GHL FORM ===== */
.ghl-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ghl-form__field { margin-bottom: 14px; }
.ghl-form__label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 5px; color: var(--text); }
.ghl-form__req { color: var(--accent); }
.ghl-form__input,
.ghl-form__select,
.ghl-form__textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 0.94rem; color: var(--text);
  background: var(--white); transition: var(--transition);
}
.ghl-form__input:focus,
.ghl-form__select:focus,
.ghl-form__textarea:focus { border-color: var(--primary-light); outline: none; box-shadow: 0 0 0 3px rgba(22,120,174,0.15); }
.ghl-form__textarea { resize: vertical; min-height: 78px; }
.ghl-form__select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236A6F76' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.ghl-invalid { border-color: #c0392b !important; }
.ghl-form__submit {
  width: 100%; padding: 15px; background: var(--accent); color: var(--white);
  border: none; border-radius: 999px; font-size: 1rem; font-weight: 800;
  cursor: pointer; transition: var(--transition); box-shadow: 0 6px 18px rgba(242,138,46,0.35);
}
.ghl-form__submit:hover { background: var(--accent-hover); }
.ghl-form__submit:disabled { opacity: 0.6; cursor: not-allowed; }
.ghl-form__note { text-align: center; font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; }
.ghl-form__feedback { margin-top: 16px; padding: 14px; border-radius: 10px; font-size: 0.93rem; }
.ghl-form__success { background: rgba(22,120,174,0.08); color: var(--primary); border: 1px solid rgba(22,120,174,0.2); }
.ghl-form__error { background: rgba(220,53,69,0.08); color: #c0392b; border: 1px solid rgba(220,53,69,0.2); }
.ghl-form__error a { color: var(--accent-hover); text-decoration: underline; font-weight: 700; }

/* ===== USP BAND (dark) ===== */
.usp-band { background: var(--primary-dark); padding: 34px 0; }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.usp-item { display: flex; align-items: center; gap: 14px; color: var(--white); }
.usp-icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.usp-item strong { display: block; font-size: 0.95rem; }
.usp-item span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

/* ===== SERVICE TILES ===== */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-tile {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: var(--transition);
}
.service-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(22,120,174,0.35); }
.service-tile-icon {
  width: 58px; height: 58px; border-radius: 16px; flex-shrink: 0;
  background: var(--blue-tint); display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
}
.service-tile h3 { font-size: 1.08rem; margin-bottom: 6px; }
.service-tile p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 10px; }
.tile-link { color: var(--accent); font-weight: 700; font-size: 0.88rem; }
.tile-link:hover { color: var(--accent-hover); }

/* ===== STEPS RAIL ===== */
.steps-split { display: grid; grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr); gap: 64px; align-items: start; }
.steps-side { position: sticky; top: 110px; }
.steps-side p { color: var(--text-muted); margin: 14px 0 24px; }
.steps { position: relative; }
.step-item { display: grid; grid-template-columns: 60px 1fr; gap: 22px; position: relative; padding-bottom: 34px; }
.step-item::before {
  content: ''; position: absolute; left: 29px; top: 62px; bottom: 4px;
  width: 2px; background: var(--border);
}
.step-item:last-child { padding-bottom: 0; }
.step-item:last-child::before { display: none; }
.step-num {
  width: 60px; height: 60px; border-radius: 18px;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 800; position: relative; z-index: 1;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.15), 0 6px 16px rgba(14,79,118,0.25);
}
.step-body h4, .step-body h3 { margin-bottom: 6px; font-size: 1.08rem; }
.step-body p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== AREA CARDS ===== */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.area-card {
  display: block; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px; position: relative;
  transition: var(--transition); overflow: hidden;
}
.area-card::after {
  content: ''; position: absolute; left: 24px; right: 24px; bottom: 0;
  height: 4px; border-radius: 4px 4px 0 0; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.area-card:hover::after { transform: scaleX(1); }
.area-icon { font-size: 1.9rem; margin-bottom: 14px; }
.area-card h3, .area-card h4 { font-size: 1.08rem; margin-bottom: 6px; }
.area-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 12px; }
.area-link { color: var(--accent); font-weight: 700; font-size: 0.88rem; }

/* ===== FEATURES (waarom) ===== */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 40px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--border); }
.feature-icon {
  width: 46px; height: 46px; border-radius: 999px; flex-shrink: 0;
  background: var(--accent-soft); color: var(--accent-hover);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.feature-item h4 { margin-bottom: 4px; }
.feature-item p { color: var(--text-muted); font-size: 0.92rem; }

/* ===== REVIEWS (dark section) ===== */
.reviews-dark { background: linear-gradient(150deg, var(--primary-dark) 0%, var(--primary) 100%); }
.reviews-dark .kicker { color: var(--accent); }
.reviews-dark .section-head h2 { color: var(--white); }
.reviews-dark .section-head p { color: rgba(255,255,255,0.75); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 30px 26px; display: flex; flex-direction: column; gap: 16px;
}
.review-stars { color: var(--accent); font-size: 1.05rem; letter-spacing: 2px; }
.review-text { color: var(--text-muted); font-size: 0.94rem; line-height: 1.65; font-style: italic; flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 999px;
  background: var(--accent); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 800;
}
.review-name strong { display: block; font-size: 0.9rem; color: var(--primary-dark); }
.review-name span { font-size: 0.8rem; color: var(--text-muted); }
.reviews-foot { margin-top: 34px; text-align: center; color: rgba(255,255,255,0.85); font-size: 0.95rem; }

/* ===== FAQ (boxed accordion) ===== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; margin-bottom: 12px; padding: 0 24px;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(22,120,174,0.4); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 19px 0; font-size: 1rem; font-weight: 700;
  color: var(--primary-dark); text-align: left; transition: var(--transition);
}
.faq-q::after {
  content: '+'; font-size: 1.5rem; font-weight: 400; color: var(--accent);
  line-height: 1; transition: var(--transition); flex-shrink: 0;
}
.faq-q.open::after { content: '\2212'; }
.faq-q:hover { color: var(--primary-light); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; color: var(--text-muted); font-size: 0.95rem; }
.faq-q.open + .faq-a { max-height: 480px; padding-bottom: 20px; }

/* ===== CTA BANNER (accent) ===== */
.cta-banner {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-hover) 100%);
  padding: 68px 0; text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -120px; right: -80px;
  width: 340px; height: 340px; border-radius: 50%;
  background: rgba(255,255,255,0.10);
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; position: relative; }
.cta-banner p { opacity: 0.94; margin: 0 auto 30px; font-size: 1.05rem; max-width: 620px; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 78%, var(--primary-light) 100%);
  color: var(--white); padding: 64px 0 56px;
  border-bottom: 5px solid var(--accent);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; top: -140px; right: -100px;
  width: 380px; height: 380px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; position: relative; }
.page-hero p { opacity: 0.88; font-size: 1.08rem; max-width: 640px; position: relative; }
.breadcrumb { font-size: 0.84rem; opacity: 0.7; margin-bottom: 14px; position: relative; }
.breadcrumb a { text-decoration: underline; }
.breadcrumb a:hover { opacity: 1; color: var(--accent); }

/* ===== CHECK LIST ===== */
.check-list { margin: 16px 0 26px; }
.check-list li { position: relative; padding-left: 22px; padding-top: 6px; padding-bottom: 6px; color: var(--text-muted); }
.check-list li::before { content: '\2713'; position: absolute; left: 0; top: 6px; color: var(--accent); font-weight: 800; }
.check-list li strong { color: var(--text); }

/* ===== CONTENT / PROSE ===== */
.prose { max-width: 800px; }
.prose h2 { margin-bottom: 16px; }
.prose h3 { margin: 30px 0 10px; font-size: 1.18rem; }
.prose p { color: var(--text-muted); margin-bottom: 15px; }
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

/* ===== DIENST BLOCKS (diensten.html) ===== */
.dienst-block {
  display: grid; grid-template-columns: 300px 1fr; gap: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 30px;
  transition: var(--transition);
}
.dienst-block:hover { box-shadow: var(--shadow-lg); }
.dienst-media {
  background: linear-gradient(150deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 4.6rem; min-height: 260px;
}
.dienst-block:nth-of-type(even) .dienst-media { background: linear-gradient(150deg, var(--accent-hover) 0%, var(--accent) 100%); }
.dienst-body { padding: 38px 40px; }
.dienst-body h2, .dienst-body h3 { margin-bottom: 10px; font-size: 1.35rem; }
.dienst-body p { color: var(--text-muted); margin-bottom: 14px; }

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 34px 20px; text-align: center;
  transition: var(--transition);
}
.stat-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.stat-num { font-size: 2.5rem; font-weight: 800; color: var(--primary); line-height: 1.1; margin-bottom: 6px; }
.stat-label { color: var(--text-muted); font-size: 0.9rem; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr); gap: 44px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
}
.contact-card h3 { margin-bottom: 16px; font-size: 1.12rem; }
.contact-line { display: flex; gap: 14px; margin-bottom: 14px; }
.contact-line:last-child { margin-bottom: 0; }
.contact-line-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--blue-tint); display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
}
.contact-line strong { display: block; font-size: 0.92rem; color: var(--primary-dark); }
.contact-line a { color: var(--primary-light); font-weight: 700; }
.contact-line a:hover { text-decoration: underline; }
.contact-line small { color: var(--text-muted); display: block; }
.contact-card-blue { background: var(--primary); border-color: var(--primary); color: var(--white); }
.contact-card-blue h3 { color: var(--white); }
.contact-card-blue p { opacity: 0.9; margin-bottom: 18px; font-size: 0.95rem; }

/* ===== WERKGEBIED ===== */
.wijk-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.wijk-list-col h4 { margin-bottom: 10px; font-size: 0.98rem; color: var(--primary); }
.wijk-list-col li { padding: 4px 0; font-size: 0.9rem; color: var(--text-muted); }

/* ===== FOOTER ===== */
footer { background: var(--primary-dark); color: rgba(255,255,255,0.8); }
.footer-cta {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 34px 0; border-bottom: 1px solid rgba(255,255,255,0.12); flex-wrap: wrap;
}
.footer-cta h3 { color: var(--white); font-size: 1.3rem; }
.footer-cta p { font-size: 0.9rem; opacity: 0.8; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding: 48px 0; }
.footer-brand .logo { background: var(--white); padding: 7px 14px; border-radius: 10px; display: inline-flex; margin-bottom: 16px; }
.footer-brand .logo-img { height: 38px; }
.footer-brand p { font-size: 0.9rem; margin-bottom: 18px; opacity: 0.85; }
.nap { display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; opacity: 0.85; }
.footer-col h4 { color: var(--white); font-size: 0.98rem; margin-bottom: 16px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 28px; height: 3px; border-radius: 3px; background: var(--accent); }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { font-size: 0.9rem; opacity: 0.82; transition: var(--transition); }
.footer-col a:hover { opacity: 1; color: var(--accent); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; }
.fc-icon { flex-shrink: 0; }
.fc-text a { opacity: 0.9; }
.fc-text a:hover { opacity: 1; color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.82rem; opacity: 0.75; flex-wrap: wrap;
}
.footer-bottom a { text-decoration: underline; }
.footer-bottom a:hover { color: var(--accent); }

/* ===== FLOATING CALL ===== */
.float-call {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: var(--accent); color: var(--white);
  padding: 14px 24px; border-radius: 999px;
  font-weight: 800; font-size: 0.95rem;
  box-shadow: 0 6px 22px rgba(242,138,46,0.45);
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.float-call:hover { background: var(--accent-hover); transform: translateY(-2px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero { padding: 56px 0 68px; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; gap: 0; }
  .reviews-grid { grid-template-columns: 1fr; }
  .steps-split { grid-template-columns: 1fr; gap: 40px; }
  .steps-side { position: static; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .wijk-list { grid-template-columns: repeat(2, 1fr); }
  .split-2 { grid-template-columns: 1fr; gap: 36px; }
  .dienst-block { grid-template-columns: 1fr; }
  .dienst-media { min-height: 170px; font-size: 3.6rem; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 66px; }
  section { padding: 56px 0; }
  .topbar { display: none; }
  .logo-img { height: 36px; }
  .nav-toggle { display: flex; }
  .nav ul {
    display: none; flex-direction: column; align-items: stretch;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 30px rgba(10,59,89,0.12); padding: 14px 16px 18px; gap: 2px;
  }
  .nav ul.open { display: flex; }
  .nav ul li { border-bottom: 1px solid #F0F1F3; }
  .nav ul li:last-child { border-bottom: none; }
  .nav ul li a { padding: 13px 14px; border-radius: 10px; }
  .nav-cta { margin-top: 10px; }
  .nav-cta a { display: block; text-align: center; }
  .nav-dropdown .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: var(--light);
    border-radius: 10px; margin: 4px 0 8px;
  }
  .hero h1 { font-size: 1.85rem; }
  .hero-stats { gap: 24px; }
  .form-card { padding: 28px 22px 24px; }
  .ghl-form__row { grid-template-columns: 1fr; gap: 0; }
  .usp-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding: 40px 0; }
  .footer-cta { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
  .wijk-list { grid-template-columns: 1fr 1fr; }
  .head-row { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 340px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .service-tile { flex-direction: column; }
  .step-item { grid-template-columns: 48px 1fr; gap: 16px; }
  .step-num { width: 48px; height: 48px; font-size: 1.05rem; border-radius: 14px; }
  .step-item::before { left: 23px; top: 52px; }
  .dienst-body { padding: 28px 24px; }
  .page-hero { padding: 48px 0 42px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.6rem; }
  .hero { padding: 44px 0 56px; }
  .hero-stat b { font-size: 1.4rem; }
  .float-call .call-text { display: none; }
  .float-call { padding: 14px 17px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* Tighter desktop nav so the wide logo fits around 1024px */
@media (min-width: 769px) and (max-width: 1120px) {
  .nav ul { gap: 0; }
  .nav ul li a { padding: 8px 9px; font-size: 0.84rem; }
  .nav-cta a { padding: 9px 14px !important; }
}
