/* ============================================================
   BEN ROOS DAKDEKKERS — Main Stylesheet
   Palette: #CC0000 rood, #FFFFFF wit, #222222 donkergrijs
   Font: Inter (Google Fonts)
   ============================================================ */

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

:root {
  --red: #CC0000;
  --red-dark: #a80000;
  --red-light: #e60000;
  --white: #ffffff;
  --off-white: #f7f7f7;
  --gray-100: #f2f2f2;
  --gray-200: #e0e0e0;
  --gray-400: #999999;
  --gray-600: #555555;
  --dark: #222222;
  --font: 'Inter', system-ui, sans-serif;
  --radius: 6px;
  --shadow: 0 2px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 6px 32px rgba(0,0,0,0.14);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* --- Image fill utility (mobile-proof) --- */
.media,
.img-fill,
figure.photo {
  position: relative;
  overflow: hidden;
}
.media > img,
.img-fill > img,
figure.photo > img,
.gallery img,
.card img,
.hero__img,
.portfolio-grid__item img,
.dienst-card img,
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { color: var(--gray-600); }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
}
.section-header {
  margin-bottom: 3rem;
}
.section-header--center {
  text-align: center;
}
.section-header--center .section-sub {
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  font-size: 0.97rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn--outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}
.btn--white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--off-white);
}
.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--ghost-white:hover {
  background: var(--white);
  color: var(--red);
}
.btn--sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: 5rem 0; }
section.tight { padding: 3rem 0; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}
.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.site-header.scrolled .nav__logo-text { color: var(--dark); }
.site-header.scrolled .nav__link { color: var(--dark); }
.site-header.scrolled .nav__link:hover { color: var(--red); }
.site-header.scrolled .nav__cta { background: var(--red); color: var(--white); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-icon {
  width: 38px;
  height: 38px;
  background: var(--red);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav__logo-icon svg { width: 22px; height: 22px; color: #fff; }
.nav__logo-text {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.nav__logo-text span { display: block; font-weight: 400; font-size: 0.75rem; opacity: 0.8; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__link {
  padding: 0.5rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav__cta {
  margin-left: 0.75rem;
  padding: 0.55rem 1.2rem;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background var(--transition);
}
.nav__cta:hover { background: var(--red-dark); }

/* --- Hamburger --- */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
}
.hamburger-bar {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}
.site-header.scrolled .hamburger-bar { background: var(--dark); }
.mobile-menu__trigger[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-bar { background: var(--white); }

/* ============================================================
   MOBILE MENU — fullscreen overlay (kit)
   ============================================================ */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-menu__overlay[aria-hidden="false"] {
  transform: translateX(0);
}
.mobile-menu__overlay[aria-hidden="true"] {
  pointer-events: none;
}
.mobile-menu__panel {
  padding: 5rem 2rem 2rem;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu__item {
  display: block;
  padding: 1rem 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition), padding-left var(--transition);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--font);
  cursor: pointer;
  text-align: left;
  width: 100%;
}
.mobile-menu__item:hover { color: var(--red); padding-left: 0.5rem; }
.mobile-menu__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font);
  opacity: 0.7;
  transition: opacity var(--transition);
}
.mobile-menu__close:hover { opacity: 1; }
.mobile-menu__close svg { width: 20px; height: 20px; }
.mobile-cta-wrap {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-cta-wrap .btn {
  justify-content: center;
  font-size: 1rem;
}

/* Body lock when menu open */
body.menu-open { overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.70) 0%,
    rgba(0,0,0,0.45) 60%,
    rgba(0,0,0,0.25) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: var(--white);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(204,0,0,0.7);
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  margin-bottom: 1.25rem;
}
.hero__eyebrow svg { width: 14px; height: 14px; }
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.hero h1 em {
  font-style: normal;
  color: #ff4444;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.6;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero__scroll svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--dark);
  padding: 0;
}
.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.5rem 1.75rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-bar__item:last-child { border-right: none; }
.trust-bar__icon {
  width: 44px;
  height: 44px;
  background: rgba(204,0,0,0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}
.trust-bar__icon svg { width: 22px; height: 22px; }
.trust-bar__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.trust-bar__sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.3;
  margin-top: 0.1rem;
}

/* ============================================================
   DIENSTEN
   ============================================================ */
.diensten { background: var(--off-white); }
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.dienst-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  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__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.dienst-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.dienst-card:hover .dienst-card__img img { transform: scale(1.05); }
.dienst-card__body {
  padding: 1.75rem;
}
.dienst-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(204,0,0,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 1rem;
}
.dienst-card__icon svg { width: 24px; height: 24px; }
.dienst-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--dark);
}
.dienst-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.link-red {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--red);
  font-weight: 700;
  font-size: 0.9rem;
  transition: gap var(--transition);
}
.link-red svg { width: 16px; height: 16px; transition: transform var(--transition); }
.link-red:hover { gap: 0.6rem; }
.link-red:hover svg { transform: translateX(3px); }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio { background: var(--white); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.portfolio-grid__item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.portfolio-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.portfolio-grid__item:hover img { transform: scale(1.06); }
.portfolio-grid__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.portfolio-grid__item:hover .portfolio-grid__overlay { opacity: 1; }
.portfolio-grid__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
}
.portfolio-grid__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 3px;
}
.portfolio__footer {
  text-align: center;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--off-white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.review-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  color: var(--red);
  opacity: 0.12;
  font-family: Georgia, serif;
  line-height: 1;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.review-star {
  width: 18px;
  height: 18px;
  color: #f59e0b;
}
.review-card p {
  font-size: 0.97rem;
  color: var(--dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.review-card__name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
}
.review-card__location {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ============================================================
   CERT BALK
   ============================================================ */
.certs {
  background: var(--white);
  padding: 3.5rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.certs__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem 4rem;
}
.certs__heading {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 2rem;
}
.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.cert-badge__icon {
  width: 64px;
  height: 64px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  background: var(--off-white);
}
.cert-badge__icon svg { width: 34px; height: 34px; }
.cert-badge__name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-600);
  text-align: center;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--red);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 10%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-band__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.cta-band p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}
