/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --navy:        #1d3480;
  --navy-dark:   #121f4d;
  --navy-deep:   #0f1427;
  --blue:        #2a4dbf;
  --blue-light:  #4169e1;
  --gray-700:    #374151;
  --gray-500:    #6b7280;
  --gray-200:    #e5e7eb;
  --gray-100:    #f1f3f8;
  --bg-light:    #f4f6fb;
  --white:       #ffffff;

  --font-heading: 'Raleway', sans-serif;
  --font-body:    'Inter', sans-serif;

  --shadow-sm:  0 2px 8px rgba(18,31,77,.08);
  --shadow-md:  0 8px 30px rgba(18,31,77,.14);
  --shadow-lg:  0 20px 60px rgba(18,31,77,.20);

  --radius:     0;
  --radius-lg:  0;
  --transition: 0.25s ease;
  --container:  1160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: var(--font-body);
  color: var(--gray-700);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: var(--blue); transition: color var(--transition); }
a:hover { color: var(--navy); }
address { font-style: normal; }
ul  { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 300; letter-spacing: 0.03em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.15rem; font-weight: 600; }
h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
p  { color: var(--gray-500); }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.center { text-align: center; }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.section-header           { margin-bottom: 3rem; }
.section-header h2        { margin-bottom: 1rem; }
.section-header.center p  { max-width: 55ch; margin-inline: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 0;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-nav {
  padding: 0.5rem 1.25rem !important;
  background: var(--blue) !important;
  color: var(--white) !important;
  border-radius: 0 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.08em !important;
}
.btn-nav:hover {
  background: var(--navy) !important;
  color: var(--white) !important;
  transform: none;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 4%;
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
}
.navbar.is-scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(18,31,77,.09);
  padding: 0.9rem 4%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
  flex-shrink: 0;
}
.navbar.is-scrolled .nav-logo { color: var(--navy); }

.logo-icon { flex-shrink: 0; overflow: visible; }

/* Logo-vorm als <img> in navbar — groter dan originele SVG */
img.logo-icon {
  height: 48px;
  width: auto;
}
.logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.logo-kader {
  position: absolute;
  inset: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  pointer-events: none;
  color: currentColor;
}
.logo-kader .kader-pale,
.logo-kader .kader-dark {
  stroke-dasharray: 384;
  stroke-dashoffset: 384;
}
.logo-kader .kader-pale {
  opacity: 0.35;
  transition: stroke-dashoffset 0.15s ease-out;
}
.logo-kader .kader-dark {
  opacity: 0.9;
  transition: stroke-dashoffset 0.15s ease-out;
}
.navbar:hover .logo-kader .kader-pale {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.9s cubic-bezier(0.4, 0, 0.1, 1);
}
.navbar:hover .logo-kader .kader-dark {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s cubic-bezier(0.4, 0, 0.1, 1) 0.15s;
}

.nav-brand { position: relative; }

/* Bleke lijn — tekent als eerste */
.nav-brand::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(29, 52, 128, 0.28);
  z-index: 1;
  transition: width 0.15s ease-out;
}

/* Donkere lijn — tekent over de bleke */
.nav-brand::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--navy-dark);
  z-index: 2;
  transition: width 0.15s ease-out;
}

.navbar:hover .nav-brand::before {
  width: 100%;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.1, 1);
}
.navbar:hover .nav-brand::after {
  width: 100%;
  transition: width 1.3s cubic-bezier(0.4, 0, 0.1, 1) 0.2s;
}

/* Nav-menu link underlines (zelfde stijl als .nav-brand) */
.nav-menu a:not(.btn-nav) { position: relative; }

.nav-menu a:not(.btn-nav)::before {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  opacity: 0.35;
  transition: width 0.15s ease-out;
}
.nav-menu a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: currentColor;
  opacity: 0.9;
  transition: width 0.15s ease-out;
}
.nav-menu a:not(.btn-nav):hover::before {
  width: 100%;
  transition: width 0.9s cubic-bezier(0.4, 0, 0.1, 1);
}
.nav-menu a:not(.btn-nav):hover::after {
  width: 100%;
  transition: width 1s cubic-bezier(0.4, 0, 0.1, 1) 0.15s;
}

/* Echt logo (transparant) in footer — wit maken voor donkere achtergrond */
.footer-logo-img {
  height: 115px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-name {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: inherit;
}
.brand-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.65;
}

/* Nav menu */
.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-menu a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--white); }

