/* ================================================================
   Vakman Loodgieters Rotterdam — style.css
   Palette: Charcoal #2B2D42 / Crimson #D90429 / Steel Blue #8D99AE
   Font: Source Sans 3 (Google Fonts)
   Style: Urban industrial — sharp angles, bold contrast, harbor city
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;500;600;700;900&display=swap');

:root {
  --primary: #2B2D42;
  --secondary: #D90429;
  --accent: #8D99AE;
  --accent-hover: #6B7A8F;
  --secondary-glow: rgba(217,4,41,.25);
  --dark: #14213D;
  --light: #EDF2F4;
  --white: #FFFFFF;
  --text: #2B2D42;
  --text-light: #8D99AE;
  --border: #CED4DA;
  --radius: 3px;
  --radius-lg: 6px;
  --shadow: 0 4px 20px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 32px rgba(20,33,61,.18);
  --transition: .25s ease;
  --max-width: 1180px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--text); line-height: 1.65; background: var(--white);
  -webkit-font-smoothing: antialiased;
}
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.text-center { text-align: center; }

/* ── TOP BAR (crimson) ── */
.top-bar {
  background: var(--secondary);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.top-bar a { color: var(--white); text-decoration: underline; font-weight: 700; }
.top-bar .pulse {
  display: inline-block; width: 8px; height: 8px;
  background: #22c55e; border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.5)} }

/* ── HEADER (dark charcoal) ── */
header.header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--primary);
  border-bottom: 2px solid var(--secondary);
  transition: box-shadow var(--transition);
}
header.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.3); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo { display: flex; align-items: center; gap: 0; }
.logo svg { height: 40px; width: auto; }

nav.nav ul {
  display: flex; align-items: center; gap: 2px;
}
nav.nav ul li a {
  padding: 8px 14px; font-size: .88rem; font-weight: 600;
  color: rgba(255,255,255,.8); border-radius: var(--radius);
  transition: all var(--transition);
}
nav.nav ul li a:hover,
nav.nav ul li a.active { color: var(--white); background: rgba(255,255,255,.1); }
.nav-cta a {
  background: var(--secondary) !important; color: var(--white) !important;
  padding: 10px 22px !important; border-radius: var(--radius) !important;
  font-size: .85rem !important; white-space: nowrap;
}
.nav-cta a:hover { background: #b8031f !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2.5px;
  background: var(--white); border-radius: 2px;
  transition: all .3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--white); box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg); padding: 8px;
  min-width: 230px; border-top: 3px solid var(--secondary);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all var(--transition); z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 16px; font-size: .88rem; border-radius: var(--radius); color: var(--text); }