.cta-band__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #111111;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo__icon {
  width: 38px;
  height: 38px;
  background: var(--red);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-logo__icon svg { width: 22px; height: 22px; color: #fff; }
.footer-logo__text {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.footer-logo__text span { display: block; font-weight: 400; font-size: 0.72rem; opacity: 0.6; }
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--red); }
.footer-contact-item a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--white); }
.footer-heading {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, #3a0000 100%);
  padding: 9rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero.webp') center/cover no-repeat;
  opacity: 0.12;
}
.page-header__inner { position: relative; z-index: 2; }
.page-header h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-header p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 540px; margin: 0 auto; }

/* ============================================================
   OVER ONS PAGE
   ============================================================ */
.over-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.over-intro__img {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.over-intro__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.over-intro__text .section-label { margin-bottom: 0.5rem; }
.over-intro__text h2 { margin-bottom: 1rem; }
.over-intro__text p { margin-bottom: 1rem; font-size: 0.97rem; }
.over-waarden {
  background: var(--off-white);
}
.waarden-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}
.waarde-item {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
}
.waarde-item__icon {
  width: 52px;
  height: 52px;
  background: rgba(204,0,0,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 1.25rem;
}
.waarde-item__icon svg { width: 26px; height: 26px; }
.waarde-item h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.waarde-item p { font-size: 0.9rem; }

/* ============================================================
   DIENSTEN PAGE
   ============================================================ */
.dienst-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.dienst-detail:last-child { border-bottom: none; }
.dienst-detail--reverse .dienst-detail__img { order: 2; }
.dienst-detail--reverse .dienst-detail__text { order: 1; }
.dienst-detail__img {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.dienst-detail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dienst-detail__text .section-label { margin-bottom: 0.4rem; }
.dienst-detail__text h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.dienst-detail__text p { margin-bottom: 1rem; font-size: 0.97rem; }
.dienst-detail__features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.25rem 0 1.75rem;
}
.dienst-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--dark);
}
.dienst-feature svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; font-size: 1.8rem; }
.contact-info p { margin-bottom: 2rem; font-size: 0.97rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-detail__icon {
  width: 48px;
  height: 48px;
  background: rgba(204,0,0,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.contact-detail__icon svg { width: 24px; height: 24px; }
.contact-detail__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.2rem;
}
.contact-detail__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}
.contact-detail__value a { color: var(--dark); transition: color var(--transition); }
.contact-detail__value a:hover { color: var(--red); }
.map-placeholder {
  margin-top: 2rem;
  background: var(--gray-100);
  border-radius: 10px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--gray-400);
  font-size: 0.9rem;
  border: 2px dashed var(--gray-200);
}
.map-placeholder svg { width: 32px; height: 32px; }

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.form-sub {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.form-label span { color: var(--red); }
.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,0,0,0.10);
}
textarea.form-control {
  resize: vertical;
  min-height: 130px;
}
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23999' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-honeypot { display: none; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-success {
  display: none;
  background: #dcfce7;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: #166534;
  font-size: 0.92rem;
  font-weight: 600;
  margin-top: 1rem;
  align-items: center;
  gap: 0.5rem;
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }
.form-success.show { display: flex; }

/* ============================================================
   OVER ONS STATS
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.stat-box {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.stat-box__number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-box__label {
  font-size: 0.88rem;
  color: var(--gray-600);
  font-weight: 600;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-red { color: var(--red); }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
.reveal {
  opacity: 1;
  transform: translateY(0);
}
.divider {
  width: 48px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}
.divider--center { margin: 1rem auto 1.5rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .diensten-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .trust-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__item:nth-child(2) { border-right: none; }
  .trust-bar__item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); border-top: 1px solid rgba(255,255,255,0.08); }
  .trust-bar__item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); border-right: none; }
  .over-intro { grid-template-columns: 1fr; gap: 3rem; }
  .dienst-detail { grid-template-columns: 1fr; gap: 2.5rem; }
  .dienst-detail--reverse .dienst-detail__img { order: 0; }
  .dienst-detail--reverse .dienst-detail__text { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .mobile-menu__trigger { display: flex; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .diensten-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .waarden-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .cta-band__btns { flex-direction: column; align-items: center; }
  .certs__inner { gap: 1.5rem 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar__inner { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .trust-bar__inner { grid-template-columns: 1fr; }
  .trust-bar__item { border-right: none; border-top: 1px solid rgba(255,255,255,0.08); }
  .trust-bar__item:first-child { border-top: none; }
  .contact-form-wrap { padding: 1.75rem 1.25rem; }
}
