/* ============================================================
   PIPELINE B — WEBSITE GENERATOR STYLESHEET
   FixFlow design language: clean, airy, Inter font, modern cards
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --kleur-primair: #2563eb;       /* overridden per brand via base.html inline style */
  --kleur-donker: #1e3a8a;        /* overridden per brand */
  --kleur-cta: #2563eb;           /* overridden per brand; fallback orange when brand color too dark/grey */
  --kleur-secundair: #1a2744;     /* overridden per brand; navy fallback when brand is grey/dark */
  --kleur-tekst: #1a1a1a;
  --kleur-licht: #f8f8f8;
  --font-body: 'Inter', sans-serif;
  --radius: 8px;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
  --container: 1200px;
  --transition: 0.25s ease;
}

/* ============================================================
   2. RESET
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ============================================================
   3. BASE
   ============================================================ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--kleur-tekst);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* clip ipv hidden zodat position:sticky blijft werken */
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================================
   4. CONTAINER
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--kleur-cta);
  color: #ffffff;
  border-color: var(--kleur-cta);
}

.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--kleur-primair);
  border-color: var(--kleur-primair);
}

.btn-outline:hover {
  background: var(--kleur-primair);
  color: #ffffff;
}

.btn-white {
  background: #ffffff;
  color: var(--kleur-primair);
  border-color: #ffffff;
}

.btn-white:hover {
  background: var(--kleur-licht);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* ============================================================
   6. ANNOUNCEMENT BAR
   ============================================================ */

/* ============================================================
   7. TOPBAR
   ============================================================ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: #1a2744;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 0;
}

.topbar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
  white-space: nowrap;
}

.topbar-item:hover {
  color: #ffffff;
}

.topbar-item svg {
  flex-shrink: 0;
  opacity: 0.8;
}

.topbar-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 15px;
  user-select: none;
}

/* ============================================================
   8. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  /* Duw inhoud onder de OS-statusbalk op notch/punch-hole schermen */
  padding-top: env(safe-area-inset-top, 0px);
}

/* Houdt ruimte vrij voor topbar (40px) + fixed navbar (72px) op niet-homepagina's */
.navbar-spacer {
  height: calc(112px + env(safe-area-inset-top, 0px));
}
.home-page .navbar-spacer {
  display: none; /* hero trekt zelf omhoog via margin-top: -112px */
}

/* Witte navbar — donkere tekst, altijd leesbaar */
.navbar .navbar-inner a,
.navbar .navbar-menu a {
  color: var(--kleur-tekst);
}

.navbar .navbar-logo-text {
  color: var(--kleur-primair);
}

.navbar .navbar-menu a:hover {
  color: var(--kleur-primair);
}

.navbar .navbar-menu a.active {
  color: var(--kleur-primair);
  border-bottom-color: var(--kleur-primair);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  flex: 0 1 auto;     /* mag krimpen, nooit groeien → duwt het menu nooit weg */
  min-width: 0;       /* essentieel: laat flex daadwerkelijk krimpen */
  max-width: 280px;   /* harde bovengrens voor brede lockups */
}

.navbar-logo-box {
  display: flex;
  align-items: center;
  min-width: 0;
  max-width: 280px;
  max-height: 44px;
  overflow: hidden;
}

.navbar-logo-img {
  max-height: 44px;     /* hoogte bindt voor normale ratio's */
  max-width: 100%;      /* breedte bindt voor brede lockups → nooit overflow */
  width: auto;
  height: auto;
  object-fit: contain;  /* nooit uitrekken */
  object-position: left center;
  display: block;
}

.navbar-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--kleur-primair);
  text-decoration: none;
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.navbar-menu a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  font-size: 15px;
  transition: color var(--transition);
}

.navbar-menu a:hover {
  color: var(--kleur-primair);
}

.navbar-menu a.active {
  color: var(--kleur-primair);
  border-bottom: 2px solid var(--kleur-primair);
  padding-bottom: 2px;
}

.navbar-cta {
  background: var(--kleur-cta);
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.navbar-cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   9. HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 100%;
}

