/* ─────────────────────────────────────────
   ZOGEMAAKT – Reparatie & 3D Print Service
   style.css
───────────────────────────────────────── */

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

:root {
  --blue: #4aa8d8;
  --blue-bright: #6dc8f5;
  --blue-dim: #1a4d6e;
  --dark: #080c10;
  --dark2: #0d1117;
  --dark3: #111820;
  --steel: #8ea8b8;
  --steel-light: #c0d4e0;
  --white: #e8f0f5;
  --glow: 0 0 20px rgba(74,168,216,0.5), 0 0 40px rgba(74,168,216,0.2);
  --glow-sm: 0 0 10px rgba(74,168,216,0.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Exo 2', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 80px;
  background: rgba(8,12,16,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74,168,216,0.12);
}

.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.3em;
  color: var(--white);
  text-decoration: none;
}

.nav-links {
  display: flex; gap: 36px; list-style: none;
}

.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.2s;
  box-shadow: var(--glow-sm);
}

.nav-links a:hover,
.nav-links a.active { color: var(--blue-bright); }
.nav-links a.active::after,
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-bright);
  border: 1px solid var(--blue);
  padding: 10px 22px;
  text-decoration: none;
  transition: all 0.25s;
}

.nav-cta:hover {
  background: var(--blue);
  color: var(--dark);
  box-shadow: var(--glow);
}

/* ─── HERO ─── */
#hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,12,16,0.3) 0%, rgba(8,12,16,0.15) 40%, rgba(8,12,16,0.5) 100%),
    url('../images/hero-bg.png') center center / cover no-repeat;
}

.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: transparent;
}

.hero-content {
  display: none;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.zg-logo {
  position: relative;
  width: 240px; height: 200px;
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
}

.zg-letters {
  font-family: 'Orbitron', sans-serif;
  font-size: 9rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #b0c8d8 0%, #e8f4ff 30%, #6dc8f5 55%, #3888b8 75%, #c0d8e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(74,168,216,0.7)) drop-shadow(0 4px 12px rgba(0,0,0,0.8));
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  from { filter: drop-shadow(0 0 16px rgba(74,168,216,0.5)) drop-shadow(0 4px 12px rgba(0,0,0,0.8)); }
  to   { filter: drop-shadow(0 0 32px rgba(74,168,216,0.9)) drop-shadow(0 0 60px rgba(74,168,216,0.3)) drop-shadow(0 4px 12px rgba(0,0,0,0.8)); }
}

.zg-logo::before {
  content: '';
  position: absolute;
  left: -60px; right: -60px;
  top: 50%; transform: translateY(-50%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--blue-bright), var(--blue), transparent);
  opacity: 0.5;
}

.hero-brand {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--white);
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(74,168,216,0.3);
  margin-bottom: 16px;
  animation: heroFadeIn 1.2s ease 0.2s both;
}

.hero-tagline {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  color: var(--blue);
  text-transform: uppercase;
  border-top: 1px solid var(--blue-dim);
  border-bottom: 1px solid var(--blue-dim);
  padding: 8px 24px;
  animation: heroFadeIn 1.2s ease 0.4s both;
}

/* ─── SERVICE BAR ─── */
.service-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  border-top: 1px solid rgba(74,168,216,0.2);
  background: rgba(8,12,16,0.9);
  backdrop-filter: blur(10px);
  z-index: 2;
}

.service-item {
  flex: 1;
  display: flex; align-items: center; gap: 14px;
  padding: 22px 28px;
  border-right: 1px solid rgba(74,168,216,0.12);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
}

.service-item:last-child { border-right: none; }
.service-item:hover { background: rgba(74,168,216,0.06); }

.service-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}

.service-icon svg { width: 100%; height: 100%; stroke: var(--blue); fill: none; stroke-width: 1.5; }

.service-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-light);
  line-height: 1.35;
}

/* ─── SECTION SHARED ─── */
.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
}

/* ─── SERVICES SECTION ─── */
#services {
  padding: 120px 64px;
  background: var(--dark2);
  position: relative;
}

#services::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-dim), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--dark3);
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, background 0.25s;
  cursor: pointer;
  border: 1px solid rgba(74,168,216,0.08);
}

.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-card:hover { background: rgba(15,25,38,0.95); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 52px; height: 52px;
  margin-bottom: 24px;
}

.card-icon svg { width: 100%; height: 100%; stroke: var(--blue); fill: none; stroke-width: 1.3; }

.card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.card-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--steel);
}

.card-link {
  display: inline-block;
  margin-top: 18px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s, letter-spacing 0.2s;
}