.navbar.is-scrolled .nav-menu a             { color: var(--gray-500); }
.navbar.is-scrolled .nav-menu a:hover,
.navbar.is-scrolled .nav-menu a.active      { color: var(--navy); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.is-scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--navy-deep);
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(15,20,39,.88) 0%, rgba(29,52,128,.72) 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
}
/* Diagonal accent line */
.hero-pattern::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(42,77,191,.18);
  filter: blur(60px);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 820px;
}
.hero-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.hero-text {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  max-width: 52ch;
  margin: 0 auto 2.5rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-badges {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badges span {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.4);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,.35);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.35), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .35; }
  50%       { opacity: 1; }
}

/* ============================================================
   JUXTAPOSE SECTION
   ============================================================ */
.juxtapose-section {
  padding: 6rem 0;
  background: var(--white);
}
.juxtapose-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
#juxtapose-container {
  width: 100%;
  height: 500px;
}
/* Override JuxtaposeJS default font */
.jx-slider .jx-label {
  font-family: var(--font-heading) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  background: rgba(18,31,77,.75) !important;
  padding: 0.4rem 0.9rem !important;
  border-radius: 2px !important;
}
.jx-controller {
  background: var(--white) !important;
  border-color: var(--blue) !important;
}
.jx-arrow { border-color: var(--navy) !important; }

/* ============================================================
   DIENSTEN PREVIEW (homepage grid)
   ============================================================ */
.diensten-preview {
  padding: 6rem 0;
  background: var(--bg-light);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1.5px solid var(--gray-200);
  transition: all var(--transition);
  color: inherit;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.service-card:hover .service-icon {
  background: var(--blue);
  color: var(--white);
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3  { color: var(--navy); }
.service-card p   { font-size: 0.88rem; flex: 1; }
.card-link {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: auto;
  position: relative;
}
.card-link::before {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  opacity: 0.35;
  transition: width 0.15s ease-out;
}
.card-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  opacity: 0.9;
  transition: width 0.15s ease-out;
}
.service-card:hover .card-link { color: var(--navy); }
.service-card:hover .card-link::before {
  width: 100%;
  transition: width 0.9s cubic-bezier(0.4, 0, 0.1, 1);
}
.service-card:hover .card-link::after {
  width: 100%;
  transition: width 1s cubic-bezier(0.4, 0, 0.1, 1) 0.15s;
}

/* ============================================================
   WAAROM SECTION
   ============================================================ */
.waarom-section {
  padding: 6rem 0;
  background: var(--white);
}
.waarom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.waarom-content .section-label { display: block; margin-bottom: 0.75rem; }
.waarom-content h2              { margin-bottom: 1.25rem; }
.waarom-content > p             { margin-bottom: 2rem; }

.waarom-list { display: flex; flex-direction: column; gap: 1.35rem; }
.waarom-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--bg-light);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--blue);
  font-weight: 700;
  margin-top: 2px;
}
.waarom-list strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.waarom-list span { font-size: 0.875rem; }

.waarom-image { position: relative; }
.waarom-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.image-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--navy);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.badge-text {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 5rem 0;
  text-align: center;
}
.cta-banner h2  { color: var(--white); margin-bottom: 1rem; }
.cta-banner p   { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  padding: 4.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .footer-logo  { color: var(--white); margin-bottom: 1.25rem; }
.footer-brand > p {
  color: rgba(255,255,255,.45);
  font-size: 0.86rem;
  max-width: 28ch;
  line-height: 1.7;
}
.footer-links h4,
.footer-contact h4 { color: rgba(255,255,255,.35); margin-bottom: 1.25rem; }

.footer-links ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a  { color: rgba(255,255,255,.55); font-size: 0.875rem; }
.footer-links a:hover { color: var(--white); }

.footer-contact address p { color: rgba(255,255,255,.55); font-size: 0.875rem; margin-bottom: 0.45rem; }
.footer-contact a         { color: rgba(255,255,255,.55); }
.footer-contact a:hover   { color: var(--white); }

.footer-meta { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.3rem; }
.footer-meta span {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.28);
}
.footer-vlabel-img {
  display: block;
  max-width: 190px;
  height: auto;
  margin-top: 1rem;
  border-radius: 3px;
  opacity: 0.80;
  transition: opacity 0.2s;
}
.footer-vlabel-img:hover { opacity: 1; }

/* Diensten: VLABEL badge naast CTA-knop */
.dienst-cta-row { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin-top: 1.75rem; }
.dienst-cta-row .btn { margin-top: 0; }
.vlabel-badge-img { height: 46px; width: auto; border-radius: 2px; }

