*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; }

:root {
  --orange: #FF4D00;
  --orange-dim: #CC3D00;
  --bg: #080808;
  --bg2: #0E0E0E;
  --white: #FFFFFF;
  --grey: #A0A0A0;
  --grid: rgba(255,255,255,0.03);
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

html {
  scroll-behavior: smooth;
}

/* ===== LOADER ===== */
#loader {
  position: fixed;
  inset: 0;
  background: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-icon {
  width: 120px;
  height: 120px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ===== CUSTOM CURSOR ===== */
* { cursor: none !important; }

.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  top: 0; left: 0;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,77,0,0.7);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 0; left: 0;
}

.cursor-line-h, .cursor-line-v {
  position: absolute;
  background: rgba(255,77,0,0.4);
  transform: translate(-50%, -50%);
  top: 0; left: 0;
}

.cursor-line-h { width: 16px; height: 1px; }
.cursor-line-v { width: 1px; height: 16px; }

.cursor.hovering .cursor-ring {
  width: 52px;
  height: 52px;
  opacity: 0.5;
}

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

/* ===== BLOB CANVAS ===== */
#blobCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ===== NOISE TEXTURE OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 1000;
}

/* ===== LANG TOGGLE ===== */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  overflow: hidden;
}

.lang-toggle button {
  padding: 5px 12px;
  background: none;
  border: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s;
}

.lang-toggle button.active {
  background: var(--orange);
  color: #fff;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: visible;
  width: 100%;
}

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

.nav-logo svg { width: 32px; height: 32px; }

.nav-logo-text {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  color: var(--white);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--orange); }


/* ===== CROSSHAIR DECORATION ===== */
.crosshair {
  position: absolute;
  width: 24px;
  height: 24px;
  opacity: 0.3;
}

.crosshair::before,
.crosshair::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.6);
}

.crosshair::before {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
}

.crosshair::after {
  height: 1px;
  width: 100%;
  top: 50%;
  left: 0;
}

.corner-coords {
  position: absolute;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.2);
}

.dot-grid {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(5, 6px);
  gap: 6px;
  opacity: 0.15;
}

.dot-grid span {
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  display: block;
}

/* ===== HERO ===== */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255,77,0,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,77,0,0.03) 0%, transparent 60%),
    #080808;
}

.smoke {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.smoke-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.smoke-blob-1 {
  width: 60%;
  height: 55%;
  background: radial-gradient(ellipse, rgba(35,35,35,0.9) 0%, transparent 70%);
  top: 5%;
  left: 20%;
  animation: driftA 18s ease-in-out infinite alternate;
}

.smoke-blob-2 {
  width: 70%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(25,25,25,0.7) 0%, transparent 70%);
  top: 30%;
  left: -10%;
  animation: driftB 22s ease-in-out infinite alternate;
}

.smoke-blob-3 {
  width: 55%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(25,25,25,0.7) 0%, transparent 70%);
  top: 40%;
  right: -5%;
  animation: driftC 26s ease-in-out infinite alternate;
}

@keyframes driftA {
  0%   { transform: translate(0%, 0%) scale(1); }
  33%  { transform: translate(8%, 12%) scale(1.08); }
  66%  { transform: translate(-6%, 6%) scale(0.95); }
  100% { transform: translate(4%, -10%) scale(1.05); }
}

@keyframes driftB {
  0%   { transform: translate(0%, 0%) scale(1); }
  33%  { transform: translate(12%, -8%) scale(1.1); }
  66%  { transform: translate(6%, 10%) scale(0.92); }
  100% { transform: translate(-8%, -4%) scale(1.06); }
}

@keyframes driftC {
  0%   { transform: translate(0%, 0%) scale(1); }
  33%  { transform: translate(-10%, 6%) scale(1.05); }
  66%  { transform: translate(4%, -12%) scale(1.12); }
  100% { transform: translate(-6%, 8%) scale(0.94); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(60px, 10vw, 120px);
  line-height: 0.9;
  letter-spacing: 4px;
  color: var(--white);
  text-shadow: 0 0 80px rgba(255,77,0,0.15);
  animation: fadeUp 0.9s ease both;
}

.hero-subtitle {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(22px, 3.5vw, 42px);
  letter-spacing: 8px;
  color: var(--orange);
  margin-top: 8px;
  animation: fadeUp 0.9s 0.15s ease both;
}

.hero-cta {
  margin-top: 48px;
  animation: fadeUp 0.9s 0.3s ease both;
}

.btn-primary {
  display: inline-block;
  padding: 14px 48px;
  border: 2px solid var(--orange);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Bebas Neue', cursive;
  font-size: 18px;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease, color 0.3s, background 0.3s;
  cursor: pointer;
  background: none;
  z-index: 0;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg,
    transparent,
    transparent 30%,
    rgba(255,77,0,0.4)
  );
  transform: rotate(-45deg);
  transition: all 0.5s ease;
  opacity: 0;
  z-index: 0;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(255,77,0,0.6);
  color: #fff;
  background: var(--orange);
}