.card-link:hover {
  color: var(--blue-bright);
  letter-spacing: 0.18em;
}

/* ─── ABOUT ─── */
#about {
  padding: 120px 64px;
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text { flex: 1; }

.about-text p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-text p:first-of-type { color: var(--steel-light); }
.about-text p:last-of-type  { color: var(--steel); margin-bottom: 0; }

.about-stats {
  flex: 0 0 340px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}

.stat-box {
  background: var(--dark3);
  padding: 32px 24px;
  border: 1px solid rgba(74,168,216,0.08);
  text-align: center;
}

.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--blue-bright);
  display: block;
  margin-bottom: 6px;
}

.stat-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
}

/* ─── REVIEWS ─── */
#reviews {
  padding: 120px 64px;
  background: var(--dark2);
  position: relative;
}

#reviews::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-dim), transparent);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background: var(--dark3);
  padding: 36px 32px;
  border: 1px solid rgba(74,168,216,0.08);
}

.review-stars {
  color: var(--blue);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--steel-light);
  margin-bottom: 20px;
}

.review-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ─── CONTACT ─── */
#contact {
  padding: 120px 64px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-form {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 48px;
}

.form-row { display: flex; gap: 16px; }

input, textarea, select {
  width: 100%;
  background: var(--dark3);
  border: 1px solid rgba(74,168,216,0.2);
  color: var(--white);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.9rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue-dim);
}

input::placeholder, textarea::placeholder { color: var(--steel); }
textarea { resize: vertical; min-height: 130px; }

.btn-primary {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: transparent;
  color: var(--blue-bright);
  border: 1px solid var(--blue);
  padding: 16px 40px;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 8px;
  align-self: center;
}

.btn-primary:hover {
  background: var(--blue);
  color: var(--dark);
  box-shadow: var(--glow);
}

/* ─── MARKTPLAATS ─── */
#marktplaats {
  padding: 120px 64px;
  background: var(--dark);
  position: relative;
}

#marktplaats::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-dim), transparent);
}

.marktplaats-block {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  background: var(--dark3);
  border: 1px solid rgba(74,168,216,0.12);
  padding: 56px 56px;
  position: relative;
  overflow: hidden;
}

.marktplaats-block::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e97900, #ff6200, transparent);
}

.mp-left { flex: 1; }

.mp-icon {
  width: 48px; height: 48px;
  stroke: #e97900;
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 20px;
}

.mp-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.4;
}

.mp-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--steel);
  margin-bottom: 28px;
}

.mp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ff6200;
  border: 1px solid #e97900;
  padding: 14px 28px;
  transition: all 0.25s;
}

.mp-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

.mp-btn:hover {
  background: #e97900;
  color: var(--dark);
  box-shadow: 0 0 20px rgba(233,121,0,0.4);
}

.mp-right {
  flex: 0 0 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mp-badge {
  border: 1px solid rgba(233,121,0,0.3);
  padding: 32px 28px;
  text-align: center;
  background: rgba(233,121,0,0.05);
}

.mp-badge-label {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: #e97900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mp-badge-user {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 12px;
}

.mp-badge-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--steel);
  letter-spacing: 0.05em;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid rgba(74,168,216,0.1);
  padding: 32px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--dark);
}

.footer-brand {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--steel);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--steel);
  opacity: 0.5;
}

.footer-social {
  display: flex; gap: 14px; align-items: center;
}

.social-btn {
  display: flex; align-items: center; gap: 9px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--steel-light);
  border: 1px solid rgba(74,168,216,0.2);
  padding: 8px 16px;
  transition: all 0.22s;
}

