/* ════════════════════════════════════════
   diensten.css — Shared CSS for all service pages
   Jansen van Beek Schoonmaak
════════════════════════════════════════ */

/* ─── Variables ─── */
:root {
  --yellow:  #FFD100;
  --yellow2: #ffe033;
  --black:   #0a0a0a;
  --dark:    #111111;
  --card:    #181818;
  --card2:   #202020;
  --white:   #ffffff;
  --grey:    #6b6b6b;
  --border:  #232323;
  --radius:  16px;
  --radius-sm: 10px;
  --radius-lg: 22px;
}

/* ─── Reset ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 5%; }

/* ─── iOS emoji images ─── */
img.emoji {
  height: 1.2em; width: 1.2em;
  vertical-align: -0.2em;
  display: inline-block;
}
.wizard-success__icon img.emoji { height: 3rem; width: 3rem; vertical-align: middle; }

/* ─── Stripe motif ─── */
.stripes { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.stripe  { background: var(--yellow); transform: skewX(-15deg); flex-shrink: 0; }
.stripes--sm .stripe  { width: 14px; height: 22px; }
.stripes--md .stripe  { width: 26px; height: 40px; }
.stripes--lg .stripe  { width: 50px; height: 76px; }
.stripes--xl .stripe  { width: 76px; height: 124px; }
.stripes--dark .stripe { background: var(--black); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  font-size: 1rem;
  padding: 14px 32px;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--pill  { border-radius: 999px; }
.btn--yellow { background: var(--yellow); color: var(--black); }
.btn--yellow:hover { background: var(--yellow2); box-shadow: 0 8px 24px rgba(255,209,0,0.25); }
.btn--outline { background: transparent; color: var(--white); border: 1.5px solid #333; }
.btn--outline:hover { border-color: var(--yellow); color: var(--yellow); }
.btn--dark { background: var(--black); color: var(--yellow); }
.btn--dark:hover { background: #111; box-shadow: 0 8px 20px rgba(0,0,0,0.4); }

/* ─── Scroll animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }


/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 86px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  transition: background 0.3s;
}
#navbar .container { display: flex; align-items: center; justify-content: space-between; }

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 46px; width: auto; display: block; }

.nav-links { display: flex; list-style: none; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links .nav-cta {
  background: var(--yellow);
  color: var(--black);
  padding: 9px 22px;
  font-weight: 700;
  border-radius: 999px;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--yellow2); color: var(--black); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.28s ease; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-6px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 86px; left: 0; right: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(16px);
  z-index: 999;
  border-bottom: 1px solid var(--border);
  padding: 2rem 5%;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 1.4rem; }
.mobile-nav a { font-size: 1.1rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #ccc; }
.mobile-nav a:hover { color: var(--yellow); }


/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer { background: #060606; border-top: 1px solid #0e0e0e; padding: 60px 0 28px; }
.footer-main {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 4rem; align-items: start; margin-bottom: 4rem;
}
.footer-brand__logo { display: block; margin-bottom: 1rem; }
.footer-brand__logo img { height: 54px; width: auto; display: block; }
.footer-brand__desc { font-size: 0.83rem; color: #555; line-height: 1.75; margin-bottom: 1.1rem; max-width: 280px; }
.footer-brand__rating { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.04); border: 1px solid #1e1e1e; border-radius: 6px; padding: 0.35rem 0.75rem; margin-bottom: 1.2rem; text-decoration: none; transition: border-color 0.2s; }
.footer-brand__rating:hover { border-color: #f5c542; }
.footer-brand__stars { color: #f5c542; font-size: 0.82rem; letter-spacing: 1px; }
.footer-brand__rating-text { font-size: 0.76rem; font-weight: 600; color: #666; }
.footer-brand__contact { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.footer-brand__phone { font-size: 0.95rem; font-weight: 600; color: var(--yellow); }
.footer-brand__email { font-size: 0.82rem; color: #555; transition: color 0.2s; }
.footer-brand__email:hover { color: var(--yellow); }
.footer-brand__socials { display: flex; gap: 0.5rem; }
.footer-social-btn { width: 36px; height: 36px; border-radius: 50%; background: #111; border: 1px solid #1e1e1e; display: flex; align-items: center; justify-content: center; color: #666; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.footer-social-btn:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.footer-social-btn svg { width: 16px; height: 16px; fill: currentColor; }

.footer-stripes-wrap { display: flex; flex-direction: column; gap: 12px; align-items: center; }

.footer-nav-col { text-align: right; }
.footer-nav-col nav { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end; }
.footer-nav-col a { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: #888; font-weight: 600; transition: color 0.2s; }
.footer-nav-col a:hover { color: var(--yellow); }

.footer-locations { border-top: 1px solid #111; padding-top: 2rem; margin-bottom: 2rem; }
.footer-locations__label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: #444; font-weight: 700; display: block; margin-bottom: 0.9rem; }
.footer-locations__links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; }
.footer-locations__links a { font-size: 0.8rem; color: #666; transition: color 0.2s; }
.footer-locations__links a:hover { color: var(--yellow); }

.footer-bottom { border-top: 1px solid #1a1a1a; padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.78rem; color: #555; }


/* ══════════════════════════════
   OFFERTE WIZARD
══════════════════════════════ */
.offerte-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.offerte-left-content { max-width: 500px; }

.offerte-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
  color: var(--white);
}
.offerte-title em { color: var(--white); font-style: normal; }
.offerte-sub { color: #666; line-height: 1.8; margin-bottom: 2rem; font-size: 0.97rem; }

.section-label { display: flex; align-items: center; gap: 12px; margin-bottom: 1.2rem; }
.section-label__text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
}

.offerte-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2rem; }
.offerte-badge {
  border: 1px solid #2a2a2a; border-radius: 999px; padding: 7px 14px;
  font-size: 0.78rem; color: #888;
  display: flex; align-items: center; gap: 7px;
}
.offerte-badge-icon { font-size: 0.85rem; }

.offerte-perks { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2.5rem; }
.offerte-perks li { display: flex; align-items: center; gap: 12px; color: #bbb; font-size: 0.95rem; }
.perk-check {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--yellow);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.72rem; color: var(--yellow);
}

.offerte-divider { border: none; border-top: 1px solid #222; margin: 1.8rem 0; }

.offerte-bottom { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.offerte-phone { display: flex; align-items: center; gap: 10px; font-size: 1rem; font-weight: 700; color: var(--yellow); }
.offerte-rating {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid #252525;
  border-radius: 999px; padding: 7px 14px;
}
.offerte-rating__stars { color: #f5c542; font-size: 0.82rem; }
.offerte-rating__text { font-size: 0.78rem; font-weight: 600; color: #999; }

.offerte-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Wizard card (white) */
.offerte-card {
  background: #fff;
  border-radius: 20px; padding: 2rem 2rem 1.5rem;
  width: 100%; max-width: 480px; color: #111;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  margin-left: auto; margin-right: auto;
}
.offerte-card-head { margin-bottom: 1.2rem; }
.offerte-card-head h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 0.02em; margin-bottom: 0.2rem; color: #111; }
.offerte-card-head p { font-size: 0.8rem; color: #999; }

/* Step meta */
.step-meta { margin-bottom: 1.2rem; }
.step-meta-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #aaa; margin-bottom: 1rem; display: block; }
.step-meta-label em { color: var(--yellow); font-style: normal; font-weight: 900; }

.step-dots { display: flex; align-items: center; }
.step-dot {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid #ddd; background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700; color: #bbb;
  transition: all 0.3s; flex-shrink: 0; z-index: 1;
}
.step-dot.active { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
.step-dot.done   { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
.step-connector { flex: 1; height: 2px; background: #e8e8e8; min-width: 18px; transition: background 0.3s; }
.step-connector.done { background: var(--yellow); }

/* Steps */
.wizard-step { display: none; animation: fadeStep 0.22s ease; }
.wizard-step.active { display: block; }
@keyframes fadeStep { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }
.wizard-q { font-size: 0.97rem; font-weight: 700; color: #111; margin-bottom: 0.8rem; }

/* Step 1 — full-width rows with description */
.option-list { display: flex; flex-direction: column; gap: 7px; margin-bottom: 0.5rem; }
#wStep1 .option-list { max-height: 310px; overflow-y: auto; padding-right: 4px; }
#wStep1 .option-list::-webkit-scrollbar { width: 4px; }
#wStep1 .option-list::-webkit-scrollbar-track { background: #f5f5f5; border-radius: 4px; }
#wStep1 .option-list::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }
.option-row { display: block; cursor: pointer; }
.option-row input { position: absolute; opacity: 0; pointer-events: none; }
.option-row__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 16px; border: 1.5px solid #ebebeb; border-radius: 10px;
  transition: border-color 0.18s, background 0.18s; user-select: none;
}
.option-row__left { display: flex; flex-direction: column; gap: 2px; }
.option-row__title { font-size: 0.93rem; font-weight: 600; color: #111; }
.option-row__desc { font-size: 0.78rem; color: #999; }
.option-row__arrow { color: #ccc; font-size: 1.1rem; flex-shrink: 0; transition: color 0.18s; }
.option-row input:checked ~ .option-row__inner { border-color: var(--yellow); background: rgba(255,209,0,0.09); }
.option-row input:checked ~ .option-row__inner .option-row__title { color: #111; }
.option-row input:checked ~ .option-row__inner .option-row__arrow { color: var(--yellow); }
.option-row:hover .option-row__inner { border-color: #ccc; }
.option-row:hover .option-row__arrow { color: #888; }

/* Simple radio rows (steps 2,3) */
.option-row--radio .option-row__inner::after {
  content: ''; display: block; width: 16px; height: 16px;
  border-radius: 50%; border: 2px solid #ddd; flex-shrink: 0;
  transition: all 0.18s;
}
.option-row--radio .option-row__inner { align-items: center; }
.option-row--radio input:checked ~ .option-row__inner::after { background: var(--yellow); border-color: var(--yellow); }

/* Step 4 — fields */
.wizard-fields { display: flex; flex-direction: column; gap: 0.9rem; }
.wizard-fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.wizard-field { display: flex; flex-direction: column; gap: 5px; }
.wizard-field label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #aaa; }
.wizard-field input,
.wizard-field textarea {
  border: 1.5px solid #e8e8e8; border-radius: 10px; padding: 12px 15px;
  font-family: 'Barlow', sans-serif; font-size: 0.95rem; color: #111;
  outline: none; background: #fafafa; transition: border-color 0.2s;
}
.wizard-field input:focus, .wizard-field textarea:focus { border-color: var(--yellow); background: #fff; }
.wizard-field textarea { min-height: 90px; resize: vertical; }

/* Nav buttons */
.wizard-nav { display: flex; gap: 10px; margin-top: 1.5rem; }
.wizard-nav-next {
  flex: 1; background: var(--yellow); color: var(--black); border: none;
  border-radius: 10px; padding: 14px;
  font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.08em;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: background 0.2s, transform 0.2s;
}
.wizard-nav-next:hover { background: var(--yellow2); transform: translateY(-1px); }
.wizard-nav-back {
  background: transparent; color: #aaa; border: 1.5px solid #e0e0e0;
  border-radius: 10px; padding: 14px 20px;
  font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.08em;
  cursor: pointer; transition: border-color 0.2s, color 0.2s;
}
.wizard-nav-back:hover { border-color: #bbb; color: #666; }

/* Success */
.wizard-success { display: none; text-align: center; padding: 1.5rem 0; }
.wizard-success.show { display: block; }
.wizard-success__icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.wizard-success h4 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: #111; margin-bottom: 0.8rem; }
.wizard-success p { color: #888; font-size: 0.9rem; line-height: 1.7; }


/* ══════════════════════════════
   SCROLL TO TOP
══════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 2rem; left: 2rem;
  z-index: 9999;
  width: 48px; height: 48px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none;
  box-shadow: 0 4px 16px rgba(255,209,0,0.3);
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { box-shadow: 0 8px 24px rgba(255,209,0,0.45); transform: translateY(-2px); }
.scroll-top svg { width: 20px; height: 20px; fill: var(--black); transition: fill 0.25s ease; }

/* ══════════════════════════════
   WHATSAPP FAB
══════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 9999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.whatsapp-fab:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 10px 36px rgba(37,211,102,0.5);
}
.whatsapp-fab svg { width: 30px; height: 30px; }

.whatsapp-fab__tooltip {
  position: absolute;
  right: 70px;
  background: var(--white);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.whatsapp-fab__tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--white);
}
.whatsapp-fab:hover .whatsapp-fab__tooltip { opacity: 1; transform: translateX(0); }


/* ══════════════════════════════
   LOCATIE SERVICE CARDS
══════════════════════════════ */
.loc-service-card {
  display: flex !important;
  flex-direction: column !important;
}

h3.loc-service-card__name {
  display: block;
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
}

.loc-service-card--featured {
  border-color: var(--yellow);
}


/* ══════════════════════════════
   DIENST HERO
══════════════════════════════ */
.dienst-hero { position: relative; height: 70vh; min-height: 420px; overflow: hidden; }
.dienst-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dienst-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.75) 40%, rgba(0,0,0,0.2)); }
.dienst-hero__content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 5% 5rem; max-width: 1200px; margin: 0 auto; }
.dienst-hero__breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.dienst-hero__breadcrumb a { color: var(--yellow); }
.dienst-hero__title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 8vw, 6rem); letter-spacing: 0.02em; line-height: 1; color: var(--white); margin-bottom: 1rem; }
.dienst-hero__sub { font-size: 1.15rem; color: rgba(255,255,255,0.8); max-width: 600px; margin-bottom: 2rem; }
.dienst-hero__cta { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--yellow); color: var(--black); font-weight: 700; font-size: 1rem; padding: 0.9rem 2rem; border-radius: 50px; transition: background 0.2s; }
.dienst-hero__cta:hover { background: var(--yellow2); }

/* ══════════════════════════════
   DIENST CONTENT
══════════════════════════════ */
.dienst-content { background: var(--dark); padding: 80px 0; }
.dienst-content h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: 0.02em; color: var(--white); margin-bottom: 1.5rem; }
.dienst-content h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--yellow); margin: 2rem 0 0.8rem; }
.dienst-content p { color: #999; line-height: 1.85; margin-bottom: 1.2rem; font-size: 1rem; }
.dienst-content ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.dienst-content ul li { display: flex; align-items: flex-start; gap: 12px; color: #bbb; font-size: 0.95rem; }
.dienst-content ul li::before { content: ''; display: block; width: 4px; height: 14px; background: var(--yellow); transform: skewX(-15deg); flex-shrink: 0; margin-top: 4px; }
.dienst-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.dienst-highlights { background: var(--card); border-radius: 20px; padding: 2rem; margin-top: 2rem; }
.dienst-highlights h3 { margin-top: 0; }
@media (max-width: 768px) { .dienst-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════
   DIENST WERKGEBIED SECTION
══════════════════════════════ */
.dienst-werkgebied { background: #060606; padding: 50px 0; border-top: 1px solid #111; }
.dienst-werkgebied__label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: #444; font-weight: 700; margin-bottom: 0.8rem; display: block; }
.dienst-werkgebied h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--white); margin-bottom: 0.8rem; }
.dienst-werkgebied__sub { color: #666; font-size: 0.9rem; margin-bottom: 1.5rem; }
.dienst-werkgebied__links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; }
.dienst-werkgebied__links a { color: #777; font-size: 0.9rem; font-weight: 600; transition: color 0.2s; }
.dienst-werkgebied__links a:hover { color: var(--yellow); }


/* ══════════════════════════════
   REVIEWS SECTION (locatie pages)
══════════════════════════════ */
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.6rem, 5vw, 4.5rem); line-height: 0.95; letter-spacing: 0.02em; margin-bottom: 1.2rem; }
.loc-reviews { background: var(--black); padding: 100px 0; }
.reviews-head { margin-bottom: 3.5rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card[aria-hidden="true"] { display: none; }
@keyframes reviews-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.review-card { background: var(--dark); border-radius: var(--radius); padding: 2rem 2rem 2.5rem; position: relative; transition: background 0.3s, transform 0.3s; border: 1px solid var(--border); text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.review-card:hover { background: var(--card); transform: translateY(-4px); }
.review-card__header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 1.1rem; color: #fff; flex-shrink: 0; }
.review-info { flex: 1; min-width: 0; }
.review-name { font-weight: 700; font-size: 0.95rem; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.review-meta { font-size: 0.75rem; color: var(--grey); }
.review-google-icon { flex-shrink: 0; opacity: 0.8; }
.review-stars { color: var(--yellow); font-size: 1rem; letter-spacing: 1px; margin-bottom: 0.2rem; }
.review-date { font-size: 0.78rem; color: var(--grey); margin-bottom: 0.8rem; }
.review-text { color: var(--grey); line-height: 1.8; font-size: 0.92rem; flex: 1; }
.review-card__bar { position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--yellow); border-radius: 0 0 2px 2px; transition: width 0.4s ease; }
.review-card:hover .review-card__bar { width: 100%; }
.reviews-cta { text-align: center; margin-top: 3rem; }


/* ══════════════════════════════
   DIENST OFFERTE SECTION
══════════════════════════════ */
.dienst-offerte { background: var(--black); padding: 80px 0; }
.dienst-offerte__head { text-align: center; margin-bottom: 3rem; }
.dienst-offerte__head h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: 0.02em; }
.dienst-offerte__head p { color: #777; margin-top: 0.5rem; }


/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 880px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .offerte-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .offerte-right { justify-content: flex-start; }
  .offerte-card { max-width: 100%; }
  .offerte-bottom { flex-direction: column; align-items: flex-start; }
  .footer-main { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .footer-stripes-wrap { align-items: center; }
  .footer-brand__logo { display: flex; justify-content: center; }
  .footer-brand__desc { max-width: 100%; }
  .footer-brand__rating { display: inline-flex; margin-bottom: 1.2rem; }
  .footer-locations__label { text-align: center; }
  .footer-locations__links { justify-content: center; }
  .footer-brand__contact { align-items: center; }
  .footer-brand__socials { justify-content: center; }
  .footer-nav-col { text-align: center; }
  .footer-nav-col nav { align-items: center; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .wizard-fields-row { grid-template-columns: 1fr; }
}

@media (max-width: 1050px) {
  .reviews-marquee-wrap { overflow: hidden; margin-left: -5%; margin-right: -5%; }
  .reviews-grid { display: flex; grid-template-columns: unset; flex-wrap: nowrap; gap: 0; width: max-content; animation: reviews-marquee 36s linear infinite; }
  .reviews-grid:hover { animation-play-state: paused; }
  .review-card { width: 82vw; max-width: 300px; flex-shrink: 0; margin-right: 1rem; opacity: 1 !important; transform: none !important; transition: none !important; }
  .review-card[aria-hidden="true"] { display: flex; }
}

@media (max-width: 580px) {
  .whatsapp-fab { bottom: 1.2rem; right: 1.2rem; }
  .dienst-hero { height: 60vh; }
  .dienst-hero__content { padding: 0 5% 3rem; }
}
.footer-as-link { color: #555; text-decoration: none; transition: color 0.2s; }
.footer-as-link:hover { color: #a855f7; }
.footer-pp-link { color: #555; text-decoration: none; transition: color 0.2s; }
.footer-pp-link:hover { color: #3b82f6; }