/* Diensten: PDF viewer */
.dienst-visual--pdf { display: flex; flex-direction: column; }
.dienst-pdf-viewer { width: 100%; height: 480px; border: none; border-radius: var(--radius); display: block; background: var(--gray-100); }
.pdf-open-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.8rem; color: var(--gray-500); margin-top: 0.6rem;
  text-decoration: none; transition: color 0.2s;
}
.pdf-open-link:hover { color: var(--navy); }
.pdf-open-link svg { width: 13px; height: 13px; flex-shrink: 0; }

.footer-bottom { padding-top: 1.5rem; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,.22); font-size: 0.78rem; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(140deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 9rem 0 5rem;
  text-align: center;
}
.page-hero .section-label { display: block; margin-bottom: 0.75rem; color: rgba(255,255,255,.4); }
.page-hero h1             { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.page-hero p              { color: rgba(255,255,255,.6); max-width: 55ch; margin-inline: auto; font-size: 1.05rem; }

/* ============================================================
   DIENSTEN PAGE
   ============================================================ */
.diensten-list { padding: 5rem 0; }

.dienst-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.dienst-item:last-child { border-bottom: none; }
.dienst-item.reverse .dienst-visual { order: -1; }

.dienst-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}
.dienst-text h2 { margin-bottom: 1rem; }
.dienst-text > p { margin-bottom: 1.5rem; }
.dienst-text ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 2rem;
}
.dienst-text li {
  font-size: 0.9rem;
  color: var(--gray-500);
  padding-left: 1.4rem;
  position: relative;
}
.dienst-text li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.dienst-visual {
  display: flex;
  flex-direction: column;
}
.dienst-visual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(18,31,77,.28), 0 4px 16px rgba(18,31,77,.16);
}
.diensten-divider {
  padding: 2.5rem 0 0.5rem;
  border-top: 2px solid var(--gray-200);
  margin-top: 1rem;
}
.diensten-divider .section-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.7;
}
.sub-dienst {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
}
.sub-dienst h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.foto-locatie {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin: 0.55rem 0 0;
  font-style: italic;
}
.foto-locatie svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  opacity: 0.7;
}
.dienst-icon-placeholder {
  width: 100%;
  height: 360px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--blue);
  border: 2px dashed var(--gray-200);
}
.dienst-icon-placeholder svg { width: 72px; height: 72px; opacity: .35; }
.dienst-icon-placeholder span { font-size: 0.75rem; color: var(--gray-200); font-family: var(--font-heading); letter-spacing: 0.1em; text-transform: uppercase; }

/* ============================================================
   OVER ONS PAGE
   ============================================================ */
.over-section { padding: 5rem 0; }
.over-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.over-image-sticky { position: sticky; top: 6rem; }
.over-image-sticky img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(18,31,77,.12), 0 8px 40px rgba(18,31,77,.28);
}
.over-content .section-label { display: block; margin-bottom: 0.5rem; }
.over-content h1             { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 0.5rem; }
.subtitle {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 2rem;
}
.over-content p { margin-bottom: 1.25rem; }