.dropdown-menu a:hover { background: var(--light); color: var(--secondary); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-size: 1rem; font-weight: 700;
  border-radius: var(--radius); cursor: pointer;
  transition: all var(--transition); border: 2px solid transparent;
  font-family: inherit; text-transform: uppercase; letter-spacing: .5px;
}
.btn-accent { background: var(--secondary); color: var(--white); border-color: var(--secondary); }
.btn-accent:hover { background: #b8031f; transform: translateY(-2px); box-shadow: 0 6px 24px var(--secondary-glow); }
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--dark); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-white:hover { background: var(--light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-ghost { background: transparent; color: var(--secondary); border-color: var(--secondary); }
.btn-ghost:hover { background: rgba(217,4,41,.06); }
.btn-sm { padding: 10px 22px; font-size: .9rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── HERO — SPLIT LAYOUT WITH DIAGONAL STRIPE ── */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: var(--white);
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: -10%; width: 60%; height: 100%;
  background: var(--secondary);
  transform: skewX(-12deg);
  opacity: .07;
  pointer-events: none;
}
.hero .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; position: relative; z-index: 2;
}
.hero-content { position: relative; }
.hero h1 { font-size: 3rem; font-weight: 900; line-height: 1.1; margin-bottom: 1.25rem; }
.hero h1 .hl { color: var(--secondary); }
.hero-sub { font-size: 1.15rem; line-height: 1.6; opacity: .88; margin-bottom: 1.5rem; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 2rem;
}
.hero-badge {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  padding: 8px 18px; border-radius: var(--radius);
  font-size: .85rem; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.hero-badge .check { color: #22c55e; font-weight: 700; }
.hero-phone {
  display: flex; flex-direction: column; gap: 4px;
}
.hero-phone a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 1.3rem; font-weight: 800; color: var(--white);
  background: var(--secondary); padding: 12px 28px; border-radius: var(--radius);
  transition: all var(--transition); width: fit-content;
}
.hero-phone a:hover { background: #b8031f; transform: translateY(-2px); box-shadow: 0 6px 24px var(--secondary-glow); }
.hero-phone span { font-size: .82rem; opacity: .6; margin-top: 4px; }

/* Hero form card */
.hero-form-wrapper { position: relative; z-index: 3; }
.hero-form-card {
  background: var(--white); color: var(--text);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  border-top: 4px solid var(--secondary);
}
.hero-form-card h3 { font-size: 1.4rem; font-weight: 800; color: var(--primary); margin-bottom: .25rem; }
.form-sub { font-size: .92rem; color: var(--text-light); margin-bottom: 1.5rem; }

/* ── FORMS ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: .78rem; font-weight: 700; color: var(--primary);
  margin-bottom: 5px; text-transform: uppercase; letter-spacing: .5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; font-size: .95rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  background: var(--light); font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(217,4,41,.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }

.form-msg { display: none; padding: 16px 20px; border-radius: var(--radius); margin-top: 16px; font-weight: 600; font-size: .95rem; }
.form-msg.success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.form-msg.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.form-msg.error a { color: #991b1b; text-decoration: underline; font-weight: 700; }
.form-note { text-align: center; font-size: .82rem; color: var(--text-light); margin-top: 12px; }

/* ── TRUST STRIP (charcoal bg, bold numbers) ── */
.trust-strip {
  background: var(--primary); color: var(--white); padding: 2.5rem 0;
  position: relative; z-index: 3;
}
.trust-row {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 3rem;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .95rem; font-weight: 600;
}
.trust-item .t-icon { font-size: 1.3rem; }
.trust-item strong { color: var(--secondary); font-size: 1.2rem; }

/* ── SECTION ── */
.section { padding: 5rem 0; }
.section.bg-light { background: var(--light); }
.section.bg-dark { background: var(--dark); color: var(--white); }
.section.bg-primary { background: var(--primary); color: var(--white); }
.section-label {
  display: inline-block; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--secondary); margin-bottom: .75rem;
}
.bg-dark .section-label,
.bg-primary .section-label { color: var(--secondary); }
.section-title {
  font-size: 2.2rem; font-weight: 900; line-height: 1.15;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem; color: var(--text-light); max-width: 620px;
  margin: 0 auto 2.5rem; line-height: 1.6;
}
.bg-dark .section-sub,
.bg-primary .section-sub { color: rgba(255,255,255,.7); }

/* ── PROBLEM / SERVICE CARDS (crimson top border, industrial) ── */
.problems-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 2rem;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--secondary);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.p-icon {
  width: 56px; height: 56px; margin: 0 auto 1rem;
  background: rgba(217,4,41,.08); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.problem-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; color: var(--primary); }
.problem-card p { font-size: .9rem; color: var(--text-light); line-height: 1.55; margin-bottom: 1rem; }
.p-link { font-size: .88rem; font-weight: 700; color: var(--secondary); text-transform: uppercase; letter-spacing: .5px; }
.p-link:hover { color: #b8031f; }

/* ── SERVICES PAGE GRID ── */
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all var(--transition);
  display: grid; grid-template-columns: 56px 1fr; gap: 1.25rem;
  align-items: start;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.s-icon {
  width: 56px; height: 56px; background: rgba(217,4,41,.06);
  border-radius: var(--radius); display: flex;
  align-items: center; justify-content: center; font-size: 1.4rem;
  flex-shrink: 0;
}
.service-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: .4rem; }
.service-card p { font-size: .92rem; color: var(--text-light); line-height: 1.6; }

/* ── USP CARDS ── */
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 2rem; }
.usp-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 2rem 1.5rem;
  text-align: center; transition: all var(--transition);
}
.usp-card:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
.u-icon { font-size: 2rem; margin-bottom: .75rem; }
.usp-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.usp-card p { font-size: .88rem; opacity: .8; line-height: 1.5; }

