/* ============================================================
   Centraal Dakonderhoud Website — Modern Light Theme
   Colors: #0B1644 (Navy Blue) + #F42223 (Red)
   Font: Space Grotesk | Modern, professional design
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --primary:        #0B1644;
  --primary-light:  #111F5A;
  --accent:         #F42223;
  --accent-dark:    #D91D1D;
  --accent-light:   #FF6B6B;
  --accent-bright:  #F42223;
  --white:          #ffffff;
  --bg:             #f8f9fa;
  --bg2:            #f1f3f5;
  --surface:        #ffffff;
  --border:         #e9ecef;
  --border-dark:    #dee2e6;
  --text:           #0B1644;
  --text-secondary: #495057;
  --text-muted:     #868e96;
  --text-light:     #6c757d;
  --error:          #dc2626;
  --whatsapp:       #25D366;
  --radius:         10px;
  --radius-lg:      18px;
  --shadow-sm:      0 1px 3px rgba(11,22,68,0.08);
  --shadow:         0 4px 16px rgba(11,22,68,0.1);
  --shadow-lg:      0 12px 40px rgba(11,22,68,0.12);
  --transition:     all 0.22s ease;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}
html { 
  scroll-behavior: smooth; 
  -webkit-text-size-adjust: 100%; 
}
body {
  font-family: 'Space Grotesk', 'Outfit', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { 
  max-width: 100%; 
  display: block; 
  height: auto; 
}
a { 
  color: inherit; 
  text-decoration: none; 
}
ul, ol { 
  list-style: none; 
}
button { 
  font-family: inherit; 
  cursor: pointer; 
}

/* ── Typography ─────────────────────────────────────────────── */
h1 { font-size: clamp(2.2rem, 5.5vw, 3.75rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: 1.3rem; font-weight: 700; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--text-secondary); line-height: 1.75; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.fade-in { animation: fadeIn 0.6s ease-out forwards; opacity: 0; }
@keyframes fadeIn { to { opacity: 1; } }

/* ── Section Labels ─────────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-tag { justify-content: center; }
.section-header.center .section-tag::before { display: none; }
.section-header.center .section-tag::after { 
  content: ''; 
  display: inline-block; 
  width: 24px; 
  height: 2px; 
  background: var(--accent); 
}
.section-header.center p { max-width: 580px; margin: 12px auto 0; }
.section-title { color: var(--text); margin-bottom: 12px; }
.section-subtitle { color: var(--text-secondary); font-size: 1.05rem; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(11,22,68,0.25); }
.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-accent { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline-accent:hover { background: var(--accent); color: #fff; }
.btn-white { background: #fff; color: var(--primary); border-color: #fff; }
.btn-white:hover { background: var(--bg); }
.btn-secondary { background: var(--bg); color: var(--text); border-color: var(--border-dark); }
.btn-secondary:hover { background: var(--bg2); }
.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-icon-arrow::after { content: '→'; font-size: 1.1em; transition: transform 0.2s; }
.btn-icon-arrow:hover::after { transform: translateX(4px); }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(11,22,68,0.08);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(11,22,68,0.15); }
.nav-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 24px; 
  height: 70px; 
}
.nav-logo img { max-height: 44px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link { 
  display: block; 
  padding: 8px 14px; 
  font-size: 0.875rem; 
  font-weight: 600; 
  color: rgba(255,255,255,0.7); 
  border-radius: 8px; 
  transition: var(--transition); 
  position: relative; 
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-link.active { color: var(--accent-bright); }
.nav-link.active::after { 
  content: ''; 
  position: absolute; 
  bottom: -2px; 
  left: 50%; 
  transform: translateX(-50%); 
  width: 20px; 
  height: 2px; 
  background: var(--accent-bright); 
  border-radius: 2px; 
}
.nav-item { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--primary-light);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  min-width: 210px;
  padding: 20px 8px 8px;
  z-index: 100;
}
.nav-item:hover .nav-dropdown { display: block; }
.nav-dropdown a { 
  display: block; 
  padding: 9px 14px; 
  font-size: 0.875rem; 
  font-weight: 500; 
  color: rgba(255,255,255,0.7); 
  border-radius: 8px; 
  transition: var(--transition); 
}
.nav-dropdown a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-dropdown a:first-child { color: var(--accent-bright); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-phone { font-size: 0.9rem; font-weight: 700; color: var(--accent-bright); white-space: nowrap; }
.nav-phone:hover { color: #fff; }
.hamburger { 
  display: none; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
  gap: 5px; 
  width: 44px; 
  height: 44px; 
  background: rgba(255,255,255,0.1); 
  border: 1px solid rgba(255,255,255,0.15); 
  border-radius: 8px; 
  cursor: pointer; 
}
.hamburger span { 
  display: block; 
  width: 20px; 
  height: 2px; 
  background: #fff; 
  border-radius: 2px; 
  transition: var(--transition); 
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-overlay { 
  display: none; 
  position: fixed; 
  inset: 0; 
  background: var(--primary); 
  z-index: 2000; 
  padding: 24px; 
  overflow-y: auto; 
  flex-direction: column; 
}
.nav-overlay.active { display: flex; }
.nav-overlay ul { margin-top: 40px; }
.nav-overlay ul li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-overlay ul li a { 
  display: block; 
  padding: 16px 0; 
  font-size: 1.1rem; 
  font-weight: 600; 
  color: rgba(255,255,255,0.8); 
}
.nav-overlay ul li a:hover { color: var(--accent-bright); }
.hamburger-close { margin-left: auto; display: flex; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; }
.mobile-dropdown { display: none; padding: 4px 0; }
.mobile-dropdown a { padding: 10px 16px !important; font-size: 0.9rem !important; color: rgba(255,255,255,0.55) !important; }
.mobile-dropdown.active { display: block; }

/* ── HERO — Page Hero ───────────────────────────────────────── */
.hero {
  background: url('assets/Homepage1.png') center / cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  min-height: 86vh;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 22, 68, 0.76);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 2;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 720px;
  position: relative;
  z-index: 1;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-bright);
  margin-bottom: 24px;
}
.hero-label::before { content: ''; display: inline-block; width: 24px; height: 2px; background: var(--accent-bright); }
.hero h1 { color: #fff; margin-bottom: 24px; }
.hero h1 .accent-word { color: var(--accent-bright); }
.hero-subtitle { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; margin-bottom: 36px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-trust-item { display: flex; align-items: center; gap: 8px; }
.trust-dot { width: 8px; height: 8px; background: var(--accent-bright); border-radius: 50%; flex-shrink: 0; }
.hero-trust-item span { font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.85); }

.hero-right { position: relative; display: flex; flex-direction: column; align-self: stretch; }
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  flex: 1;
  min-height: 420px;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-stat-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-stat-card-1 { bottom: 110px; right: 260px; }
.hero-stat-card-2 { bottom: 110px; right: 60px; }
.stat-icon { font-size: 1.5rem; color: var(--accent); }
.stat-val { font-size: 1.4rem; font-weight: 700; color: var(--primary); line-height: 1; }
.stat-lbl { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* ── Trust Bar / Stats Bar ──────────────────────────────────── */
.trust-bar {
  background: var(--accent);
  padding: 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}
.trust-item:last-child { border-right: none; }
.trust-number { font-size: 2.5rem; font-weight: 700; color: #fff; line-height: 1; letter-spacing: -0.02em; display: block; }
.trust-label { font-size: 0.85rem; color: rgba(255,255,255,0.85); font-weight: 500; margin-top: 8px; }
.counter { display: block; }

/* ── Services Grid ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 { color: var(--primary); margin-bottom: 12px; }
.service-card p { font-size: 0.95rem; margin-bottom: 18px; }
.service-link { color: var(--accent); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.service-link:hover { gap: 10px; }

/* ── Why Us / Features ──────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--accent-bright);
  transform: translateY(-4px);
}
.why-icon { margin-bottom: 16px; display: block; line-height: 0; color: var(--accent); }
.usp-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.usp-item { display: flex; align-items: center; gap: 8px; font-weight: 500; }

/* ── Branded icon strip ── */
.icon-strip-divider {
  width: 100%;
  border-top: 14px solid rgba(255,255,255,0.95);
  margin-top: 48px;
}
.icon-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 48px 0;
  align-items: center;
  justify-items: center;
}
.icon-strip-grid img {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
}
@media (max-width: 900px) {
  .icon-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
@media (max-width: 480px) {
  .icon-strip-grid { grid-template-columns: 1fr; }
}

/* ── Reviews Grid ──────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.review-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.review-stars { color: var(--accent); margin-bottom: 12px; font-size: 0.9rem; }
.review-quote { font-style: italic; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }
.review-author { font-weight: 600; color: var(--primary); }
.review-city { color: var(--text-muted); font-size: 0.85rem; }

/* ── Projects Grid ──────────────────────────────────────────── */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}
.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.project-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.project-info {
  padding: 24px;
}
.project-badge {
  display: inline-flex;
  background: var(--accent-light);
  color: var(--text);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ── Emergency Banner ───────────────────────────────────────── */
.emergency-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.emergency-phone {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 16px 0 24px;
  text-decoration: underline;
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: #070d2e;
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
}
.footer::before {
  content: '';
  display: block;
  height: 4px;
  background: var(--accent);
  margin-bottom: 72px;
  margin-top: -72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-col p { font-size: 0.88rem; margin-bottom: 12px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.footer-rating { margin-bottom: 20px; }
.social-icons { display: flex; gap: 10px; margin-top: 20px; }
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  text-decoration: none;
}
.social-icon:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; stroke: var(--accent); }
.footer-contact-item a { color: rgba(255,255,255,0.6); text-decoration: none; transition: var(--transition); }
.footer-contact-item a:hover { color: #fff; }
.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.6);
}
.footer-divider { height: 1px; background: rgba(255,255,255,0.08); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-certs { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-certs span { position: relative; padding-left: 13px; }
.footer-certs span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.4); text-decoration: none; transition: var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ── Filter Bar ──────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  justify-content: center;
}
.filter-btn {
  padding: 10px 20px;
  border: 2px solid var(--border);
  background: transparent;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-secondary);
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── Project Grid 4 (Portfolio) ─────────────────────────────── */
.project-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.project-card-4 {
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
}
.project-card-4:hover {
  box-shadow: 0 12px 40px rgba(11,22,68,0.15);
  transform: translateY(-2px);
}
.project-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.project-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,22,68,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.project-card-4:hover .project-overlay { opacity: 1; }
.project-body { padding: 20px; }
.project-badge-4 {
  display: inline-block;
  background: var(--accent-light);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.project-card-4 h3 { font-size: 1rem; margin-bottom: 6px; }
.project-card-4 p { font-size: 0.85rem; }

/* ── Page Hero (for sub-pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.8); }
.breadcrumb {
  margin-bottom: 32px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: rgba(255,255,255,0.9); }
.breadcrumb span { margin: 0 8px; }

/* ── Floating Buttons ───────────────────────────────────────── */
.float-whatsapp, .float-call {
  position: fixed;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.float-whatsapp {
  background: var(--whatsapp);
  right: 24px;
  bottom: 90px;
}
.float-whatsapp:hover { transform: scale(1.1); }
.float-call {
  background: var(--accent);
  right: 24px;
  display: none;
}
.float-call:hover { transform: scale(1.1); }

@media (max-width: 768px) {
  .werkgebied-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .float-call { display: flex; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-phone { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 60px 0 40px; min-height: auto; }
  .hero::after { height: 40px; }
  .hero-stat-card { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .project-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-certs { justify-content: center; }
  .footer-legal { justify-content: center; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .trust-grid { grid-template-columns: 1fr; }
  .project-grid-4 { grid-template-columns: 1fr; }
  .nav-inner { height: 60px; gap: 12px; }
  .section { padding: 40px 0; }
}

/* ── Project Filtering & Gallery ────────────────────────────── */

.project-section {
  margin-bottom: 60px;
}


.project-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: var(--white);
  cursor: pointer;
}

.project-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.project-item:hover .project-overlay {
  opacity: 1;
}

.project-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.share-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.share-btn:hover {
  background: var(--white);
  transform: scale(1.1);
}

/* ── Service Icon SVG Container ─────────────────────────────── */
.service-icon-svg {
  width: 60px;
  height: 60px;
  background: rgba(244,34,35,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.service-icon-svg svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-icon-svg img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

/* ── Two-Column Intro Layout ────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ── Benefits Grid (dark bg) ────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.benefit-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.benefit-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.benefit-icon { color: var(--accent); margin-bottom: 14px; }
.benefit-icon svg { width: 28px; height: 28px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.benefit-card h3 { color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.benefit-card p { color: rgba(255,255,255,0.65); font-size: 0.875rem; line-height: 1.65; }

/* ── Process Steps ──────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.step { text-align: center; }
.step-number {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step h3 { margin-bottom: 12px; font-size: 1.1rem; color: var(--primary); }
.step p { font-size: 0.9rem; }

/* ── FAQ Accordion ──────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.12); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  line-height: 1.4;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-answer { display: none; padding: 0 0 20px; }
.faq-answer p { color: rgba(255,255,255,0.72); font-size: 0.95rem; line-height: 1.75; }
.faq-answer.open { display: block; }
.faq-arrow { font-size: 0.7rem; flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* ── Related Services Grid ──────────────────────────────────── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

/* ── Review Cards Template 4 Style ─────────────────────────── */
.reviews-grid-hp {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.review-card-hp {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.review-card-hp:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.review-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.review-stars-hp { color: var(--accent); display: flex; gap: 2px; align-items: center; margin-bottom: 6px; }
.review-badge-hp {
  display: inline-block;
  background: rgba(244,34,35,0.1);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.review-score { font-size: 1.5rem; font-weight: 700; color: var(--primary); line-height: 1; }
.review-quote-hp {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.review-author-hp { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.review-name { font-weight: 600; color: var(--primary); font-size: 0.88rem; margin: 0; }
.review-city-tag { color: var(--text-muted); font-size: 0.78rem; margin: 2px 0 0; }

/* ── Load More Reviews ──────────────────────────────────────── */
.reviews-hidden { display: none !important; }

/* ── Homepage 4-Step Process Section ───────────────────────── */
.process-grid-hp {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.process-card-hp {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.process-card-hp:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.process-step-num {
  width: 52px;
  height: 52px;
  background: var(--accent);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.process-card-hp h3 { color: #fff; font-size: 1.05rem; margin-bottom: 10px; }
.process-card-hp p { color: rgba(255,255,255,0.7); font-size: 0.88rem; line-height: 1.65; }

/* ── Page Hero Background Image variant ────────────────────── */
.page-hero-bg { padding: 100px 0; }
.page-hero-bg .breadcrumb { margin-bottom: 24px; }
.page-hero-bg h1 { margin-bottom: 16px; font-size: clamp(1.9rem,4vw,3rem); }
.page-hero-bg p { color: rgba(255,255,255,0.85); max-width: 580px; margin: 0 auto 28px; font-size: 1.05rem; }
.page-hero-bg .hero-ctas { justify-content: center; }

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .process-steps { grid-template-columns: 1fr; gap: 28px; }
  .process-grid-hp { grid-template-columns: repeat(2, 1fr); }
  .contact-quick-grid { grid-template-columns: 1fr !important; }
  .contact-main-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .process-grid-hp { grid-template-columns: 1fr; }
  .hero-img-wrap { min-height: 280px; }
}

/* ── Certification Strip ─────────────────────────────────────── */
.cert-strip {
  background: var(--bg2);
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cert-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}
.cert-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Location Pills (werkgebied) ─────────────────────────────── */
.location-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}
.location-pill {
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.location-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Veelvoorkomende Problemen ──────────────────────────────── */
.problemen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.problemen-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.problemen-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.problemen-list li:last-child { border-bottom: none; }
.problemen-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
@media (max-width: 768px) {
  .problemen-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ── Diensten page service list ─────────────────────────────── */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}
.dienst-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.dienst-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.dienst-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.dienst-card:hover::before { transform: scaleX(1); }
.dienst-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.dienst-card h3 { margin-bottom: 10px; color: var(--primary); }
.dienst-card > p { margin-bottom: 18px; font-size: 0.93rem; }
.dienst-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.dienst-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 4px 0;
}
.dienst-bullets li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 1px;
}
