/* Dutch Detail Works - centrale styling */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; width: 100%; max-width: 100%; overflow-x: hidden; background: #0a0a0a; }
body {
  margin-top: 135px;
  min-height: 100svh;
  font-family: "Montserrat", Arial, sans-serif;
  color: white;
  background: linear-gradient(180deg, #0a0a0a 0%, #111 40%, #0a0a0a 100%);
  touch-action: pan-y;
}
img { max-width: 100%; display: block; }
button, input, textarea, select { font-family: inherit; max-width: 100%; }
h1,h2,h3,h4 { font-weight: 800; letter-spacing: 1px; }
p, li { font-weight: 400; }

/* NAVBAR */
nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 60px);
  max-width: 1280px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 45px;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,215,0,0.35);
  border-top: none;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.55), 0 0 18px rgba(255,215,0,0.06);
  z-index: 1000;
  overflow: hidden;
}
.nav-left { display: flex; align-items: center; gap: 18px; }
.logo { height: 72px; }
.nav-text h1 { margin: 0; font-size: 20px; color: white; letter-spacing: 1.5px; }
.nav-text p { margin: 0; font-size: 12px; color: #ccc; }
.nav-links { display: flex; align-items: center; gap: 42px; margin-right: 20px; }
.nav-links a {
  position: relative;
  color: gold;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 12px 0;
  transition: color .25s ease, text-shadow .25s ease;
}
.nav-links a:hover, .nav-links a.active-link { color: #fff3a0; text-shadow: 0 0 12px rgba(255,215,0,.45); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: gold;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a.active-link::after { width: 100%; }

/* ALGEMEEN */
.section { max-width: 1200px; margin: auto; padding: 45px 20px; }
.page-top { padding-top: 70px; }
.btn {
  background: gold;
  color: black;
  padding: 13px 22px;
  border: none;
  border-radius: 10px;
  margin-top: 20px;
  cursor: pointer;
  font-weight: 700;
  transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 0 18px rgba(255,215,0,.25); }
.fade { opacity: 0; transform: translateY(50px); transition: .8s ease; }
.fade.show { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .3s; }
.delay-3 { transition-delay: .5s; }

/* HERO GALLERY */
.hero-gallery {
  display: flex;
  gap: 15px;
  max-width: 1400px;
  width: calc(100% - 120px);
  margin: 0 auto;
  padding: 25px 30px;
  background: rgba(0,0,0,.45);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}
.hero-gallery img {
  flex: 1;
  min-width: 0;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #333;
  box-shadow: 0 0 20px rgba(0,0,0,.6);
  transition: .3s;
  z-index: 1;
}
.hero-gallery img:hover { transform: scale(1.03); border-color: gold; }
.hero-gallery::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #0a0a0a);
  pointer-events: none;
  z-index: 2;
  border-radius: 0 0 22px 22px;
}
.hero-fade { transition: opacity .6s ease; }

/* HERO */
.hero-split {
  max-width: 1400px;
  margin: 0 auto;
  padding: 85px 70px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}
.hero-text { max-width: 620px; }
.hero-title { font-size: 42px; line-height: 1.15; letter-spacing: 3px; color: white; }
.hero-title span { display: block; color: gold; margin-top: 5px; }
.hero-sub { max-width: 620px; font-size: 18px; line-height: 1.6; color: #ddd; margin-top: 10px; }
.hero-trust { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; color: #bbb; font-size: 14px; line-height: 1.6; }
.hero-image { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; width: 100%; border-radius: 20px; overflow: hidden; }
.hero-image img { width: 100%; height: 300px; object-fit: cover; border-radius: 18px; border: 2px solid gold; box-shadow: 0 10px 30px rgba(0,0,0,.6); transition: .3s; }
.hero-image img:hover { transform: scale(1.03); }

/* SERVICE */
.service-strip {
  max-width: 1400px;
  margin: 35px auto 75px;
  padding: 0 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 2;
}
.service-item, .trust-box, .mini-box {
  background: linear-gradient(145deg, #111, #080808);
  border: 1px solid rgba(255,215,0,.28);
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
  transition: .3s ease;
}
.service-item:hover, .mini-box:hover, .trust-box:hover { transform: translateY(-5px); border-color: gold; box-shadow: 0 0 25px rgba(255,215,0,.18); }
.service-item h3, .mini-box h4 { color: gold; margin: 0 0 15px 0; font-size: 18px; }
.service-item p, .trust-box p { color: #ccc; margin: 0; line-height: 1.5; font-size: 14px; }

/* SECTION INTRO */
.section-intro { text-align: center; max-width: 700px; margin: 0 auto 45px; }
.section-kicker { display: inline-block; color: gold; font-size: 12px; letter-spacing: 3px; margin-bottom: 12px; font-weight: 800; }
.section-intro h2 { font-size: 38px; margin: 0 0 15px; color: white; }
.section-intro p { color: #cfcfcf; line-height: 1.6; margin: 0; }
.section-intro::after { content:""; display:block; width:90px; height:3px; background:gold; margin:25px auto 0; border-radius:99px; }

/* OVER */
.over-box {
  background: #111;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid rgba(255,215,0,.25);
  line-height: 1.8;
  box-shadow: 0 0 20px rgba(0,0,0,.6);
}
.over-box p { color: #d0d0d0; }

/* OWNER */
.owner-card {
  display: grid;
  grid-template-columns: 1.6fr .8fr;
  gap: 30px;
  align-items: center;
  background: linear-gradient(145deg, #111, #070707);
  border: 1px solid rgba(255,215,0,.35);
  border-radius: 24px;
  padding: 42px;
  box-shadow: 0 14px 40px rgba(0,0,0,.5);
}
.owner-text h2 { color: white; font-size: 34px; margin: 10px 0 18px; }
.owner-text p { color: #d0d0d0; line-height: 1.7; margin-bottom: 16px; }
.owner-signature { margin-top: 25px; padding-top: 20px; border-top: 1px solid rgba(255,215,0,.25); display: flex; flex-direction: column; gap: 5px; }
.owner-signature strong { color: gold; font-size: 20px; }
.owner-signature span { color: #aaa; font-size: 14px; }
.owner-photo img { width: 100%; height: 320px; object-fit: cover; border-radius: 22px; border: 1px solid rgba(255,215,0,.35); box-shadow: 0 10px 30px rgba(0,0,0,.5); }

/* BOOKING STEPS */
.booking-section { max-width: 1250px; }
.booking-steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 55px; }
.booking-steps::before { content:""; position:absolute; top:38px; left:8%; right:8%; height:2px; background:linear-gradient(90deg, transparent, rgba(255,215,0,.45), transparent); z-index:0; }
.booking-step {
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, #111, #070707);
  border: 1px solid rgba(255,215,0,.32);
  border-radius: 22px;
  padding: 28px 24px;
  min-height: 245px;
  box-shadow: 0 12px 35px rgba(0,0,0,.5);
  transition: .3s ease;
}
.booking-step:hover { transform: translateY(-6px); border-color: gold; box-shadow: 0 12px 35px rgba(0,0,0,.55), 0 0 25px rgba(255,215,0,.14); }
.step-number { width:42px; height:42px; display:flex; align-items:center; justify-content:center; background:gold; color:black; border-radius:50%; font-weight:800; font-size:13px; margin-bottom:18px; box-shadow:0 0 18px rgba(255,215,0,.25); }
.step-icon { font-size: 26px; margin-bottom: 12px; }
.booking-step h3 { color: white; font-size: 19px; margin: 0 0 12px; }
.booking-step p { color: #cfcfcf; line-height: 1.6; font-size: 14px; margin: 0; }

/* PAKKETTEN */
.pakket {
  background: linear-gradient(145deg, #111, #080808);
  border: 1px solid rgba(255,215,0,.22);
  border-radius: 20px;
  padding: 35px;
  margin: 35px 0;
  box-shadow: 0 10px 35px rgba(0,0,0,.45);
}
.pakket h3 { color: gold; font-size: 24px; margin-top: 0; }
.grid { display: flex; gap: 20px; flex-wrap: wrap; }
.mini-box { flex: 1; border: 1.5px solid gold; }
ul { list-style: none; padding: 0; margin: 0; }
.mini-box li { color: white; line-height: 1.8; font-size: 15px; }
.tags span { border: 1px solid rgba(255,215,0,.4); color: gold; background: rgba(255,215,0,.05); border-radius: 999px; padding: 6px 12px; margin: 5px; display: inline-block; }
.prijs { font-size: 30px; color: gold; font-weight: 800; margin-top: 20px; }

/* CONTACT */
.contact-card { background:#111; padding:35px; margin:30px 0; border-radius:18px; border:3px solid gold; max-width:650px; box-shadow:0 10px 30px rgba(0,0,0,.6); }
.contact-card p { color:#ccc; line-height:1.6; }
.contact-form { display:flex; flex-direction:column; gap:15px; max-width:600px; }
.contact-form input, .contact-form textarea { width:100%; padding:14px; border-radius:10px; border:1px solid rgba(255,255,255,.08); background:#1a1a1a; color:white; }
.contact-form textarea { min-height:120px; }
.contact-form input:focus, .contact-form textarea:focus { outline:none; border-color:gold; box-shadow:0 0 0 2px rgba(255,215,0,.18); }
.trust-blokken { margin-top: 60px; }
.trust-grid { display:flex; gap:20px; flex-wrap:wrap; }
.trust-box { flex:1; min-width:250px; }
.cta { margin-top:80px; padding:40px; background:#111; border-radius:20px; text-align:center; border:1px solid gold; }

/* POPUP */
.popup {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,.78);
  opacity: 0;
  visibility: hidden;
  padding: 25px;
  z-index: 9999;
  transition: opacity .3s ease, visibility .3s ease;
}
.popup.active { opacity: 1; visibility: visible; }
.popup-content {
  position: relative;
  width: 100%;
  max-width: 390px;
  background: linear-gradient(145deg, #111, #080808);
  border: 1px solid rgba(255,215,0,.35);
  border-radius: 18px;
  padding: 34px 30px 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,.75), 0 0 25px rgba(255,215,0,.10);
  transform: translateY(20px);
  transition: transform .3s ease;
}
.popup.active .popup-content { transform: translateY(0); }
.popup-content h2 { color: gold; margin: 0 35px 12px 0; font-size: 26px; }
.popup-note { color:#d0d0d0; font-size:14px; line-height:1.5; margin:0 0 20px; }
.close { position:absolute; top:14px; right:18px; width:auto !important; background:transparent !important; border:none !important; color:gold; font-size:30px; line-height:1; padding:0 !important; margin:0 !important; cursor:pointer; z-index:20; box-shadow:none !important; }
.booking-form { display:flex; flex-direction:column; gap:14px; }
.popup-content input, .popup-content select, .popup-content textarea { width:100%; padding:13px 14px; border-radius:10px; border:1px solid rgba(255,255,255,.08); background:#1a1a1a; color:white; font-size:15px; }
.popup-content input::placeholder, .popup-content textarea::placeholder { color:#ccc; opacity:1; }
.popup-content input:focus, .popup-content select:focus, .popup-content textarea:focus { outline:none; border-color:gold; box-shadow:0 0 0 2px rgba(255,215,0,.18); }
.popup-content textarea { resize: vertical; min-height: 95px; }
.popup-content form button { width:100%; padding:12px; background:gold; border:none; color:black; font-weight:800; cursor:pointer; }

footer { text-align:center; padding:30px 20px; color:#aaa; }

@media (max-width: 1024px) {
  .booking-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  body { margin-top: 155px; padding-top: 0 !important; }
  nav { top:0 !important; left:0 !important; right:0 !important; transform:none !important; width:100% !important; max-width:100% !important; border-radius:0 0 22px 22px; border-left:none; border-right:none; border-top:none; margin:0 !important; padding:12px 16px; flex-direction:column; align-items:flex-start; }
  .logo { height: 62px; }
  .nav-text h1 { font-size: 18px; }
  .nav-text p { font-size: 12px; }
  .nav-links { width:100%; justify-content:center; gap:22px; margin-right:0; flex-wrap:wrap; padding-top:8px; }
  .nav-links a { font-size:13px; letter-spacing:1px; }
  .hero-gallery { display:none; }
  .hero-split { padding:55px 22px 35px; display:block; }
  .hero-title { font-size:34px; line-height:1.1; letter-spacing:2px; }
  .hero-sub { font-size:16px; line-height:1.6; }
  .hero-trust { display:block; font-size:14px; line-height:1.8; margin-top:20px; }
  .hero-image { display:block; margin:28px 0 0; width:100%; }
  .hero-image img { width:100%; height:230px; object-fit:cover; object-position:center; border-radius:20px; }
  .hero-image img:nth-child(2) { display:none; }
  .section { padding:35px 20px; }
  .page-top { padding-top: 45px; }
  .service-strip { grid-template-columns:1fr; padding:0 20px; margin:20px auto 45px; gap:16px; }
  .owner-card { grid-template-columns:1fr; padding:28px 22px; border-radius:22px; }
  .owner-text h2 { font-size:26px; }
  .owner-photo img { height:260px; }
  .booking-steps { grid-template-columns:1fr; gap:18px; margin-top:35px; }
  .booking-steps::before { display:none; }
  .booking-step { min-height:auto; padding:24px 22px; }
  .grid, .trust-grid { flex-direction:column; }
  .pakket, .over-box, .contact-card, .service-item, .mini-box, .trust-box { border-radius:20px; }
  .pakket { padding:24px; margin:25px 0; }
  .btn { width:100%; padding:15px 20px; border-radius:12px; font-size:16px; }
  .contact-card { padding:28px 22px; margin:25px 0; }
  .contact-card h2 { font-size:28px; }
  .contact-card h3 { font-size:22px; }
  .contact-card p { font-size:16px; line-height:1.7; }
  .popup { align-items:flex-start; padding:18px; overflow-y:auto; }
  .popup-content { max-width:100%; margin:20px auto; padding:30px 22px 24px; max-height:calc(100svh - 40px); overflow-y:auto; }
  .popup-content h2 { font-size:24px; }
  .close { font-size:32px; top:12px; right:16px; }
  .popup-content input, .popup-content select, .popup-content textarea { font-size:16px; }
}