/* Opake witte navbar: de hero mag NIET achter de balk doorlopen, anders kapt de balk
   de bovenkant van de foto af (bv. een hoofd). De hero vult daarom de zichtbare area
   ONDER de navbar (topbar 40px + navbar 72px = 112px) en de content centreert daarin
   met ruime ademruimte boven de tekst. */
.home-page .hero {
  min-height: calc(100vh - 112px - env(safe-area-inset-top, 0px));
  margin-top: calc(112px + env(safe-area-inset-top, 0px));
  padding-top: 64px;
  padding-bottom: 64px;
}

/* Focuspunt iets boven het midden, zodat het hoofd van een persoon altijd goed
   in beeld blijft en nooit weggesneden wordt. */
.home-page .hero-bg {
  object-position: center 35%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  color: #ffffff;
}

.hero-subtitel {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-alinea {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.65;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badges {
  position: absolute;
  bottom: 32px;
  right: 32px;
  display: flex;
  gap: 12px;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

/* ============================================================
   10. SECTIONS — BASE + VARIANTS
   ============================================================ */
.section {
  padding: 80px 0;
}

.section-white {
  background: #ffffff;
}

.section-licht {
  background: var(--kleur-licht);
}

.section-donker {
  background: var(--kleur-donker);
  color: #ffffff;
}

.section-donker h2,
.section-donker h3 {
  color: #ffffff;
}

.section-dark {
  background: #1a2744;
  color: #ffffff;
}

.section-dark h2,
.section-dark h3 {
  color: #ffffff;
}

/* ============================================================
   11. SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--kleur-primair);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 17px;
  color: #666666;
  margin-top: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.section-donker .section-label,
.section-dark .section-label {
  color: rgba(255, 255, 255, 0.75);
}

.section-donker .section-subtitle,
.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   12. USP STRIP
   ============================================================ */
.usp-strip {
  padding: 0;
  background: var(--kleur-donker);
}

.usp-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container);
  margin: 0 auto;
}

.usp-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 28px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.usp-strip-item:last-child {
  border-right: none;
}

.usp-strip-item svg {
  flex-shrink: 0;
}

.usp-strip-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}

.usp-check {
  width: 20px;
  height: 20px;
  background: var(--kleur-primair);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

/* ============================================================
   13. STATS
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-value {
  font-size: 48px;
  font-weight: 800;
  color: var(--kleur-secundair);
  line-height: 1;
}

.section-donker .stat-value,
.section-dark .stat-value {
  color: #ffffff;
}

.stat-label {
  font-size: 15px;
  color: #666666;
  margin-top: 8px;
}

.section-donker .stat-label,
.section-dark .stat-label {
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   14. ABOUT BLOCK
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  max-height: 480px;
}

/* Tab system */
.tabs {
  border-bottom: 1px solid #eeeeee;
  display: flex;
  gap: 0;
  margin-bottom: 24px;
}

.tab-btn {
  padding: 12px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 3px solid transparent;
  color: #666666;
  transition: all var(--transition);
  margin-bottom: -1px;
}

.tab-btn:hover {
  color: var(--kleur-tekst);
}

.tab-btn.active {
  border-bottom-color: var(--kleur-primair);
  color: var(--kleur-tekst);
}

.tab-content {
  display: none;
  padding-top: 1.25rem;
}

.tab-content.active {
  display: block;
}

/* ============================================================
   15. SERVICES PREVIEW — card grid (home page)
   ============================================================ */
.diensten-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dienst-kaart {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.dienst-kaart:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  transform: translateY(-3px);
}

.dienst-kaart-icon {
  width: 56px;
  height: 56px;
  background: var(--kleur-licht);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--kleur-primair);
}

.dienst-kaart-naam {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--kleur-tekst);
}

.dienst-kaart-omschrijving {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
}

/* About zonder foto — gecentreerde tabs */
.about-tabs-only {
  max-width: 720px;
  margin: 0 auto;
}

.diensten-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.dienst-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dienst-link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #eeeeee;
  text-decoration: none;
  color: var(--kleur-tekst);
  font-weight: 500;
  font-size: 16px;
  transition: all var(--transition);
}