.usp-grid-light .usp-card {
  background: var(--white); border-color: var(--border); color: var(--text);
  border-top: 3px solid var(--secondary);
}
.usp-grid-light .usp-card:hover { box-shadow: var(--shadow); }
.usp-grid-light .usp-card h3 { color: var(--primary); }
.usp-grid-light .usp-card p { color: var(--text-light); opacity: 1; }

/* ── WERKWIJZE — HORIZONTAL TIMELINE ── */
.timeline {
  display: flex; justify-content: space-between; position: relative;
  margin-top: 3rem; padding: 0 1rem;
}
.timeline::before {
  content: ''; position: absolute;
  top: 28px; left: 60px; right: 60px;
  height: 3px; background: var(--border);
}
.timeline-step {
  flex: 1; text-align: center; position: relative; z-index: 2;
}
.timeline-num {
  width: 56px; height: 56px; margin: 0 auto 1rem;
  background: var(--secondary); color: var(--white);
  border-radius: var(--radius); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 900;
  box-shadow: 0 4px 16px var(--secondary-glow);
}
.timeline-step h4 { font-size: .95rem; font-weight: 700; color: var(--primary); margin-bottom: .25rem; }
.timeline-step p { font-size: .85rem; color: var(--text-light); max-width: 140px; margin: 0 auto; }

