/* ============================================================
   DAKDEKKERSBEDRIJF DKNH — Stylesheet
   Kleurenpallet:
     Navy (primair):  #1a3461
     Navy donker:     #0d1f3c
     Navy licht:      #2a4a85
     Accent oranje:   #e87c2b
     Lichte bg:       #f4f6f9
     Tekst:           #2d3748
     Tekst licht:     #64748b
     Border:          #e2e8f0
   ============================================================ */

/* ── Variabelen ──────────────────────────────────────────── */
:root {
  --navy:         #1a3461;
  --navy-dark:    #0d1f3c;
  --navy-light:   #2a4a85;
  --accent:       #e87c2b;
  --accent-dark:  #c96820;
  --white:        #ffffff;
  --light-bg:     #f4f6f9;
  --text:         #2d3748;
  --text-light:   #64748b;
  --border:       #e2e8f0;
  --shadow:       0 4px 20px rgba(13, 31, 60, 0.10);
  --shadow-lg:    0 10px 40px rgba(13, 31, 60, 0.16);
  --radius:       8px;
  --radius-lg:    16px;
  --transition:   0.3s ease;
  --container:    1200px;
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; color: var(--navy-dark); }
h1 { font-size: clamp(2rem,   5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Container ───────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Sections ────────────────────────────────────────────── */
section { padding: 5rem 0; }

.section-label {
  display: inline-block;
  background: rgba(26, 52, 97, 0.08);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-top: 0.65rem;
}

/* ── Knoppen ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 124, 43, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy-dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ================================================================
   HEADER
   ================================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-dark);
}

/* Topbalk */
.header-top {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.45rem 0;
  font-size: 0.82rem;
}
.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.header-top a {
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color var(--transition);
}
.header-top a:hover { color: var(--white); }
.header-top-right { display: flex; gap: 1.5rem; }

/* Navigatiebalk */
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}
.logo-mark {
  width: 46px;
  height: 46px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: white;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  overflow: hidden;
  padding: 3px;
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.logo-text { color: white; font-weight: 700; font-size: 1.05rem; line-height: 1.2; }
.logo-text small { display: block; font-size: 0.72rem; font-weight: 400; color: rgba(255,255,255,0.55); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.3rem 0;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.btn-call {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.btn-call:hover { background: var(--accent-dark); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobiel menu */
.mobile-nav {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.85rem 1.5rem;
  color: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.mobile-nav a:hover { background: rgba(255,255,255,0.05); color: white; padding-left: 2rem; }
.mobile-nav a.active { color: var(--accent); }
.mobile-nav .mobile-cta { padding: 1rem 1.5rem; }

/* ================================================================
   HERO
   ================================================================ */

.hero {
  position: relative;
  min-height: 91vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    130deg,
    rgba(13, 31, 60, 0.93) 0%,
    rgba(26, 52, 97, 0.78) 55%,
    rgba(13, 31, 60, 0.55) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 4rem;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.hero h1 { color: white; margin-bottom: 1.2rem; }
.hero h1 span { color: var(--accent); }
.hero .hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.25;
  font-weight: 700;
  color: white;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
.hero .hero-title span { color: var(--accent); }

.hero-intro {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.hero-sub strong { color: rgba(255,255,255,0.85); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.75rem;
  justify-content: center;
}

/* Hero label (boven H1) */
.hero-label {
  display: inline-block;
  background: rgba(232, 124, 43, 0.18);
  border: 1px solid rgba(232, 124, 43, 0.45);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

/* Hero USP strip */
.hero-usps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2.5rem;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-usp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1rem 1.2rem;
  color: white;
  font-size: 0.88rem;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-usp:last-child { border-right: none; }
.hero-usp-icon {
  width: 28px; height: 28px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  color: white;
}

/* ================================================================
   INTRO / OPENING BLOK
   ================================================================ */

.intro-section {
  background: var(--white);
  padding: 5rem 0;
}
.intro-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.intro-inner p.intro-lead {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1rem;
}
.intro-inner p.intro-sub {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.8;
}
.intro-inner .intro-spoed {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--light-bg);
  border-left: 4px solid var(--accent);
  padding: 0.85rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.92rem;
  color: var(--text);
  margin-top: 1.5rem;
}
.intro-inner .intro-spoed a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
}

/* ================================================================
   DIENSTEN
   ================================================================ */

.diensten { background: var(--light-bg); }

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.dienst-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.dienst-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.dienst-img {
  width: 100%; height: 195px;
  object-fit: cover;
  flex-shrink: 0;
}
.dienst-img-placeholder {
  width: 100%; height: 195px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  flex-shrink: 0;
}
.dienst-body { padding: 1.5rem; flex: 1; }
.dienst-body h3 { color: var(--navy-dark); margin-bottom: 0.55rem; font-size: 1.1rem; }
.dienst-body p  { color: var(--text-light); font-size: 0.9rem; margin: 0; }

/* ================================================================
   WERKGEBIED
   ================================================================ */

.werkgebied { background: var(--white); }

.werkgebied-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.werkgebied-text h2 { margin-bottom: 1rem; }
.werkgebied-regio {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.regio-tag {
  background: var(--navy);
  color: white;
  padding: 0.38rem 0.9rem;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 500;
}
.regio-tag.main { background: var(--accent); }
.werkgebied-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.werkgebied-img img {
  width: 100%; height: 420px;
  object-fit: cover;
}

/* ================================================================
   WAAROM WIJ (USPs)
   ================================================================ */

.waarom-wij {
  background: var(--navy-dark);
  color: white;
}
.waarom-wij .section-header h2 { color: white; }
.waarom-wij .section-header p  { color: rgba(255,255,255,0.65); }

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
}
.usp-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.usp-item:hover {
  border-color: var(--accent);
  background: rgba(255,255,255,0.04);
  transform: translateY(-4px);
}
.usp-icon {
  width: 62px; height: 62px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.75rem;
}
.usp-item h3 { color: white; margin-bottom: 0.45rem; font-size: 1.05rem; }
.usp-item p  { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin: 0; }

/* ================================================================
   GRATIS INSPECTIE
   ================================================================ */

.inspectie { background: var(--light-bg); }

.inspectie-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.inspectie-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.inspectie-img img {
  width: 100%; height: 420px;
  object-fit: cover;
}
.inspectie-punten {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}
.inspectie-punt {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text);
}
.check {
  width: 22px; height: 22px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ================================================================
   SPOEDSERVICE BANNER
   ================================================================ */

.spoed-banner {
  background: linear-gradient(130deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 4rem 0;
}
.spoed-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.spoed-text h2 { color: white; margin-bottom: 0.5rem; }
.spoed-text p  { color: rgba(255,255,255,0.88); font-size: 1rem; }
.spoed-cta     { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; flex-shrink: 0; }
.spoed-phone {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  white-space: nowrap;
  letter-spacing: -0.5px;
}
.spoed-phone:hover { opacity: 0.85; }

/* ================================================================
   CASE STUDY / REFERENTIE
   ================================================================ */

.referentie { background: var(--white); }

.referentie-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.referentie-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.referentie-imgs img {
  border-radius: var(--radius);
  width: 100%; height: 190px;
  object-fit: cover;
}
.referentie-imgs img.wide {
  grid-column: 1 / -1;
  height: 240px;
}
.referentie-tag {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.28rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
}

/* ================================================================
   RICHTPRIJZEN
   ================================================================ */

.prijzen { background: var(--light-bg); }

.prijs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.prijs-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--navy);
  transition: transform var(--transition);
}
.prijs-card:hover { transform: translateY(-4px); }
.prijs-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.prijs-amount {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.65rem;
}
.prijs-card p { color: var(--text-light); font-size: 0.88rem; margin: 0; }

.prijs-note {
  background: rgba(26, 52, 97, 0.06);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  color: var(--text-light);
  font-size: 0.92rem;
}

/* ================================================================
   FAQ
   ================================================================ */

.faq { background: var(--white); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.4rem;
  text-align: left;
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--light-bg); }
.faq-question.open  { background: var(--navy-dark); color: white; }

.faq-chevron {
  width: 22px; height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  font-size: 0.75rem;
  transition: transform var(--transition), background var(--transition);
}
.faq-question.open .faq-chevron {
  transform: rotate(180deg);
  background: rgba(255,255,255,0.15);
}
.faq-answer {
  display: none;
  padding: 1.1rem 1.4rem;
  background: var(--light-bg);
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.75;
  border-top: 1px solid var(--border);
}
.faq-answer.open { display: block; }

/* ================================================================
   AFSLUITENDE CTA
   ================================================================ */

.cta-final {
  background: var(--navy-dark);
  color: white;
  text-align: center;
}
.cta-final h2 { color: white; margin-bottom: 1rem; }
.cta-final p  {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 2rem;
}
.cta-final-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ================================================================
   FOOTER
   ================================================================ */

.site-footer {
  background: #071120;
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text { font-size: 1.1rem; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.88rem; line-height: 1.75; margin-bottom: 1.5rem; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.88rem;
}
.footer-contact-icon {
  font-size: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--accent); }

.footer-col h4 {
  color: white;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); padding-left: 0.3rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.83rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.83rem;
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--accent); }

/* ================================================================
   PAGINA HERO (subpagina's)
   ================================================================ */

.page-hero {
  background: var(--navy-dark);
  padding: 4rem 0 3.5rem;
  color: white;
}
.page-hero h1 { color: white; margin-bottom: 0.6rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: white; }
.breadcrumb .sep { font-size: 0.75rem; }
.breadcrumb span { color: var(--accent); }

/* ================================================================
   OVER ONS PAGINA
   ================================================================ */

.verhaal { background: var(--white); }
.verhaal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.verhaal-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.verhaal-img img { width: 100%; height: 500px; object-fit: cover; }

.werkwijze { background: var(--light-bg); }
.werkwijze-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.step {
  text-align: center;
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
}
.step-number {
  width: 54px; height: 54px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 1.2rem;
}
.step h3 { color: var(--navy-dark); margin-bottom: 0.5rem; }
.step p  { color: var(--text-light); font-size: 0.9rem; margin: 0; }

.certificaten { background: var(--light-bg); }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cert-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cert-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.cert-body { flex: 1; }
.cert-card h4 { color: var(--navy-dark); margin-bottom: 0.35rem; font-size: 1.05rem; }
.cert-card p  { color: var(--text-light); font-size: 0.88rem; margin: 0; line-height: 1.7; }

/* ================================================================
   CONTACT PAGINA
   ================================================================ */

.contact-section { background: var(--light-bg); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info-card {
  background: var(--navy-dark);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-info-card h2 { color: white; margin-bottom: 1.75rem; font-size: 1.5rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.35rem;
  margin-bottom: 1.35rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-detail:last-of-type { border-bottom: none; margin-bottom: 2rem; padding-bottom: 0; }

.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.2rem;
}
.contact-detail-text a,
.contact-detail-text p {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  margin: 0;
  transition: color var(--transition);
}
.contact-detail-text a:hover { color: var(--accent); }

.openingstijden-tabel { width: 100%; margin-top: 0.5rem; }
.openingstijden-tabel tr td { padding: 0.2rem 0; font-size: 0.88rem; color: rgba(255,255,255,0.72); }
.openingstijden-tabel tr td:last-child { text-align: right; }

.contact-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-card h2 { margin-bottom: 1.5rem; font-size: 1.5rem; }

.form-group { margin-bottom: 1.1rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.38rem;
  color: var(--text);
}
input, select, textarea {
  width: 100%;
  padding: 0.78rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--light-bg);
  transition: all var(--transition);
  outline: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--navy);
  background: white;
  box-shadow: 0 0 0 3px rgba(26, 52, 97, 0.08);
}
textarea { resize: vertical; min-height: 130px; }

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}
.form-privacy {
  font-size: 0.82rem;
  color: var(--text-light);
}
.form-privacy a { color: var(--navy); text-decoration: underline; }

.map-section iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* ================================================================
   PRIVACY PAGINA
   ================================================================ */

.privacy-content { background: var(--white); }
.privacy-inner {
  max-width: 800px;
  margin: 0 auto;
}
.privacy-date {
  background: var(--light-bg);
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.privacy-inner h2 {
  font-size: 1.35rem;
  color: var(--navy-dark);
  margin-top: 2.5rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--light-bg);
}
.privacy-inner h3 { font-size: 1.05rem; margin-top: 1.5rem; margin-bottom: 0.4rem; }
.privacy-inner p, .privacy-inner li {
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.8;
}
.privacy-inner ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.privacy-inner li { margin-bottom: 0.35rem; }

/* ================================================================
   RESPONIEF ONTWERP
   ================================================================ */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .diensten-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-usps { grid-template-columns: repeat(2, 1fr); }
  .hero-usp:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }

  .nav-links,
  .btn-call { display: none; }
  .hamburger { display: flex; }

  .header-top-right { display: none; }

  .hero { min-height: 100svh; }
  .hero-content { padding: 4rem 0 3rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-usps { grid-template-columns: 1fr; }
  .hero-usp { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); justify-content: flex-start; }
  .hero-usp:last-child { border-bottom: none; }

  .diensten-grid { grid-template-columns: 1fr; }

  .werkgebied-inner,
  .inspectie-inner,
  .referentie-inner,
  .verhaal-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }

  .werkgebied-img { order: -1; }

  .referentie-imgs { grid-template-columns: 1fr; }
  .referentie-imgs img,
  .referentie-imgs img.wide { height: 220px; grid-column: auto; }

  .spoed-inner { flex-direction: column; text-align: center; }
  .spoed-cta   { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .werkwijze-steps { grid-template-columns: 1fr 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .usp-grid { grid-template-columns: 1fr; }
  .werkwijze-steps { grid-template-columns: 1fr; }
  .prijs-grid { grid-template-columns: 1fr 1fr; }
  .hero-badges { flex-direction: column; gap: 0.5rem; }
}