.credentials {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.credential-item {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 1.25rem;
  border-left: 3px solid var(--blue);
}
.credential-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.credential-item span { font-size: 0.875rem; color: var(--gray-500); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 5rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2    { margin-bottom: 1.25rem; }
.contact-info > p   { margin-bottom: 2.5rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-detail  { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--bg-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-detail-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.contact-detail-text span,
.contact-detail-text a { font-size: 0.9rem; color: var(--gray-500); }
.contact-detail-text a:hover { color: var(--blue); }

.contact-form {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
}
.contact-form h3 { margin-bottom: 1.75rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.78rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(42,77,191,.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select   { cursor: pointer; }

.form-note {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 1rem;
  line-height: 1.5;
}
.btn-submit { width: 100%; margin-top: 1.25rem; }

.map-section { height: 400px; background: var(--gray-100); }
.map-section iframe { width: 100%; height: 100%; border: none; display: block; }

/* ============================================================
   REALISATIES — kaarten (gedeeld: homepage preview + realisaties pagina)
   ============================================================ */
.real-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(29,52,128,.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}
.real-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(29,52,128,.13);
}
.real-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-200);
}
.real-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.real-card:hover .real-photo img { transform: scale(1.04); }
.real-badge {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 4px;
}
.real-body { padding: 1.4rem 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.real-location {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: var(--gray-500); font-style: italic;
}
.real-location svg { width: 11px; height: 11px; flex-shrink: 0; opacity: 0.65; }
.real-body h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--navy); margin: 0; }
.real-body p  { font-size: 0.875rem; color: var(--gray-600); line-height: 1.65; margin: 0; flex: 1; }
.real-link {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  margin-top: 0.5rem;
  position: relative;
  display: inline-block;
}
.real-link::before {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  opacity: 0.35;
  transition: width 0.15s ease-out;
}
.real-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  opacity: 0.9;
  transition: width 0.15s ease-out;
}
.real-card:hover .real-link { color: var(--navy); }
.real-card:hover .real-link::before {
  width: 100%;
  transition: width 0.9s cubic-bezier(0.4, 0, 0.1, 1);
}
.real-card:hover .real-link::after {
  width: 100%;
  transition: width 1s cubic-bezier(0.4, 0, 0.1, 1) 0.15s;
}

/* Homepage realisaties preview */
.real-preview-section { padding: 5.5rem 0; background: var(--white); }
.real-preview-section .section-intro { max-width: 600px; margin: 0 auto 3.5rem; text-align: center; }
.real-preview-section .section-intro p { color: var(--gray-600); line-height: 1.7; margin-top: 0.75rem; }
.real-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .waarom-grid     { gap: 3rem; }
  .dienst-item     { gap: 3rem; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand    { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .services-grid          { grid-template-columns: repeat(2, 1fr); }
  .dienst-item            { grid-template-columns: 1fr; gap: 2rem; }
  .dienst-item.reverse .dienst-visual { order: 0; }
  .waarom-grid            { grid-template-columns: 1fr; }
  .waarom-image           { display: none; }
  .contact-grid           { grid-template-columns: 1fr; gap: 3rem; }
  .over-grid              { grid-template-columns: 1fr; }
  .over-image-sticky      { display: block; position: static; margin-bottom: 2.5rem; }
  .over-image-sticky img  { height: 320px; }
  .real-preview-grid      { grid-template-columns: repeat(2, 1fr); }
  .realisaties-grid       { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .real-preview-grid      { grid-template-columns: 1fr; }
  .realisaties-grid       { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy-deep);
    padding: 5.5rem 2rem 2rem;
    transition: right var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,.25);
    z-index: 1000;
  }
  .nav-menu.is-open { right: 0; }
  .nav-menu ul { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .nav-menu a      { color: rgba(255,255,255,.85) !important; font-size: 1rem; }
  .nav-menu a:hover,
  .nav-menu a.active { color: var(--white) !important; }
  /* Contact-knop in mobiel menu: zelfde look als andere links */
  .btn-nav {
    background: transparent !important;
    color: rgba(255,255,255,.85) !important;
    border: none !important;
    padding: 0 !important;
    font-size: 1rem !important;
    letter-spacing: 0.12em !important;
    border-radius: 0 !important;
  }
  .btn-nav:hover { color: var(--white) !important; }

  .hero-cta     { flex-direction: column; align-items: center; }
  .hero-badges  { flex-direction: column; gap: 0.5rem; }

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

  #juxtapose-container { height: 320px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  h1 { font-size: 2rem; }
  #juxtapose-container { height: 240px; }
}

/* ============================================================
   CONTACT PAGE — eenvoudig, geen formulier
   ============================================================ */
.contact-intro {
  max-width: 55ch;
  margin: 0 auto 3.5rem;
}
.contact-intro h2 { margin-bottom: 1rem; }

.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.contact-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 0;
  border: 2px solid var(--gray-200);
  gap: 0.4rem;
  transition: all var(--transition);
  color: var(--navy);
}
.contact-option svg {
  width: 38px;
  height: 38px;
  margin-bottom: 0.5rem;
  color: var(--blue);
  transition: color var(--transition);
}
.contact-option:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  color: var(--navy);
}
.contact-option--primary {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.contact-option--primary svg { color: rgba(255,255,255,.75); }
.contact-option--primary:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.co-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
}
.co-value {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 600;
  line-height: 1.3;
  word-break: break-all;
}
.co-hint {
  font-size: 0.8rem;
  opacity: 0.5;
}

