/* ===== Breda Badkamer — Sneldeal Theme ===== */
:root {
  --primary: #0E4F76;
  --primary-light: #1678AE;
  --primary-dark: #0A3B59;
  --accent: #F28A2E;
  --accent-light: rgba(242,138,46,0.12);
  --accent-hover: #D9740F;
  --light: #F8F8F8;
  --white: #ffffff;
  --text: #1B1E22;
  --text-muted: #6A6F76;
  --border: #E4E7EB;
  --shadow: 0 2px 12px rgba(16,24,40,0.08);
  --shadow-lg: 0 8px 32px rgba(16,24,40,0.12);
  --radius: 8px;
  --radius-lg: 14px;
  --transition: 0.3s ease;
  --font: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --header-h: 72px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.7; font-size: 16px; }
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; }
.text-center { text-align: center; }
section { padding: 80px 0; }
.bg-light { background: var(--light); }
.bg-cream { background: #F8F8F8; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { line-height: 1.25; color: var(--text); font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title { margin-bottom: 18px; }
.section-sub { color: var(--text-muted); max-width: 620px; margin: 0 auto 40px; font-size: 1.05rem; }
.section-intro { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 24px; max-width: 540px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius); font-weight: 600;
  font-size: 0.95rem; transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-outline { border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-outline-accent { border: 2px solid var(--accent); color: var(--accent); }
.btn-outline-accent:hover { background: var(--accent); color: var(--white); }
.btn-dark { background: var(--primary-dark); color: var(--white); }
.btn-dark:hover { background: var(--primary); transform: translateY(-1px); }

/* ===== HEADER (light, Sneldeal style) ===== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #FFFFFF; border-bottom: 1px solid #E4E7EB; transition: var(--transition);
  height: var(--header-h);
}
header.scrolled { background: #FFFFFF; box-shadow: 0 4px 20px rgba(16,24,40,0.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
nav ul { display: flex; align-items: center; gap: 4px; }
nav ul li a {
  display: block; padding: 8px 14px; color: #1B1E22;
  font-size: 0.9rem; font-weight: 500; border-radius: 6px;
  transition: var(--transition);
}
nav ul li a:hover, nav ul li a.active { color: #1678AE; background: #EAF4FB; }
.nav-cta a {
  background: #1678AE !important; color: #fff !important;
  padding: 10px 20px !important; border-radius: 12px !important;
  font-weight: 700 !important; white-space: nowrap;
}
.nav-cta a:hover { background: #126291 !important; color: #fff !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #1B1E22; border-radius: 2px; transition: var(--transition); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  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 { background: #EAF4FB !important; color: #1678AE !important; }

/* ===== HERO — Left-aligned + trust badge stack ===== */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -50%; right: -10%; width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(242,138,46,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: center; }
.hero-content { text-align: left; }
.hero-content h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 18px; }
.hero-content h1 span { color: var(--accent); }
.hero-content p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 28px; max-width: 540px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Trust badge stack — right side */
.hero-badges { display: flex; flex-direction: column; gap: 16px; }
.hero-badge-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  transition: var(--transition);
}
.hero-badge-card:hover { background: rgba(255,255,255,0.12); transform: translateX(-4px); }
.badge-icon { font-size: 2rem; line-height: 1; flex-shrink: 0; }
.badge-text { font-size: 0.95rem; }
.badge-text strong { display: block; font-size: 1.05rem; margin-bottom: 2px; }
.badge-text span { opacity: 0.82; font-size: 0.85rem; }