.btn-primary:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 48px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Bebas Neue', cursive;
  font-size: 18px;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid var(--orange);
  border-radius: 8px;
  transition: background 0.2s;
}

.btn-secondary:hover { background: var(--orange-dim); }

.scroll-arrow {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounceDown 2s infinite;
  z-index: 2;
}

.scroll-arrow span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
}

.scroll-arrow svg { opacity: 0.5; }

.hero-coords-tl { top: 80px; left: 24px; }
.hero-coords-br { bottom: 80px; right: 24px; }
.hero-dot-grid { bottom: 120px; right: 40px; grid-template-columns: repeat(5, 6px); }
.hero-dot-grid2 { top: 120px; left: 40px; grid-template-columns: repeat(3, 6px); }

/* ===== SECTIONS SHARED ===== */
section {
  position: relative;
  background: transparent !important;
  width: 100%;
  overflow-x: clip;
}

.section-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 40px;
  position: relative;
  z-index: 5;
  box-sizing: border-box;
}

.section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(48px, 7vw, 80px);
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 24px;
}

.section-title .accent { color: var(--orange); }

/* ===== HOE HET WERKT ===== */
#hoe-het-werkt .section-inner { display: block; }

.workflow-header { margin-bottom: 64px; }

.workflow-header p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
}

.workflow { display: flex; gap: 0; }

.workflow-steps {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wf-step {
  position: relative;
  padding: 48px 0 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: background 0.3s;
}

.wf-step:last-child { border-bottom: none; }

.wf-step:hover { background: rgba(255,77,0,0.02); }

.wf-bg-num {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', cursive;
  font-size: 220px;
  line-height: 1;
  color: var(--orange);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.3s;
}

.wf-step:hover .wf-bg-num { opacity: 0.1; }

.wf-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 10px;
}

.wf-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.wf-content h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 42px;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--white);
}

.wf-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ===== DIENSTEN ===== */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.dienst-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
  overflow: hidden;
}

.dienst-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.dienst-card:hover::before { transform: scaleX(1); }
.dienst-card:hover { border-color: rgba(255,77,0,0.3); transform: translateY(-4px); }

.dienst-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  color: var(--orange);
}

.dienst-card h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 36px;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 16px;
}

.dienst-card h2 .accent { color: var(--orange); }

.dienst-divider {
  width: 40px;
  height: 2px;
  background: var(--orange);
  margin-bottom: 20px;
}

.dienst-card > p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

.dienst-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}

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

.dienst-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.dienst-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

/* ===== WAAROM BS ===== */
#over-ons .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.waarom-intro p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 12px;
}

.waarom-reasons {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.reason {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.reason:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.reason-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 36px;
  color: var(--orange);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}

.reason-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.reason-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-category {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  padding: 32px 0 8px 0;
  opacity: 0.8;
}

.faq-category:first-child { padding-top: 0; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  text-align: left;
  padding: 24px 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--orange); }

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-question { color: var(--orange); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }

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

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ===== CONTACT ===== */
#contact .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,77,0,0.4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

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

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

.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--white);
  padding: 14px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
}

.form-group select option { background: #1a1a1a; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== FOOTER ===== */
footer {
  background: #050505;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 48px;
  border-top: 1px solid rgba(255,255,255,0.05);
  box-sizing: border-box;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-links { display: flex; gap: 24px; }

.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--orange); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== MOBILE NAV ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

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

/* ===== HIDE CURSOR ON TOUCH DEVICES ===== */
@media (hover: none) and (pointer: coarse) {
  .cursor { display: none; }
  * { cursor: auto !important; }
}

/* ===== RESPONSIVE / MOBILE ===== */
@media (max-width: 900px) {

  /* Nav */
  nav { padding: 0 16px; overflow: visible; }
  .nav-logo { margin-left: 0; max-width: 50vw; }
  .nav-logo img { height: 80px !important; width: auto; max-width: 100%; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Sections */
  .section-inner { padding: 72px 16px; }

  /* Grids */
  #over-ons .section-inner,
  #contact .section-inner { grid-template-columns: 1fr; gap: 40px; }
  .diensten-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Hoe het werkt — grote nummer verbergen zodat het niet overflowt */
  .wf-bg-num { display: none; }
  .wf-step { padding: 36px 0; }

  /* Over ons — 1 kolom */
  #over-ons .section-inner { display: flex; flex-direction: column; gap: 40px; }

  /* Decoratieve elementen die buiten scherm vallen */
  .corner-coords { display: none; }
  .hero-dot-grid, .hero-dot-grid2 { display: none; }
  .crosshair { display: none; }

  /* Hero coördinaten verbergen */
  .hero-coords-tl, .hero-coords-br { display: none; }

  /* Footer mobiel */
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 16px;
  }
  .footer-logo img { height: 80px !important; max-width: 50vw; }
  .footer-copy { text-align: left; }
  .footer-links { justify-content: flex-start; }

  /* Dienst card iets minder padding */
  .dienst-card { padding: 32px 24px; }
}