.social-btn svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.social-btn.facebook:hover { color: #fff; border-color: #1877f2; background: rgba(24,119,242,0.15); box-shadow: 0 0 12px rgba(24,119,242,0.3); }
.social-btn.whatsapp:hover { color: #fff; border-color: #25d366; background: rgba(37,211,102,0.12); box-shadow: 0 0 12px rgba(37,211,102,0.3); }

/* ─── FLOATING SOCIAL ─── */
.social-float {
  position: fixed;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  display: flex; flex-direction: column; gap: 10px;
}

.social-float a {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(74,168,216,0.2);
  background: rgba(8,12,16,0.85);
  backdrop-filter: blur(8px);
  text-decoration: none;
  color: var(--steel-light);
  transition: all 0.22s;
}

.social-float a svg { width: 18px; height: 18px; fill: currentColor; }
.social-float a.facebook:hover { color: #1877f2; border-color: #1877f2; box-shadow: 0 0 14px rgba(24,119,242,0.4); }
.social-float a.whatsapp:hover { color: #25d366; border-color: #25d366; box-shadow: 0 0 14px rgba(37,211,102,0.4); }
.social-float a.marktplaats svg { stroke: currentColor; fill: none; stroke-width: 1.8; }
.social-float a.marktplaats:hover { color: #e97900; border-color: #e97900; box-shadow: 0 0 14px rgba(233,121,0,0.4); }

/* ─── SCANLINE ─── */
.scanline {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none; z-index: 999;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
}

/* ─────────────────────────────────────────
   RESPONSIVE – MOBIEL & TABLET
───────────────────────────────────────── */

/* Hamburger menu knop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── TABLET (max 1024px) ─── */
@media (max-width: 1024px) {
  nav { padding: 0 28px; }

  .nav-links { gap: 20px; }
  .nav-links a { font-size: 0.9rem; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid  { grid-template-columns: repeat(2, 1fr); }

  #about {
    flex-direction: column;
    gap: 48px;
    padding: 80px 40px;
  }

  .about-stats { flex: unset; width: 100%; }

  #services, #reviews, #marktplaats { padding: 80px 40px; }
  #contact { padding: 80px 40px; }

  .marktplaats-block { flex-direction: column; gap: 36px; padding: 40px; }
  .mp-right { width: 100%; }
  .mp-badge { padding: 24px; }
}

/* ─── MOBIEL (max 768px) ─── */
@media (max-width: 768px) {

  /* Navbar */
  nav {
    padding: 0 20px;
    height: 64px;
    position: fixed;
  }

  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(8,12,16,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(74,168,216,0.15);
    padding: 12px 0;
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(74,168,216,0.06);
  }

  .nav-links a::after { display: none; }

  /* Hero */
  #hero { 
	min-height: 300px;
	height: 368px;
	margin-top: 32px;
  }

  .hero-bg {
    background-position: center center;
    background-size: cover;
	height: 240px;
  }

  /* Service bar */
  .service-bar {
    flex-wrap: wrap;
  }
  
  .service-label {
	font-size: 0.85rem;
  }

  .service-item {
    flex: 0 0 50%;
    padding: 16px 18px;
    border-right: 1px solid rgba(74,168,216,0.12);
    border-bottom: 1px solid rgba(74,168,216,0.12);
  }

  .service-item:nth-child(2n) { border-right: none; }
  .service-item:nth-child(3),
  .service-item:nth-child(4) { border-bottom: none; }

  /* Sections */
  #services, #reviews, #marktplaats { padding: 60px 20px; }
  #contact  { padding: 60px 20px; }

  .section-title { font-size: 1.6rem; }
  .section-eyebrow { font-size: 0.8rem; }
  .section-header { margin-bottom: 40px; }

  /* Services grid */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .service-card { padding: 32px 24px; }

  /* About */
  #about {
    flex-direction: column;
    gap: 40px;
    padding: 60px 20px;
    max-width: 100%;
  }

  .about-stats {
    flex: unset;
    width: 100%;
  }

  .about-text p { font-size: 0.95rem; }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  /* Marktplaats */
  .marktplaats-block {
    flex-direction: column;
    gap: 28px;
    padding: 28px 20px;
    margin: 0;
  }

  .mp-right { width: 100%; }
  .mp-badge { padding: 20px; }
  .mp-title { font-size: 1.1rem; }

  /* Contact */
  .form-row { flex-direction: column; gap: 16px; }
  #contact { max-width: 100%; }

  /* Footer */
  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 28px 20px;
  }

  /* Floating social */
  .social-float {
    right: 12px;
  }

  .social-float a {
    width: 38px;
    height: 38px;
  }
}

/* ─── KLEINE MOBIEL (max 400px) ─── */
@media (max-width: 300px) {
  .section-title { font-size: 1.3rem; }
  .stat-num { font-size: 1.8rem; }
  .service-item { flex: 0 0 100%; border-right: none; }
  .hero-whatsapp { display: none !important; }
  .hero-bg { height: 260px; }
}

/* ─── WHATSAPP HERO KNOP ─── */
.hero-whatsapp {
  position: absolute;
  bottom: 100px;
  right: 40px;
  z-index: 3;
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
  animation: heroFadeIn 1.2s ease 0.6s both;
}

.hero-wa-btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 1rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  text-decoration: none; color: #fff;
  background: rgba(37,211,102,0.15);
  border: 1px solid #25d366;
  padding: 16px 36px;
  transition: all 0.25s;
}

.hero-wa-btn:after { content: "Direct Whatsappen"; }

.hero-wa-btn svg { width: 22px; height: 22px; fill: #25d366; flex-shrink: 0; }
.hero-wa-btn:hover { background: #25d366; color: var(--dark); box-shadow: 0 0 24px rgba(37,211,102,0.5); }
.hero-wa-sub { font-size: 0.8rem; color: var(--steel); letter-spacing: 0.1em; }

/* ─── PRIJSLIJST ─── */
#prijzen {
  padding: 120px 64px;
  background: var(--dark2);
  position: relative;
}

#prijzen::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-dim), transparent);
}

.prijzen-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; max-width: 1200px; margin: 0 auto;
}