/* ===== TRUST STRIP ===== */
.trust-strip { background: var(--primary-dark); padding: 16px 0; }
.trust-strip-inner { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: #E6F2FB; font-size: 0.9rem; font-weight: 500; }
.t-icon { font-size: 1.1rem; }

/* ===== DIENSTEN — Icon list rows ===== */
.dienst-row {
  display: flex; align-items: flex-start; gap: 32px;
  padding: 32px 0; border-bottom: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.dienst-row::before {
  content: '';
  position: absolute; left: -24px; top: 0; bottom: 0; width: 4px;
  background: var(--accent); border-radius: 4px;
  opacity: 0; transition: var(--transition);
}
.dienst-row:hover::before { opacity: 1; }
.dienst-row:hover { padding-left: 12px; }
.dienst-row:last-child { border-bottom: none; }
.dienst-row-icon { font-size: 2.8rem; line-height: 1; flex-shrink: 0; width: 64px; text-align: center; padding-top: 4px; }
.dienst-row-content h3 { margin-bottom: 8px; color: var(--primary); }
.dienst-row-content p { color: var(--text-muted); margin-bottom: 12px; }
.dienst-link { color: var(--accent); font-weight: 600; font-size: 0.9rem; }
.dienst-link:hover { text-decoration: underline; }

/* Diensten detail (diensten.html) */
.dienst-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 72px 0; border-bottom: 1px solid var(--border); align-items: center; }
.dienst-detail:last-child { border-bottom: none; }
.dienst-detail.reverse { direction: rtl; }
.dienst-detail.reverse > * { direction: ltr; }
.dienst-detail-icon { height: 320px; display: flex; align-items: center; justify-content: center; font-size: 5rem; background: linear-gradient(135deg, var(--primary) 0%, #2a90c8 100%); border-radius: 16px; }
.dienst-detail-text h3 { color: var(--primary); margin-bottom: 10px; }
.dienst-detail-text p { color: var(--text-muted); margin-bottom: 14px; }

/* Diensten grid (homepage) */
.diensten-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.dienst-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: left;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.dienst-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.dienst-card .dienst-icon { font-size: 2.4rem; margin-bottom: 16px; }
.dienst-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--primary); }
.dienst-card p { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 14px; }

/* ===== WERKWIJZE — Circle indicators + dashed line ===== */
.werkwijze-timeline { display: flex; justify-content: space-between; gap: 12px; position: relative; padding: 40px 0 0; }
.werkwijze-timeline::before {
  content: '';
  position: absolute; top: 67px; left: 10%; right: 10%;
  height: 3px; border-top: 3px dashed var(--accent);
}
.werkwijze-step { flex: 1; text-align: center; position: relative; }
.step-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800;
  margin: 0 auto 18px; position: relative; z-index: 2;
  border: 4px solid var(--accent);
}
.werkwijze-step h4 { font-size: 0.95rem; margin-bottom: 6px; color: var(--primary); }
.werkwijze-step p { font-size: 0.85rem; color: var(--text-muted); max-width: 180px; margin: 0 auto; }

/* Werkwijze detail page */
.werkwijze-detail-step {
  display: flex; gap: 28px; padding: 28px 0; border-bottom: 1px solid var(--border);
}
.werkwijze-detail-step:last-child { border-bottom: none; }
.detail-step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; flex-shrink: 0;
  border: 3px solid var(--accent);
}
.detail-step-content h3 { color: var(--primary); margin-bottom: 6px; }
.detail-step-content p { color: var(--text-muted); }

/* ===== WAAROM ONS — 2x3 copper-bordered cards ===== */
.waarom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.waarom-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center;
  border: 2px solid var(--border);
  transition: var(--transition);
}
.waarom-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.waarom-card-icon { font-size: 2.2rem; margin-bottom: 14px; color: var(--primary); }
.waarom-card h4 { margin-bottom: 8px; }
.waarom-card p { color: var(--text-muted); font-size: 0.93rem; }

/* ===== FORM SECTION ===== */
.form-section { background: #F8F8F8; padding: 80px 0; }
.form-section-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.form-trust-list { margin-top: 20px; }
.form-trust-list li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 1rem; }
.form-check { color: var(--accent); font-weight: 700; font-size: 1.2rem; }
.form-section-embed { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.form-section-embed-header { margin-bottom: 24px; }
.form-section-embed-header h3 { margin-bottom: 4px; }
.form-section-embed-header p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== FORMS ===== */
.ghl-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ghl-form__field { margin-bottom: 16px; }
.ghl-form__label { display: block; font-size: 0.88rem; font-weight: 600; 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: var(--radius); font-size: 0.95rem; color: var(--text);
  background: var(--white); transition: var(--transition);
}
.ghl-form__input:focus,
.ghl-form__select:focus,
.ghl-form__textarea:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px var(--accent-light); }
.ghl-form__textarea { resize: vertical; min-height: 80px; }
.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-form__submit {
  width: 100%; padding: 14px; background: var(--accent); color: var(--white);
  border: none; border-radius: var(--radius); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.ghl-form__submit:hover { background: var(--accent-hover); }
.ghl-form__submit:disabled { opacity: 0.6; cursor: not-allowed; }
.ghl-form__feedback { margin-top: 16px; padding: 14px; border-radius: var(--radius); 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); text-decoration: underline; }