.dienst-link-item:hover {
  color: var(--kleur-primair);
  gap: 16px;
}

.dienst-link-item::after {
  content: '→';
  margin-left: auto;
  opacity: 0.4;
  transition: all var(--transition);
}

.dienst-link-item:hover::after {
  opacity: 1;
  transform: translateX(4px);
}

.diensten-preview-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  max-height: 420px;
}

/* ============================================================
   16. WAAROM BLOK
   ============================================================ */
.waarom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.waarom-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 3px solid var(--kleur-secundair);
  transition: background var(--transition);
}

.waarom-card:hover {
  background: rgba(255, 255, 255, 0.12);
}

.waarom-icon {
  width: 48px;
  height: 48px;
  background: var(--kleur-cta);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.waarom-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.waarom-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================================
   17. REVIEWS
   ============================================================ */
.reviews-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.reviews-grid .review-card {
  flex: 0 0 340px;
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
  max-width: 1068px;
  margin: 0 auto;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.reviews-track .review-card {
  flex: 0 0 340px;
}

.review-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 28px 28px;
  box-shadow: var(--shadow);
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--kleur-primair);
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
  min-width: 0;
}

.review-author {
  font-weight: 600;
  font-size: 14px;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 1px;
  margin-top: 2px;
}

.review-google-logo {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: auto;
}

.review-text {
  font-size: 15px;
  line-height: 1.65;
  color: #444444;
  margin-bottom: 12px;
  font-style: italic;
}

.review-date {
  color: #999999;
  font-size: 13px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.carousel-dot.active {
  background: #ffffff;
  width: 24px;
}

/* Light background carousel dots */
.section-licht .carousel-dot,
.section-white .carousel-dot {
  background: rgba(0, 0, 0, 0.2);
}

.section-licht .carousel-dot.active,
.section-white .carousel-dot.active {
  background: var(--kleur-primair);
}

/* ============================================================
   18. GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.gallery-main {
  grid-row: span 2;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.gallery-main .gallery-img {
  min-height: 360px;
}

.gallery-grid > *:not(.gallery-main) .gallery-img {
  height: 175px;
}

/* ── Ons Werk (bento-galerij) ───────────────────────── */
.werk-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.werk-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.10);
}
.werk-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.werk-item:hover img {
  transform: scale(1.06);
}
.werk-item--groot {
  grid-row: span 2;
}

@media (max-width: 767px) {
  .werk-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 160px);
    gap: 10px;
  }
}

/* ============================================================
   19. CONTACT CTA
   ============================================================ */
.contact-cta {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
}

.contact-cta-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.contact-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.contact-cta-content {
  position: relative;
  z-index: 1;
}

.contact-cta-content h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
}

.contact-cta-content p {
  font-size: 17px;
  opacity: 0.85;
  margin-bottom: 0;
}

.contact-cta-number {
  display: block;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  margin: 16px 0;
  transition: opacity var(--transition);
}

.contact-cta-number:hover {
  opacity: 0.85;
}

.contact-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.demo-warning {
  background: #dc2626;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-top: 24px;
  display: inline-block;
  font-weight: 500;
}

/* ============================================================
   20. FOOTER CTA
   ============================================================ */
.footer-cta {
  background: var(--kleur-donker);
  padding: 48px 0;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-cta-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 4px;
}

.footer-cta-number {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  display: block;
  transition: opacity var(--transition);
}

.footer-cta-number:hover {
  opacity: 0.85;
}

/* ============================================================
   21. FOOTER
   ============================================================ */