.prijs-kategorie {
  background: var(--dark3);
  padding: 36px 28px;
  border: 1px solid rgba(74,168,216,0.08);
}

.prijs-cat-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--blue-bright);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(74,168,216,0.15);
}

.prijs-cat-title svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 1.5; }

.prijs-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.9rem; color: var(--steel-light);
}

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

.prijs {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  color: var(--blue); white-space: nowrap;
}

.prijzen-note {
  text-align: center; margin-top: 28px;
  font-size: 0.82rem; color: var(--steel);
  font-style: italic; max-width: 1200px; margin-left: auto; margin-right: auto;
}

/* ─── GALLERIJ ─── */
#gallerij {
  padding: 120px 64px;
  background: var(--dark);
  position: relative;
}

#gallerij::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-dim), transparent);
}

.gallerij-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; max-width: 1200px; margin: 0 auto;
}

.gallerij-card {
  background: var(--dark3);
  border: 1px solid rgba(74,168,216,0.08);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s;
}

.gallerij-card:hover { transform: translateY(-4px); }

.gallerij-placeholder {
  height: 200px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  background: linear-gradient(135deg, rgba(20,40,60,0.8), rgba(10,20,35,0.9));
  color: var(--steel);
  font-size: 0.85rem; text-align: center; padding: 20px;
}

.gallerij-placeholder svg { width: 40px; height: 40px; stroke: var(--blue-dim); fill: none; stroke-width: 1.3; }

.gallerij-label {
  padding: 12px 16px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--steel);
}

/* ─── OPENINGSTIJDEN & GOOGLE ─── */
#openingstijden {
  padding: 120px 64px;
  background: var(--dark2);
  position: relative;
}

#openingstijden::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-dim), transparent);
}

.open-google-wrap {
  display: flex; gap: 80px;
  max-width: 1100px; margin: 0 auto;
}

.open-block, .google-block { flex: 1; }

.tijden-list { display: flex; flex-direction: column; gap: 2px; }

.tijd-row {
  display: flex; justify-content: space-between;
  padding: 14px 20px;
  background: var(--dark3);
  border: 1px solid rgba(74,168,216,0.06);
  font-size: 0.95rem; color: var(--steel-light);
}

.tijd-row.dimmed { opacity: 0.4; }

.tijd {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700; color: var(--blue);
  letter-spacing: 0.05em;
}

.google-rating {
  display: flex; align-items: center; gap: 20px;
  background: var(--dark3);
  border: 1px solid rgba(74,168,216,0.08);
  padding: 28px 24px; margin-bottom: 20px;
}

.google-score {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem; font-weight: 700;
  color: var(--white); line-height: 1;
}

.google-stars { color: #fbbc05; font-size: 1.3rem; letter-spacing: 3px; margin-bottom: 4px; }
.google-sub { font-size: 0.82rem; color: var(--steel); }

.google-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  text-decoration: none; color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 14px 24px; transition: all 0.25s;
}

.google-btn:hover { border-color: #4285F4; color: #4285F4; box-shadow: 0 0 14px rgba(66,133,244,0.3); }

/* ─── FAQ ─── */
#faq {
  padding: 120px 64px;
  background: var(--dark);
  position: relative;
}

#faq::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-dim), transparent);
}

.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }

.faq-item { background: var(--dark3); border: 1px solid rgba(74,168,216,0.08); }

.faq-vraag {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.05em; text-align: left;
  color: var(--white); background: none; border: none;
  cursor: pointer; transition: color 0.2s;
}

.faq-vraag:hover { color: var(--blue-bright); }
.faq-vraag.open { color: var(--blue-bright); border-bottom: 1px solid rgba(74,168,216,0.1); }

.faq-icon {
  font-size: 1.4rem; font-weight: 300;
  color: var(--blue); transition: transform 0.3s; flex-shrink: 0;
}