/* Vertical variant for process page */
.timeline-vertical {
  display: flex; flex-direction: column; gap: 0;
  position: relative; padding-left: 40px; margin-top: 2rem;
}
.timeline-vertical::before {
  content: ''; position: absolute;
  left: 27px; top: 0; bottom: 0;
  width: 3px; background: var(--border);
}
.tv-step {
  position: relative; padding: 0 0 2.5rem 2.5rem;
}
.tv-step:last-child { padding-bottom: 0; }
.tv-num {
  position: absolute; left: -13px; top: 0;
  width: 40px; height: 40px; background: var(--secondary);
  color: var(--white); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900;
  box-shadow: 0 3px 12px var(--secondary-glow);
}
.tv-step h4 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: .3rem; }
.tv-step p { font-size: .95rem; color: var(--text-light); line-height: 1.6; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 2rem; }
.review-card {
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--secondary);
  border-radius: var(--radius-lg); padding: 1.75rem;
  text-align: left; transition: all var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.review-stars { color: #f59e0b; font-size: 1rem; margin-bottom: .75rem; letter-spacing: 2px; }
.review-card p { font-size: .92rem; color: var(--text); line-height: 1.6; margin-bottom: 1rem; font-style: italic; }
.review-author { font-weight: 700; font-size: .9rem; color: var(--primary); }
.review-location { font-size: .82rem; color: var(--text-light); }

/* ── AREA CARDS ── */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 2rem; }
.area-card {
  display: block; background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--secondary);
  border-radius: var(--radius-lg); padding: 1.75rem;
  text-align: center; transition: all var(--transition);
}
.area-card:hover { border-color: var(--secondary); box-shadow: var(--shadow); transform: translateY(-3px); }
.area-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: .4rem; }
.area-card p { font-size: .85rem; color: var(--text-light); margin-bottom: .75rem; line-height: 1.5; }
.area-link { font-size: .85rem; font-weight: 700; color: var(--secondary); text-transform: uppercase; letter-spacing: .5px; }
.area-card:hover .area-link { color: #b8031f; }

/* ── FAQ ACCORDION ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  text-align: left; padding: 1.25rem 2.5rem 1.25rem 0;
  font-size: 1.05rem; font-weight: 700; color: var(--text);
  font-family: inherit; position: relative;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--secondary); }
.faq-q::after {
  content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 300; color: var(--secondary);
  transition: transform .3s ease;
}
.faq-q.open::after { content: '\2212'; }
.faq-a { display: none; padding: 0 0 1.25rem; font-size: .95rem; color: var(--text-light); line-height: 1.7; }

/* ── CTA BANNER (crimson with diagonal overlay) ── */
.cta-banner {
  background: var(--secondary);
  color: var(--white); padding: 4rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: 0; left: -5%; width: 40%; height: 100%;
  background: rgba(0,0,0,.1);
  transform: skewX(-12deg);
  pointer-events: none;
}
.cta-banner h2 { font-size: 2rem; font-weight: 900; margin-bottom: .75rem; position: relative; }
.cta-banner p { font-size: 1.05rem; opacity: .9; margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; position: relative; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* ── FOOTER (deep navy) ── */
footer {
  background: var(--dark); color: rgba(255,255,255,.85);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; color: var(--accent); margin: 0 0 1rem; line-height: 1.6; }
.footer-nap { display: flex; flex-direction: column; gap: 6px; font-size: .85rem; color: var(--accent); }
.footer-col h4 {
  font-size: .95rem; font-weight: 700; margin-bottom: 1rem;
  color: var(--white); text-transform: uppercase; letter-spacing: 1px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: .88rem; color: var(--accent); transition: all var(--transition); }
.footer-col ul li a:hover { color: var(--secondary); }
.footer-contact .fc-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: .88rem; }
.fc-icon { flex-shrink: 0; }
.fc-text { color: var(--accent); }
.fc-text a { color: var(--accent); }
.fc-text a:hover { color: var(--secondary); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 2rem 0; margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .82rem; color: var(--accent); opacity: .7;
}
.footer-bottom a { color: var(--accent); }
.footer-bottom a:hover { color: var(--secondary); }

/* ── FLOAT CTA ── */
.float-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  background: var(--secondary); color: var(--white);
  padding: 14px 24px; border-radius: var(--radius);
  font-weight: 700; font-size: .95rem;
  box-shadow: 0 6px 24px var(--secondary-glow);
  display: flex; align-items: center; gap: 8px;
  transition: all var(--transition);
}
.float-cta:hover { background: #b8031f; transform: translateY(-2px); box-shadow: 0 8px 32px var(--secondary-glow); }

/* ── PAGE HERO (inner pages — charcoal with diagonal stripe) ── */
.page-hero {
  background: var(--primary);
  color: var(--white); padding: 3.5rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; right: -10%; width: 50%; height: 100%;
  background: var(--secondary); opacity: .06;
  transform: skewX(-12deg); pointer-events: none;
}
.page-hero h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: .5rem; position: relative; }
.page-hero p { font-size: 1.05rem; opacity: .85; max-width: 560px; margin: 0 auto; position: relative; }
.breadcrumb { font-size: .82rem; opacity: .5; margin-bottom: 1rem; position: relative; }
.breadcrumb a { opacity: .8; }
.breadcrumb a:hover { opacity: 1; text-decoration: underline; }

/* ── CONTENT PAGES ── */
.content-section { padding: 4rem 0; }
.content-wrap { max-width: 800px; margin: 0 auto; }
.content-wrap h2 { font-size: 1.6rem; font-weight: 900; color: var(--primary); margin: 2rem 0 .75rem; }
.content-wrap h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin: 1.5rem 0 .5rem; }
.content-wrap p { margin-bottom: 1rem; line-height: 1.7; }