.footer {
  background: #111111;
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo-box {
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer-logo {
  max-height: 44px;
  width: auto;
}

.footer-beschrijving {
  font-size: 14px;
  opacity: 0.65;
  margin-top: 16px;
  line-height: 1.65;
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-hours {
  list-style: none;
}

.footer-hours li {
  display: flex;
  justify-content: flex-start;
  gap: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  padding: 4px 0;
}

.footer-hours li span:first-child {
  min-width: 90px;
  padding-right: 16px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-list a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 48px;
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.5;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-rf a {
  color: inherit;
  text-decoration: none;
}

.footer-rf a:hover {
  opacity: 0.8;
}

/* ============================================================
   22. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  height: 320px;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--kleur-donker);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.page-hero-content h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-top: 8px;
}

.page-hero-subtitle {
  font-size: 16px;
  opacity: 0.8;
  margin-top: 8px;
}

/* ============================================================
   23. CARDS — SERVICE CARDS
   ============================================================ */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.diensten-grid--solo {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.diensten-grid--duo {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Contact band + overlappende formulierkaart ─────────── */
.contact-band {
  position: relative;
  min-height: 345px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.contact-band-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 20, 38, 0.68);
}
.contact-band-content {
  position: relative;
  z-index: 1;
  padding-top: 3rem;
  padding-bottom: 185px;
}
.contact-band-label {
  display: inline-block;
  background: var(--kleur-cta);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.contact-band-heading {
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
  max-width: 560px;
}

.contact-inhoud {
  background: #f5f4f0;
  padding-bottom: 5rem;
}
.contact-inhoud-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1.5rem 0;
  padding-top: 2.5rem;
}
.contact-form-col {
  /* kaart overlapt de band erboven via negatieve margin-top */
}
.contact-form-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.13);
  padding: 2rem;
  margin-top: -120px;
  position: relative;
  z-index: 2;
}
.contact-form-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1.25rem 0;
}

/* ── Statistieken-balk (diensten / referenties / contact) ── */
.pagina-stats-balk {
  background: var(--kleur-donker);
  padding: 22px 0;
}
.pagina-stats-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.pagina-stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0 36px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.pagina-stats-item:last-child { border-right: none; }
.pagina-stats-waarde {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}
.pagina-stats-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .diensten-grid--duo {
    grid-template-columns: 1fr;
  }
}

.dienst-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.dienst-card-icon {
  width: 56px;
  height: 56px;
  background: var(--kleur-licht);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--kleur-primair);
}

.dienst-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.dienst-card p {
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
}

/* ============================================================
   24. CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--kleur-licht);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kleur-primair);
}

.contact-info-text label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888888;
  margin-bottom: 4px;
}

.contact-info-text a,
.contact-info-text p {
  font-size: 16px;
  color: var(--kleur-tekst);
  text-decoration: none;
  margin: 0;
}

.contact-info-text a:hover {
  color: var(--kleur-primair);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
}

.hours-table td:first-child {
  font-weight: 500;
  color: #666666;
  width: 40%;
  padding-right: 16px;
}

.maps-embed {
  width: 100%;
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  border: none;
  display: block;
}

/* ============================================================
   25. CONTACT FORM
   ============================================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--kleur-tekst);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--kleur-tekst);
  background: #ffffff;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--kleur-primair);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  align-self: flex-start;
}

/* ============================================================
   26. SOCIAL ICONS
   ============================================================ */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: background var(--transition);
}

.social-icon:hover {
  background: var(--kleur-primair);
}

/* ============================================================
   27. BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  opacity: 0.75;
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-sep {
  opacity: 0.5;
}

/* ============================================================
   28. REFERENTIES GRID
   ============================================================ */
.referenties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.referentie-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ffffff;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.referentie-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.referentie-caption {
  padding: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--kleur-tekst);
}

/* ============================================================
   29. OVER ONS PAGE
   ============================================================ */
.over-ons-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* New over-ons layout */
.over-ons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.over-ons-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.over-ons-text p {
  font-size: 16px;
  line-height: 1.75;
  color: #444444;
  margin-bottom: 16px;
}

.over-ons-text p:last-child {
  margin-bottom: 0;
}

.over-ons-intro-tekst {
  font-size: 17px;
  line-height: 1.8;
  color: #444444;
  margin-bottom: 28px;
}

/* Feiten-badges */
.oo-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.oo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--kleur-licht);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #333333;
}

.oo-badge svg {
  flex-shrink: 0;
  color: var(--kleur-primair);
}

/* Reviews grid op over-ons pagina */
.oo-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.over-ons-foto {
  border-radius: 16px;
  overflow: hidden;
}