/* Contact page form */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; }
.contact-form-wrap h2 { margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--text-muted); margin-bottom: 24px; }
.contact-form-wrap .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form-wrap .form-group { margin-bottom: 16px; }
.contact-form-wrap label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 5px; }
.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: 0.95rem; color: var(--text);
  background: var(--white); transition: var(--transition);
}
.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px var(--accent-light); }
.contact-form-wrap 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; }
.contact-info-wrap { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--light); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--border);
}
.contact-card h3 { margin-bottom: 16px; font-size: 1.1rem; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 14px; }
.contact-detail:last-child { margin-bottom: 0; }
.contact-icon { font-size: 1.3rem; flex-shrink: 0; padding-top: 2px; }
.contact-detail a { color: var(--accent); }
.contact-detail a:hover { text-decoration: underline; }
.contact-detail small { color: var(--text-muted); }
.contact-card-accent { background: var(--primary); color: var(--white); border-color: var(--primary); }
.contact-card-accent h3, .contact-card-accent p { color: var(--white); }
.contact-card-accent p { opacity: 0.9; margin-bottom: 16px; }

/* ===== REVIEWS — Clean minimal with copper top border ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.review-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; text-align: left;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
}
.review-stars { color: #F28A2E; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 18px; line-height: 1.65; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700;
}
.review-name strong { display: block; font-size: 0.9rem; }
.review-name span { font-size: 0.8rem; color: var(--text-muted); }
.reviews-footer { margin-top: 32px; }
.google-badge { color: var(--text-muted); font-size: 0.95rem; }

/* ===== FAQ — Clean accordion with copper toggle ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q,
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 1rem; font-weight: 600;
  color: var(--text); text-align: left; cursor: pointer;
  transition: var(--transition);
}
.faq-q::after,
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--accent); font-weight: 300; transition: var(--transition); min-width: 24px; text-align: center; }
.faq-item.open .faq-q::after,
.faq-item.open .faq-question::after { content: '\2212'; }
.faq-q:hover,
.faq-question:hover { color: var(--primary); }
.faq-a,
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.open .faq-a,
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }
.faq-a p, .faq-a,
.faq-answer p, .faq-answer { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
/* Hide duplicate toggle when .faq-toggle exists alongside ::after */
.faq-q .faq-toggle,
.faq-question .faq-toggle { display: none; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 60px 0; text-align: center; color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { opacity: 0.9; margin-bottom: 28px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER — 4-column on dark forest green ===== */
footer {
  background: var(--primary-dark); color: rgba(255,255,255,0.8); padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; margin-bottom: 20px; opacity: 0.85; }
.nap { display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; opacity: 0.82; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; 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 .footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; }
.fc-icon { font-size: 1rem; }
.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;
  padding: 24px 0; margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem; opacity: 0.75;
}
.footer-bottom a { text-decoration: underline; }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  padding: 120px 0 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}
.page-hero h1 { margin-bottom: 10px; color: var(--white); }
.page-hero p { opacity: 0.85; font-size: 1.1rem; max-width: 600px; }
.breadcrumb { font-size: 0.85rem; opacity: 0.65; margin-bottom: 12px; }
.breadcrumb a { text-decoration: underline; opacity: 0.8; }
.breadcrumb a:hover { opacity: 1; }

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

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.stat-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 20px; text-align: center;
  border: 2px solid var(--border);
  transition: var(--transition);
}
.stat-card:hover { border-color: var(--accent); }
.stat-num { font-size: 2.4rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.stat-label { color: var(--text-muted); font-size: 0.9rem; }

/* ===== ABOUT ===== */
.about-intro { max-width: 780px; }
.about-text h2 { color: var(--primary); margin-bottom: 16px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }

/* ===== WERKGEBIED ===== */
.wijk-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.wijk-card {
  display: block; background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--border);
  text-align: left; transition: var(--transition);
}
.wijk-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.wijk-card h4 { color: var(--primary); margin-bottom: 8px; font-size: 1.15rem; }
.wijk-card p { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 12px; }
.wijk-link { color: var(--accent); font-weight: 600; font-size: 0.9rem; }
.wijk-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 24px; }
.wijk-list-col h4 { color: var(--primary); margin-bottom: 10px; font-size: 0.95rem; }
.wijk-list-col li { padding: 4px 0; font-size: 0.9rem; color: var(--text-muted); }
.regio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.regio-card {
  background: var(--light); border-radius: var(--radius);
  padding: 24px; border: 1px solid var(--border);
}
.regio-card h4 { color: var(--primary); margin-bottom: 6px; font-size: 1rem; }
.regio-card p { color: var(--text-muted); font-size: 0.9rem; }