.faq-vraag.open .faq-icon { transform: rotate(45deg); }

.faq-antwoord {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-antwoord.open { max-height: 200px; }

.faq-antwoord p {
  padding: 20px 28px;
  font-size: 0.95rem; font-weight: 300;
  line-height: 1.8; color: var(--steel-light);
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 18px 48px;
  background: rgba(8,12,16,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(74,168,216,0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show { transform: translateY(0); }

.cookie-text {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.88rem; color: var(--steel-light); line-height: 1.6;
}

.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

.cookie-accept {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--blue); color: var(--dark);
  border: none; padding: 10px 24px; cursor: pointer;
  transition: all 0.2s;
}

.cookie-accept:hover { background: var(--blue-bright); }

.cookie-decline {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: transparent; color: var(--steel);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 24px; cursor: pointer; transition: all 0.2s;
}

.cookie-decline:hover { border-color: var(--steel); color: var(--white); }

/* ─── RESPONSIVE EXTRA ─── */
@media (max-width: 1024px) {
  .prijzen-grid   { grid-template-columns: repeat(2, 1fr); }
  .gallerij-grid  { grid-template-columns: repeat(2, 1fr); }
  .open-google-wrap { flex-direction: column; gap: 48px; }
  #prijzen, #gallerij, #openingstijden, #faq { padding: 80px 40px; }
}

@media (max-width: 768px) {
  .prijzen-grid   { grid-template-columns: 1fr; }
  .gallerij-grid  { grid-template-columns: repeat(2, 1fr); }
  #prijzen, #gallerij, #openingstijden, #faq { padding: 60px 20px; }
  .cookie-banner  { flex-direction: column; align-items: flex-start; padding: 20px; }
  .hero-wa-btn    { font-size: 0.9rem; padding: 14px 24px; }
  .hero-whatsapp  { right: 16px; bottom: 150px; }
  .hero-wa-btn:after { content: ""; margin: -7px; }
}

@media (max-width: 400px) {
  .gallerij-grid { grid-template-columns: 1fr; }
}

/* ─── PRELOADER ─── */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}

.preloader-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 5rem; font-weight: 900;
  background: linear-gradient(135deg, #b0c8d8 0%, #e8f4ff 30%, #6dc8f5 55%, #3888b8 75%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoGlow 1.5s ease-in-out infinite alternate;
}

.preloader-bar {
  width: 200px; height: 2px;
  background: rgba(74,168,216,0.2);
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--blue), var(--blue-bright), transparent);
  animation: preloaderFill 1.8s ease forwards;
}

@keyframes preloaderFill {
  from { width: 0; }
  to   { width: 100%; }
}

.preloader-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.5em; color: var(--steel);
  text-transform: uppercase;
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ─── GARANTIE BADGES ─── */
#badges {
  background: var(--dark3);
  border-top: 1px solid rgba(74,168,216,0.1);
  border-bottom: 1px solid rgba(74,168,216,0.1);
  padding: 28px 64px;
}

.badges-wrap {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 12px 40px;
  max-width: 1200px; margin: 0 auto;
}

.badge-item {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--steel-light);
}

.badge-item svg {
  width: 20px; height: 20px;
  stroke: var(--blue); fill: none; stroke-width: 1.8;
  flex-shrink: 0;
}

/* ─── MERKEN BANNER ─── */
#merken {
  background: var(--dark);
  padding: 36px 64px;
  border-bottom: 1px solid rgba(74,168,216,0.08);
}

.merken-wrap { max-width: 1200px; margin: 0 auto; text-align: center; }

.merken-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--steel); margin-bottom: 16px;
}

.merken-lijst {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 8px 4px;
}

.merk {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.1em; color: var(--steel-light);
  opacity: 0.7; transition: opacity 0.2s, color 0.2s;
  padding: 0 8px;
}

.merk:hover { opacity: 1; color: var(--blue-bright); }
.merk-sep { color: var(--blue-dim); font-size: 1rem; }

/* ─── ABOUT STATS 3 KOLOMMEN ─── */
.about-stats {
  flex: 0 0 360px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}

/* ─── RESPONSIVE EXTRA 2 ─── */
@media (max-width: 768px) {
  #badges { padding: 24px 20px; }
  .badges-wrap { gap: 12px 20px; }
  .badge-item { font-size: 0.8rem; }
  #merken { padding: 28px 20px; }
  .merk { font-size: 0.75rem; }
  .preloader-logo { font-size: 3.5rem; }
}