.over-ons-img {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
}

.waarden-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.waarde-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.waarde-icon {
  width: 56px;
  height: 56px;
  background: var(--kleur-licht);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--kleur-primair);
}

.waarde-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.waarde-text {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
}

.kvk-block {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--kleur-licht);
  border-radius: var(--radius);
  padding: 12px 20px;
  font-size: 14px;
  color: #555555;
  margin-top: 24px;
}

.kvk-block strong {
  color: var(--kleur-tekst);
  font-weight: 600;
}

.eigenaar-quote {
  background: var(--kleur-licht);
  border-left: 4px solid var(--kleur-primair);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 32px;
}

.eigenaar-quote blockquote {
  font-size: 18px;
  font-style: italic;
  line-height: 1.65;
  color: #333333;
  margin-bottom: 16px;
}

.eigenaar-quote cite {
  font-size: 14px;
  font-weight: 600;
  color: var(--kleur-primair);
  font-style: normal;
}

/* ============================================================
   30. UTILITIES
   ============================================================ */
.mt-4 {
  margin-top: 1.5rem;
}

.text-center {
  text-align: center;
}

.text-white {
  color: #ffffff;
}

/* ============================================================
   31. ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.5s ease both;
}

/* ============================================================
   32. MOBILE RESPONSIVE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* Navbar */
  .navbar-cta {
    display: none;
  }

  .navbar-logo,
  .navbar-logo-box {
    max-width: 180px;
  }

  .navbar-logo-img {
    max-height: 36px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: left center;
    display: block;
  }

  .navbar-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 24px;
    z-index: 99;
    gap: 8px;
  }

  .navbar-menu.open {
    display: flex;
  }

  .navbar-menu a {
    color: var(--kleur-tekst) !important;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .navbar-toggle {
    display: flex;
    color: var(--kleur-tekst);
  }

  /* Hero */
  .hero-badges {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Sections */
  .section {
    padding: 56px 0;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-main {
    grid-row: span 1;
  }

  .gallery-main .gallery-img {
    min-height: 240px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* USP strip — 2x2 grid on mobile */
  .usp-strip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .usp-strip-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 20px;
    font-size: 14px;
  }

  .usp-strip-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .usp-strip-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  /* Diensten cards — 2 per rij op tablet */
  .diensten-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Services preview */
  .diensten-preview-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Waarom */
  .waarom-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Footer CTA */
  .footer-cta-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Topbar — op mobile alleen telefoon tonen */
  .topbar-inner {
    gap: 12px;
  }

  .topbar-sep,
  .topbar-item:not(:first-child) {
    display: none;
  }

  /* Reviews grid */
  .reviews-grid {
    flex-direction: column;
    align-items: center;
  }

  /* Reviews carousel */
  .reviews-carousel {
    max-width: 100%;
  }

  .reviews-track .review-card {
    flex: 0 0 calc(100vw - 48px);
  }

  /* Over ons content */
  .over-ons-content,
  .over-ons-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Waarden grid */
  .waarden-grid {
    grid-template-columns: 1fr;
  }

  /* Section header */
  .section-header {
    margin-bottom: 36px;
  }

  /* Page hero */
  .page-hero {
    height: 240px;
  }
}

@media (max-width: 767px) {
  .contact-band { min-height: 230px; }
  .contact-band-content { padding-bottom: 2rem; }
  .contact-inhoud-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-form-card { margin-top: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.10); }
  .contact-info-title { padding-top: 2rem; }
}

@media (max-width: 480px) {
  .pagina-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .pagina-stats-item {
    padding: 14px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .pagina-stats-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.12); }
  .pagina-stats-item:last-child,
  .pagina-stats-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

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

  .stat-value {
    font-size: 36px;
  }

  .usp-strip-inner {
    gap: 20px;
  }

  /* Diensten cards — 1 per rij op small mobile */
  .diensten-cards-grid {
    grid-template-columns: 1fr;
  }

  .usp-strip-grid {
    grid-template-columns: 1fr;
  }

  .usp-strip-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .usp-strip-item:last-child {
    border-bottom: none;
  }
}
