@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --antraciet:   #1e1e1e;
  --antraciet-2: #2a2a2a;
  --antraciet-3: #444444;
  --tekst:       #333333;
  --tekst-licht: #666666;
  --lichtgrijs:  #f5f5f5;
  --rand:        #e4e4e4;
  --wit:         #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--tekst);
  line-height: 1.6;
  background: #fff;
}

/* ── HEADER / NAV ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(20, 20, 20, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: padding 0.35s ease, box-shadow 0.35s ease;
}

header.scrolled {
  padding: 4px 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon { width: 52px; height: 40px; }

.logo-img {
  height: 100px;
  width: auto;
  transition: height 0.35s ease;
}

header.scrolled .logo-img { height: 58px; }

.logo-text {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.5px;
  line-height: 1.2;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
  letter-spacing: 0.2px;
}

nav a:hover { color: #fff; }

nav a.actief {
  color: #fff;
  font-weight: 600;
}

nav a.actief::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
}

.tel-knop {
  background: rgba(255,255,255,0.1) !important;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.2px;
}

.tel-knop:hover {
  background: rgba(255,255,255,0.18) !important;
  border-color: rgba(255,255,255,0.5);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.72) 0%,
      rgba(0,0,0,0.48) 50%,
      rgba(0,0,0,0.72) 100%),
    url('images/IMG_4973.jpeg') center 35% / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  flex-direction: column;
}

.hero-label {
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 6px 18px;
  display: inline-block;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero h1 span { color: rgba(255,255,255,0.75); }

.hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-knoppen {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.knop-blauw {
  display: inline-block;
  background: var(--antraciet);
  color: #fff;
  padding: 14px 34px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.2px;
}

.knop-blauw:hover {
  background: var(--antraciet-3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.knop-omlijnd {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.9);
  padding: 13px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
  border: 1.5px solid rgba(255,255,255,0.35);
}

.knop-omlijnd:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-scroll-lijn {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPuls 2.2s ease-in-out infinite;
}

@keyframes scrollPuls {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.7; }
}

/* ── SECTIES ALGEMEEN ── */
section { padding: 96px 24px; }

.container {
  max-width: 1140px;
  margin: 0 auto;
}

.sectie-titel {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--antraciet);
  text-align: center;
  margin-bottom: 0;
  letter-spacing: -0.5px;
}

.sectie-titel::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--antraciet);
  margin: 14px auto 0;
  border-radius: 2px;
}

.sectie-sub {
  text-align: center;
  color: var(--tekst-licht);
  font-size: 1.05rem;
  margin-bottom: 56px;
  margin-top: 24px;
  line-height: 1.7;
}

.scheidingslijn {
  width: 48px;
  height: 3px;
  background: var(--antraciet);
  margin: 14px auto 24px;
  border-radius: 2px;
}

/* ── WAT DOEN WIJ ── */
.wat-doen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.foto-card {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--lichtgrijs);
}

.foto-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.foto-card:hover img { transform: scale(1.04); }

.wat-tekst {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  color: var(--tekst-licht);
  font-size: 1rem;
  line-height: 1.8;
}

.wat-tekst p + p { margin-top: 10px; }

/* ── DIENSTEN KAARTEN ── */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}

.dienst-kaart {
  border: 1.5px solid var(--rand);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}

.dienst-kaart:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.dienst-kaart.uitgelicht {
  border: 2px solid var(--antraciet);
  box-shadow: 0 4px 28px rgba(0,0,0,0.12);
}

.dienst-kaart.uitgelicht:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}

.badge-populair {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--antraciet);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  z-index: 2;
}

.dienst-foto {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--lichtgrijs);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dienst-foto svg { opacity: 0.15; }

.dienst-body { padding: 28px 22px 32px; }

.dienst-naam {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--antraciet);
  margin-bottom: 18px;
  letter-spacing: -0.2px;
}

.dienst-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.dienst-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--tekst-licht);
  font-size: 0.875rem;
  padding: 7px 0;
  border-bottom: 1px solid #f0f0f0;
  line-height: 1.4;
}

.dienst-features li:last-child { border-bottom: none; }

.dienst-features li::before {
  content: '✓';
  color: var(--antraciet);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.dienst-prijs {
  font-size: 2rem;
  font-weight: 900;
  color: var(--antraciet);
  letter-spacing: -1px;
  line-height: 1;
}

.dienst-prijs-sub {
  font-size: 0.8rem;
  color: #aaa;
  font-weight: 400;
  margin-top: 4px;
  margin-bottom: 18px;
}

.dienst-boek {
  display: inline-block;
  background: var(--antraciet);
  color: #fff;
  padding: 11px 28px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.dienst-boek:hover {
  background: var(--antraciet-3);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--antraciet);
  text-align: center;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-banner p {
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.cta-banner .knop-blauw {
  background: #fff;
  color: var(--antraciet);
}

.cta-banner .knop-blauw:hover {
  background: #eee;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ── WAAROM ── */
.waarom-sectie { background: var(--lichtgrijs); }

.waarom-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.waarom-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--antraciet-3);
  margin-bottom: 16px;
  display: block;
}

.waarom-titel {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--antraciet);
  line-height: 1.08;
  letter-spacing: -1px;
}

.voordelen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.voordeel {
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  border: 1.5px solid var(--rand);
  transition: box-shadow 0.25s, transform 0.25s;
}

.voordeel:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

.voordeel-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: block;
}