.contact-meta {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-200);
  max-width: 680px;
  margin: 0 auto;
}
.contact-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
}
.contact-meta-item svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
  margin-bottom: 0.25rem;
}
.contact-meta-item strong {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.contact-meta-item span { font-size: 0.875rem; color: var(--gray-500); line-height: 1.55; }

@media (max-width: 600px) {
  .contact-options { grid-template-columns: 1fr; }
  .contact-meta    { gap: 2rem; }
}

/* ============================================================
   NAVBAR — altijd wit (override dark-hero stijlen)
   ============================================================ */
.navbar               { background: var(--white); }
.navbar.is-scrolled   { background: var(--white); }
.nav-logo             { color: var(--navy); }
.nav-toggle span      { background: var(--navy); }
.nav-menu a           { color: var(--gray-500); }
.nav-menu a:hover,
.nav-menu a.active    { color: var(--navy); }

/* ============================================================
   HERO — twee kolommen, witte achtergrond, zwevende foto
   ============================================================ */
.hero {
  min-height: 100vh;
  padding: 7rem 0 5rem;
  background: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: inset 0 -18px 32px -12px rgba(18, 31, 77, 0.09);
}
.hero > .container { width: 100%; }

/* Verberg donkere hero-elementen (niet meer nodig) */
.hero-bg, .hero-overlay, .hero-pattern, .hero-scroll { display: none; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 4rem;
  align-items: center;
}
.hero-label {
  display: block;
  color: var(--blue);
  margin-bottom: 1.25rem;
}
/* Reset: .hero-text werd vroeger gebruikt voor de witte paragaaf */
.hero-text { color: unset; font-size: unset; max-width: unset; margin: unset; text-align: unset; }

.hero-left h1        { color: var(--navy); margin-bottom: 1.5rem; }
.hero-desc           { font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 46ch; }
.hero-cta            { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-badges         { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-badges span    { font-family: var(--font-heading); font-size: 0.75rem; letter-spacing: 0.06em; color: var(--gray-500); }

/* Zwevende foto */
.hero-visual { position: relative; padding: 0 0 2.5rem 2.5rem; }
.hero-visual::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 80%; height: 80%;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(440px, calc(100vh - 14rem), 760px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(18,31,77,.18), 0 4px 20px rgba(18,31,77,.08);
}

@media (max-width: 900px) {
  .hero-inner  { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 6rem 0 4rem; }
}

/* ── Dubbele Google Maps layout ──────────────────────────── */
.map-dual { height: auto !important; display: grid; grid-template-columns: 1fr 1fr; }
.map-panel { display: flex; flex-direction: column; }
.map-panel iframe { height: 380px; }
.map-panel-label {
  background: var(--blue);
  color: var(--white);
  padding: .6rem 1.25rem;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.map-panel-label span { font-weight: 400; opacity: .7; text-transform: none; letter-spacing: .04em; }
.map-panel:first-child .map-panel-label { border-right: 3px solid var(--white); }
.map-panel:first-child iframe,
.map-panel:first-child .map-blocked { border-right: 3px solid var(--blue); }

@media (max-width: 640px) {
  .map-dual { grid-template-columns: 1fr; }
  .map-panel iframe { height: 260px; }
}

/* ── Cookie banner ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy-deep);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 9999;
  border-top: 3px solid var(--blue);
  flex-wrap: wrap;
}
.cookie-banner p {
  color: rgba(255,255,255,.8);
  margin: 0;
  font-size: .85rem;
  flex: 1;
  min-width: 200px;
}
.cookie-banner a { color: var(--blue-light); }
.cookie-banner .btn { padding: .55rem 1.4rem; font-size: .75rem; }
.cookie-actions { display: flex; gap: .6rem; flex-shrink: 0; }
.cookie-banner .btn-outline {
  border-color: rgba(255,255,255,.4);
  color: rgba(255,255,255,.85);
}
.cookie-banner .btn-outline:hover {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: var(--white);
  box-shadow: none;
}
.cookie-banner.is-hidden { display: none; }

/* Geblokkeerde kaart placeholder */
.map-blocked {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 380px;
  background: var(--gray-100);
  text-align: center;
  gap: 1rem;
  padding: 2rem;
}
.map-blocked svg { width: 40px; height: 40px; color: var(--gray-500); opacity: .45; }
.map-blocked p { font-size: .9rem; max-width: 28ch; }
@media (max-width: 640px) {
  .map-blocked { height: 260px; }
}

/* ── Survey achtergrondanimatie (hero, index.html) ──────── */
#survey-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  /* Links duidelijk genoeg, geleidelijk naar volledig rechts */
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0,0,0,0.28) 0%,
    rgba(0,0,0,0.45) 20%,
    rgba(0,0,0,0.72) 40%,
    black 58%
  );
  mask-image: linear-gradient(
    to right,
    rgba(0,0,0,0.28) 0%,
    rgba(0,0,0,0.45) 20%,
    rgba(0,0,0,0.72) 40%,
    black 58%
  );
}
@media (max-width: 900px) {
  /* Op mobiel (geen foto, tekst vult vol scherm): geen mask */
  #survey-bg {
    -webkit-mask-image: none;
    mask-image: none;
  }
}
.hero .container { position: relative; z-index: 1; }