/* ── CHECK-LIST (position:relative + padding-left + absolute ::before) ── */
.check-list { margin: 1.5rem 0; }
.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: .95rem;
  line-height: 1.6;
}
.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  font-weight: 700;
  font-size: 1rem;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  margin-top: 2rem;
}
.contact-info-card {
  background: var(--light); border-radius: var(--radius-lg);
  padding: 2rem; margin-bottom: 1.5rem;
  border-left: 4px solid var(--secondary);
}
.contact-info-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; }
.ci-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: .95rem; }
.ci-icon { flex-shrink: 0; font-size: 1.1rem; }
.ci-item a { color: var(--secondary); font-weight: 600; }
.ci-item a:hover { color: #b8031f; }

/* ── WERKGEBIED MAP PLACEHOLDER ── */
.map-placeholder {
  background: var(--light); border: 2px dashed var(--border);
  border-radius: var(--radius-lg); padding: 4rem 2rem;
  text-align: center; font-size: 3rem; margin: 2rem 0;
}
.map-placeholder p { font-size: 1rem; color: var(--text-light); margin-top: .5rem; }

/* ── ABOUT PAGE ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-img-placeholder {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  border-radius: var(--radius-lg); padding: 4rem 2rem;
  text-align: center; color: var(--white); font-size: 3rem;
  border-bottom: 4px solid var(--secondary);
}
.about-img-placeholder p { font-size: 1rem; margin-top: .5rem; opacity: .8; }

/* ── AREA PAGE DETAILS ── */
.area-detail { padding: 4rem 0; }
.area-content { max-width: 800px; margin: 0 auto; }
.area-content h2 { font-size: 1.5rem; font-weight: 900; color: var(--primary); margin: 2rem 0 .75rem; }
.area-content h3 { font-size: 1.15rem; font-weight: 700; color: var(--primary); margin: 1.5rem 0 .5rem; }
.area-content p { margin-bottom: 1rem; line-height: 1.7; }
.area-sidebar {
  background: var(--light); border-radius: var(--radius-lg);
  padding: 2rem; margin-top: 2rem;
  border-left: 4px solid var(--secondary);
}
.area-sidebar h4 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.2rem; }
  .hero .container { grid-template-columns: 1fr; gap: 2rem; }
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .timeline { flex-wrap: wrap; gap: 2rem; }
  .timeline::before { display: none; }
  .timeline-step { flex: 0 0 calc(33.333% - 1.34rem); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  nav.nav ul {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--primary); flex-direction: column;
    padding: 16px 24px; gap: 4px;
    box-shadow: var(--shadow-lg);
    border-top: 2px solid var(--secondary);
  }
  nav.nav ul.open { display: flex; }
  nav.nav ul li a { padding: 12px 16px; display: block; border-radius: var(--radius); }
  .nav-cta { margin-top: 8px; }
  .nav-cta a { display: block !important; text-align: center; }
  .nav-dropdown .dropdown-menu {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; border-top: none;
    padding: 0 0 0 16px; min-width: auto;
    background: transparent;
  }
  .dropdown-menu a { color: rgba(255,255,255,.7); }
  .dropdown-menu a:hover { background: rgba(255,255,255,.08); color: var(--white); }

  .hero { padding: 2.5rem 0 3rem; }
  .hero h1 { font-size: 1.8rem; }
  .hero-sub { font-size: 1rem; }
  .hero-badges { flex-direction: column; }
  .hero-form-card { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-phone a { font-size: 1.1rem; padding: 10px 24px; }

  .section { padding: 3rem 0; }
  .section-title { font-size: 1.6rem; }

  .problems-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }

  .timeline { flex-direction: column; padding: 0 0 0 28px; }
  .timeline::before {
    display: block; top: 0; bottom: 0;
    left: 27px; right: auto; width: 3px; height: auto;
  }
  .timeline-step { text-align: left; }
  .timeline-num { margin: 0 0 .5rem; }
  .timeline-step p { margin: 0; max-width: none; }

  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .cta-actions { flex-direction: column; align-items: center; }

  .page-hero h1 { font-size: 1.6rem; }

  .float-cta .cta-label { display: none; }
  .float-cta { padding: 14px 18px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .trust-row { flex-direction: column; align-items: center; gap: 1rem; }
}