.voordeel h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--antraciet);
  margin-bottom: 8px;
}

.voordeel p {
  font-size: 0.85rem;
  color: var(--tekst-licht);
  line-height: 1.65;
  text-align: left;
}

/* ── REVIEWS ── */
.reviews-sectie { background: #fff; }

.ster-rating {
  color: #c8a84b;
  font-size: 0.95rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
  display: block;
}

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

.review-kaart {
  background: #fff;
  border: 1.5px solid var(--rand);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}

.review-kaart:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.09);
}

.review-tekst {
  font-style: italic;
  color: #555;
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.review-persoon {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lichtgrijs);
  border: 1.5px solid var(--rand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.review-naam {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--antraciet);
}

/* ── SERVICES PAGINA ── */
.services-hero {
  padding-top: 140px;
  padding-bottom: 16px;
  text-align: center;
  background: #fff;
}

.scroll-pijl {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  margin-bottom: 8px;
}

.scroll-pijl svg {
  width: 28px;
  height: 28px;
  stroke: var(--antraciet);
  opacity: 0.4;
  animation: pijlBounce 1.8s ease-in-out infinite;
}

@keyframes pijlBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

.service-rij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--rand);
}

.service-rij:last-child { border-bottom: none; }

.service-rij.omgekeerd { direction: rtl; }
.service-rij.omgekeerd > * { direction: ltr; }

.service-afbeelding {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--lichtgrijs);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-afbeelding img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.service-content h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--antraciet);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.service-content p {
  color: var(--tekst-licht);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* ── CONTACT PAGINA ── */
.contact-hero {
  padding: 140px 24px 96px;
  background: #fff;
}

.contact-kaarten {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-kaart {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  border: 1.5px solid var(--rand);
  border-radius: 16px;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  gap: 6px;
}

.contact-kaart:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: var(--antraciet);
}

.contact-kaart-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.contact-kaart-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tekst-licht);
}

.contact-kaart-waarde {
  font-size: 1rem;
  font-weight: 700;
  color: var(--antraciet);
}

.contact-kaart-sub {
  font-size: 0.75rem;
  color: var(--tekst-licht);
  margin-top: 2px;
}

.contact-kaart-adres {
  cursor: default;
}

/* ── FOOTER ── */
footer {
  background: var(--antraciet);
  color: rgba(255,255,255,0.4);
  padding: 72px 24px 32px;
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  max-width: 1140px;
  margin: 0 auto 56px;
}

.footer-merk .logo {
  margin-bottom: 18px;
  display: inline-flex;
}

.footer-beschrijving {
  color: rgba(255,255,255,0.38);
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 270px;
}

.footer-koptitel {
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

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

.footer-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  margin-bottom: 12px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item a:hover { color: #fff; }

.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ── CREDIT BAR ── */
.credit-bar {
  background: #0a0b0d;
  padding: 14px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: default;
  border-top: 1px solid rgba(255,255,255,0.05);
  transition: background 0.5s;
}

.credit-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  transition: left 0.7s ease;
  pointer-events: none;
}

.credit-bar:hover { background: #111318; }
.credit-bar:hover::before { left: 160%; }

.credit-bar-tekst {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  position: relative;
  z-index: 2;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.4s;
}

.credit-bar:hover .credit-bar-tekst { color: rgba(255,255,255,0.5); }

.credit-bar-tekst::before {
  content: '⚡';
  font-size: 0.7rem;
  opacity: 0.5;
}

.credit-bar-tekst a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.2s;
}

.credit-bar-tekst a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.5);
  transition: width 0.25s ease;
}

.credit-bar-tekst a:hover { color: #fff; }
.credit-bar-tekst a:hover::after { width: 100%; }


/* ── HAMBURGER MOBIEL ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .diensten-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid  { grid-template-columns: 1fr 1fr; }
  .waarom-grid   { gap: 48px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  header { padding: 4px 20px; }

  .hamburger { display: flex; }

  nav {
    display: none;
    position: fixed;
    top: 65px; left: 0; right: 0;
    background: #141414;
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.07);
  }

  nav.open { display: flex; }

  .tel-knop { display: none; }

  .wat-doen-grid    { grid-template-columns: 1fr; }
  .diensten-grid    { grid-template-columns: 1fr; }
  .reviews-grid     { grid-template-columns: 1fr; }
  .voordelen-grid   { grid-template-columns: 1fr; }
  .waarom-grid      { grid-template-columns: 1fr; }
  .contact-kaarten  { grid-template-columns: 1fr; max-width: 400px; }
  .service-rij      { grid-template-columns: 1fr; }
  .service-rij.omgekeerd { direction: ltr; }
  .footer-grid      { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom    { flex-direction: column; text-align: center; }

  .hero h1        { font-size: 2.5rem; }
  .hero-scroll    { display: none; }
  .hero-knoppen   { flex-direction: column; align-items: center; }
}