/* Neighborhood intro (location pages) */
.neighborhood-intro { max-width: 780px; }
.neighborhood-intro h2 { color: var(--primary); margin-bottom: 14px; }
.neighborhood-intro h3 { color: var(--primary); margin: 28px 0 10px; font-size: 1.15rem; }
.neighborhood-intro p { color: var(--text-muted); margin-bottom: 14px; }

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

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .hero-badge-card { flex: 1; min-width: 200px; }
  .diensten-grid { grid-template-columns: repeat(2, 1fr); }
  .waarom-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .werkwijze-timeline::before { display: none; }
  .werkwijze-timeline { flex-direction: column; gap: 24px; }
  .werkwijze-step { text-align: left; display: flex; gap: 16px; align-items: flex-start; }
  .step-circle { margin: 0; flex-shrink: 0; }
  .werkwijze-step p { max-width: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .wijk-list { grid-template-columns: repeat(2, 1fr); }
  .regio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  section { padding: 56px 0; }
  .nav-toggle { display: flex; }
  nav ul {
    display: none; flex-direction: column;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: #FFFFFF; border-top: 1px solid #E4E7EB; border-bottom: 1px solid #E4E7EB;
    box-shadow: 0 12px 24px rgba(16,24,40,0.08); padding: 16px; 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: 12px 16px; color: #1B1E22; }
  nav ul li a:hover, nav ul li a.active { color: #1678AE; background: #EAF4FB; }
  .nav-cta { margin-top: 8px; }
  .nav-cta a { width: 100%; text-align: center; justify-content: center; display: block; }
  .nav-dropdown .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: #F8F8F8; box-shadow: none; border-radius: 6px;
    margin-top: 4px; margin-bottom: 8px;
  }
  .dropdown-menu a { color: #1B1E22 !important; }
  .dropdown-menu a:hover { background: #EAF4FB !important; color: #1678AE !important; }
  .hero { padding: 110px 0 56px; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero-badges { flex-direction: column; }
  .hero-badge-card { min-width: auto; }
  .form-section-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .diensten-grid { grid-template-columns: 1fr; }
  .waarom-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .ghl-form__row { grid-template-columns: 1fr; }
  .contact-form-wrap .form-row { grid-template-columns: 1fr; }
  .dienst-detail { grid-template-columns: 1fr; gap: 24px; padding: 48px 0; }
  .dienst-detail.reverse { direction: ltr; }
  .dienst-detail-icon { height: 200px; }
  .dienst-row { gap: 20px; }
  .dienst-row-icon { width: 48px; font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .wijk-grid { grid-template-columns: 1fr; }
  .wijk-list { grid-template-columns: 1fr 1fr; }
  .regio-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .float-call .call-text { display: none; }
  .float-call { padding: 14px 16px; border-radius: 50%; }
  .trust-strip-inner { gap: 16px; justify-content: flex-start; }
  .trust-item { font-size: 0.82rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 100px 0 40px; }
  h1 { font-size: 1.6rem; }
}

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

/* ===== Sneldeal logo ===== */
.logo{display:inline-flex;align-items:center;text-decoration:none;line-height:1;color:inherit;background:none;padding:0;border:0}
.logo-img{height:44px;width:auto;display:block}
footer .logo{margin-bottom:14px;background:#fff;padding:6px 12px;border-radius:8px;display:inline-block}
footer .logo .logo-img{height:38px}
@media(max-width:768px){.logo-img{height:36px}footer .logo .logo-img{height:32px}}
@media(max-width:380px){.logo-img{height:30px}footer .logo .logo-img{height:28px}}

/* ==== Sub-page compatibility: stat aliases + icons ==== */
.stat-number { font-size: 2.4rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.stat-desc { color: var(--text-muted); font-size: 0.9rem; }
.regio-icon { font-size: 1.8rem; margin-bottom: 12px; }
.wijk-card-icon { font-size: 1.8rem; margin-bottom: 12px; }
