/* ================================================
   RS SERVICES EXCLUSIVE TRANSPORT — style.css
   ================================================ */

:root {
  --gold:      #c9a84c;
  --gold-l:    #e2c97e;
  --gold-d:    #9a7a2e;
  --blue:      #1a4f8a;
  --red:       #c0392b;
  --red-l:     #e74c3c;
  --bg:        #0a0a0a;
  --dark:      #0a0a0a;
  --bg1:       #111111;
  --bg2:       #161616;
  --bg3:       #1e1e1e;
  --bg4:       #252525;
  --white:     #ffffff;
  --muted:     rgba(255,255,255,0.52);
  --border:    rgba(201,168,76,0.22);
  --bsoft:     rgba(255,255,255,0.07);
  --font:      'Montserrat', sans-serif;
  --r:         8px;
  --rl:        14px;
  --shadow:    0 20px 60px rgba(0,0,0,0.5);
  --sgold:     0 8px 40px rgba(201,168,76,0.18);
  --ease:      cubic-bezier(0.4,0,0.2,1);
  --t:         0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--bg); color: var(--white); line-height: 1.65; overflow-x: hidden; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
ul { list-style: none; }
/* height:auto neutraliseert het height-attribuut van <img>; zonder dit overrulet dat
   attribuut een aspect-ratio en wordt de foto in een verkeerde verhouding geperst.
   Regels die zelf een hoogte zetten (.hero-img, .svc-img img, .logo-img, …) winnen. */
img { max-width: 100%; display: block; height: auto; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ---- Utilities ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6rem 0; }
.gold-text  { color: var(--gold); }

.label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.section-head { text-align: center; margin-bottom: 3.75rem; }
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-head p { font-size: 1.02rem; color: var(--muted); max-width: 570px; margin: 0 auto; }

/* ---- Reveal ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* ---- Focus: zichtbaar voor toetsenbord, niet bij muisklik ---- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}
.form-field input:focus-visible,
.form-field textarea:focus-visible,
.sel-wrap select:focus-visible { outline-offset: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  padding: 0.82rem 1.85rem;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: var(--t);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-d) 100%);
  color: #0a0a0a;
  box-shadow: 0 4px 22px rgba(201,168,76,0.28);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-l) 0%, var(--gold) 100%);
  box-shadow: 0 6px 30px rgba(201,168,76,0.45);
  transform: translateY(-2px);
  color: #0a0a0a;
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: #0a0a0a; }
.btn-full { width: 100%; justify-content: center; padding: 1rem 2rem; font-size: 0.92rem; }

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  padding: 1.35rem 0;
  transition: background var(--t), padding var(--t), border-color var(--t);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 28px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.8rem; }
.logo-img { width: 62px; height: 62px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-size: 0.98rem; font-weight: 800; color: var(--white); letter-spacing: 0.04em; }
.logo-sub  { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 2.2rem; flex: 1; justify-content: center; }
.nav-end   { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; margin-left: auto; }
.nav-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  position: relative;
  padding-bottom: 3px;
}
.nav-link::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 1.5px;
  background: var(--gold);
  width: 0;
  transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: #0a0a0a !important;
  padding: 0.52rem 1.35rem;
  border-radius: var(--r);
  font-weight: 700;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-l), var(--gold));
  box-shadow: 0 4px 18px rgba(201,168,76,0.35);
  transform: translateY(-1px);
}

.lang-switch {
  display: flex;
  align-items: center;
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}
.lang-opt {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.55);
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.28rem 0.7rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lang-opt.active { background: var(--gold); color: var(--dark); font-weight: 800; }
.lang-opt:not(.active):hover { color: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; z-index: 901; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--t); transform-origin: center; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh; /* voorkomt de adresbalk-sprong op mobiel */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
/* <picture> is standaard inline; blok maken zodat height:100% van de foto blijft werken. */
.hero-bg picture { display: block; width: 100%; height: 100%; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-img.parallax-on { will-change: transform; } /* alleen een compositorlaag als de parallax echt draait */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.52) 55%, rgba(10,10,10,0.80) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  padding: 8rem 2rem 5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.38rem 1.15rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  animation: aFadeDown 0.9s var(--ease) forwards;
}
.hero-title {
  font-size: clamp(2.8rem, 7.5vw, 5.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.35rem;
  animation: aFadeUp 0.9s var(--ease) 0.15s both;
}
.hero-title .gold-text {
  background: linear-gradient(90deg, var(--gold), var(--gold-l), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.42rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.86);
  margin-bottom: 0.8rem;
  animation: aFadeUp 0.9s var(--ease) 0.28s both;
}
.hero-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 2.4rem;
  animation: aFadeUp 0.9s var(--ease) 0.4s both;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.2rem;
  animation: aFadeUp 0.9s var(--ease) 0.52s both;
}
.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 1.5rem 2.8rem;
  animation: aFadeUp 0.9s var(--ease) 0.65s both;
}
.hstat { text-align: center; }
.hstat strong {
  display: block;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hstat strong small { font-size: 1.15rem; }
.hstat > span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}
.hstat-sep { width: 1px; height: 46px; background: var(--border); }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
  animation: aBounce 2.5s ease-in-out infinite;
}

/* ================================================
   USP BAR
   ================================================ */
.usp-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
}
.usp-row { display: flex; align-items: center; justify-content: center; }
.usp-item {
  display: flex;
  align-items: center;
  gap: 0.68rem;
  padding: 0.4rem 2.8rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.usp-item i { color: var(--gold); font-size: 1.08rem; flex-shrink: 0; }
.usp-sep { width: 1px; height: 26px; background: var(--border); }

/* ================================================
   FEATURES — WAAROM
   ================================================ */
.waarom { background: var(--bg1); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}
.feat-card {
  background: var(--bg2);
  border: 1px solid var(--bsoft);
  border-radius: var(--rl);
  padding: 2.3rem 1.9rem;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-d));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.feat-card:hover { border-color: var(--border); transform: translateY(-5px); box-shadow: var(--sgold); }
.feat-card:hover::before { transform: scaleX(1); }
.feat-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,168,76,0.13) 0%, rgba(201,168,76,0.04) 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 1.35rem;
  transition: var(--t);
}
.feat-card:hover .feat-icon { transform: scale(1.08) rotate(4deg); }
.feat-card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 0.65rem; }
.feat-card p  { font-size: 0.865rem; color: var(--muted); line-height: 1.75; }

/* ================================================
   DIENSTEN — SERVICE CARDS
   ================================================ */
.diensten { background: var(--bg); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.svc-card {
  background: var(--bg2);
  border: 1px solid var(--bsoft);
  border-radius: var(--rl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--t);
  position: relative;
}
.svc-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: var(--border); }
.svc-card.featured { border-color: var(--border); }
.svc-card.urgent  { border-color: rgba(192,57,43,0.3); }
.svc-card.urgent:hover { border-color: rgba(192,57,43,0.6); box-shadow: 0 20px 60px rgba(192,57,43,0.14); }

.svc-badge {
  position: absolute;
  top: 0; right: 0;
  z-index: 3;
  padding: 0.3rem 0.9rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: #0a0a0a;
  border-bottom-left-radius: var(--r);
}
.urgent-badge {
  background: linear-gradient(135deg, var(--red-l), var(--red)) !important;
  color: var(--white) !important;
}

.svc-img { position: relative; height: 195px; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); }
.svc-card:hover .svc-img img { transform: scale(1.07); }
.svc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.65) 0%, transparent 55%);
}

.svc-body {
  padding: 1.75rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}
.svc-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(201,168,76,0.13), rgba(201,168,76,0.04));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
}
.svc-icon-red {
  background: linear-gradient(135deg, rgba(192,57,43,0.13), rgba(192,57,43,0.04)) !important;
  border-color: rgba(192,57,43,0.3) !important;
  color: var(--red-l) !important;
}
.svc-body h3 { font-size: 1.02rem; font-weight: 700; line-height: 1.3; }
.svc-body p  { font-size: 0.848rem; color: var(--muted); line-height: 1.72; }
.svc-list { display: flex; flex-direction: column; gap: 0.35rem; }
.svc-list li { display: flex; align-items: center; gap: 0.48rem; font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.svc-list li i { color: var(--gold); font-size: 0.66rem; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 0.75rem;
  border-top: 1px solid var(--bsoft);
  margin-top: auto;
  transition: gap var(--t), color var(--t);
}
.svc-link:hover { gap: 0.8rem; color: var(--gold-l); }
.svc-link-red { color: var(--red-l) !important; }
.svc-link-red:hover { color: #ff6b5a !important; }

/* ================================================
   OVER ONS
   ================================================ */
.over-ons { background: var(--bg1); }
.over-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.over-imgs {
  position: relative;
  padding-bottom: 2rem;
  padding-right: 2rem;
}
/* Geen vaste verhouding: de foto bepaalt zijn eigen hoogte, dus niets wordt bijgesneden. */
.over-main {
  width: 100%;
  border-radius: var(--rl);
  border: 1px solid var(--border);
}
.over-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32%;   /* vierkant is hoger dan het vorige 4:3-kader; 32% houdt de vlootfoto vrij */
  border-radius: var(--r);
  border: 3px solid var(--bg1);
  box-shadow: var(--shadow);
  aspect-ratio: 1/1;   /* de foto is vierkant (450x450), dus dit snijdt niets weg */
  object-fit: cover;
}
.over-cert {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 1.05rem 1.35rem;
  margin-top: 1.8rem;
  box-shadow: var(--sgold);
}
.cert-img { width: 50px; height: 50px; object-fit: contain; border-radius: var(--r); background: var(--white); padding: 4px; flex-shrink: 0; }
.over-cert > div { display: flex; flex-direction: column; gap: 0.18rem; }
.over-cert strong { font-size: 0.88rem; font-weight: 700; }
.over-cert span   { font-size: 0.73rem; color: var(--gold); }

.over-content { padding-left: 1rem; }
.over-content .label { display: block; }
.over-content h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); font-weight: 800; line-height: 1.15; margin: 0.5rem 0 1.65rem; }
.over-lead { font-size: 1.02rem; font-weight: 500; color: rgba(255,255,255,0.9); margin-bottom: 1.1rem; line-height: 1.75; }
.over-content p { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.95rem; line-height: 1.82; }
.over-content em { color: rgba(255,255,255,0.85); font-style: italic; }
.over-values { display: flex; flex-direction: column; gap: 0.68rem; margin: 1.7rem 0 2.1rem; }
.val-row { display: flex; align-items: center; gap: 0.72rem; font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.val-row i { color: var(--gold); font-size: 0.92rem; flex-shrink: 0; }

/* ================================================
   GALLERY STRIP
   ================================================ */
.gallery-strip { overflow: hidden; border-top: 1px solid var(--bsoft); border-bottom: 1px solid var(--bsoft); }
.gallery-track { display: flex; animation: aGallery 30s linear infinite; width: max-content; }
.gallery-track img {
  width: 270px;
  height: 175px;
  object-fit: cover;
  flex-shrink: 0;
  filter: brightness(0.65) grayscale(0.15);
  transition: filter 0.35s;
}
.gallery-track img:hover { filter: brightness(1) grayscale(0); }

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, #0d2d5e 0%, var(--blue) 50%, #091e40 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(201,168,76,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 40%, rgba(201,168,76,0.07) 0%, transparent 55%);
}
.cta-inner { position: relative; text-align: center; }
.cta-inner h2 { font-size: clamp(1.9rem, 4vw, 2.85rem); font-weight: 800; margin-bottom: 0.95rem; }
.cta-inner p  { font-size: 1.02rem; color: rgba(255,255,255,0.75); margin-bottom: 2.4rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ================================================
   CONTACT
   ================================================ */
.contact-sec { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: stretch;
}
.contact-info {
  display: flex;
  flex-direction: column;
}
.contact-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-details h3 { font-size: 1.22rem; font-weight: 700; margin-bottom: 1.45rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.cinfo-row {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  margin-bottom: 1.25rem;
  transition: var(--t);
}
a.cinfo-row:hover .cinfo-ico { background: rgba(201,168,76,0.18); border-color: var(--gold); }
a.cinfo-row:hover strong { color: var(--gold); }
.cinfo-row.no-hover { cursor: default; }
.cinfo-ico {
  width: 40px; height: 40px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(201,168,76,0.11), rgba(201,168,76,0.04));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.92rem; color: var(--gold); flex-shrink: 0;
  transition: var(--t);
}
.cinfo-wa {
  background: linear-gradient(135deg, rgba(37,211,102,0.11), rgba(37,211,102,0.04)) !important;
  border-color: rgba(37,211,102,0.25) !important;
  color: #25d366 !important;
}
.cinfo-row > div { display: flex; flex-direction: column; gap: 0.08rem; }
.cinfo-row span   { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.cinfo-row strong { font-size: 0.88rem; color: var(--white); font-weight: 600; }

/* margin-top:auto duwt dit blok naar de onderkant van de kolom, zodat het met het
   formulier uitlijnt; de marge van de laatste .cinfo-row garandeert de minimale gap. */
.openings { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--rl); padding: 1.35rem; margin-top: auto; }
.openings h4 { font-size: 0.8rem; font-weight: 700; color: var(--gold); margin-bottom: 0.95rem; display: flex; align-items: center; gap: 0.48rem; }
.openings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 0; font-size: 0.8rem; }
.openings-grid span:nth-child(odd)  { color: var(--muted); }
.openings-grid span:nth-child(even) { color: var(--white); font-weight: 600; text-align: right; }

/* Form */
.form-wrap {
  background: var(--bg2);
  border: 1px solid var(--bsoft);
  border-radius: var(--rl);
  padding: 2.4rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.15rem; }
.form-row { display: flex; flex-direction: column; gap: 1.15rem; }
.form-row.two { flex-direction: row; }
.form-row.two .form-field { flex: 1; }
.form-field { display: flex; flex-direction: column; gap: 0.45rem; }
.form-field label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.form-field label em { color: var(--gold); font-style: normal; }
.form-field input,
.form-field textarea {
  background: var(--bg3);
  border: 1px solid var(--bsoft);
  border-radius: var(--r);
  padding: 0.82rem 0.95rem;
  font-family: var(--font);
  font-size: 0.88rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
  -webkit-appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.18); }
.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(201,168,76,0.45);
  background: var(--bg4);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.07);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.sel-wrap { position: relative; }
.sel-wrap select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--bsoft);
  border-radius: var(--r);
  padding: 0.82rem 2.4rem 0.82rem 0.95rem;
  font-family: var(--font);
  font-size: 0.88rem;
  color: var(--white);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
}
.sel-wrap select:focus { border-color: rgba(201,168,76,0.45); background: var(--bg4); }
.sel-wrap select option { background: var(--bg3); }
.sel-wrap i { position: absolute; right: 0.9rem; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 0.78rem; pointer-events: none; }
.form-note { font-size: 0.72rem; color: var(--muted); text-align: center; line-height: 1.55; }
.form-success { display: none; text-align: center; padding: 3rem 1.5rem; }
.form-success i { font-size: 3.8rem; color: #22c55e; display: block; margin-bottom: 1.4rem; }
.form-success h3 { font-size: 1.45rem; font-weight: 700; margin-bottom: 0.7rem; }
.form-success p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }

/* ================================================
   FOOTER
   ================================================ */
.footer { background: var(--bg1); border-top: 1px solid var(--border); }
.footer-top { padding: 4.5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.4fr 1.4fr; gap: 3rem; }
.footer-logo-link { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.15rem; }
.footer-brand > p { font-size: 0.86rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.4rem; max-width: 270px; }
.footer-socials { display: flex; gap: 0.6rem; }
.soc-btn {
  width: 36px; height: 36px;
  border-radius: 7px;
  background: var(--bg3);
  border: 1px solid var(--bsoft);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--muted);
  transition: var(--t);
}
.soc-btn:hover { background: rgba(201,168,76,0.1); border-color: var(--border); color: var(--gold); }
.soc-wa:hover  { background: rgba(37,211,102,0.1) !important; border-color: rgba(37,211,102,0.35) !important; color: #25d366 !important; }

.footer-col h4 { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.35rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.84rem; color: var(--muted); transition: var(--t); display: inline-block; }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-clist { display: flex; flex-direction: column; gap: 0.82rem; }
.fc-row { display: flex; align-items: center; gap: 0.62rem; font-size: 0.84rem; color: var(--muted); transition: var(--t); }
a.fc-row:hover { color: var(--gold); }
.fc-row i { color: var(--gold); width: 15px; font-size: 0.86rem; flex-shrink: 0; }

.footer-bottom { border-top: 1px solid var(--bsoft); padding: 1.35rem 0; }
.footer-bottom-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom-row p { font-size: 0.78rem; color: var(--muted); }
.footer-kvk { display: flex; gap: 1.5rem; font-size: 0.78rem; color: var(--muted); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; color: var(--muted); }
.footer-legal a:hover { color: var(--gold); }

/* ================================================
   ALGEMENE VOORWAARDEN PAGE
   ================================================ */
.av-page-header {
  background: var(--bg1);
  padding: 8rem 0 3.5rem;
  border-bottom: 1px solid var(--border);
}
.av-page-header .label { display: block; margin-bottom: 0.6rem; }
.av-page-header h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.9rem;
}
.av-page-header p { font-size: 1rem; color: var(--muted); max-width: 560px; }
.av-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
  transition: color var(--t);
}
.av-back:hover { color: var(--gold); }

.av-page-header .av-notice {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  max-width: none;
  margin-top: 1.4rem;
  padding: 0.6rem 1.05rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.72);
}
.av-notice i { color: var(--gold); flex-shrink: 0; }

.av-section { background: var(--bg1); }
.av-list { display: flex; flex-direction: column; gap: 0.5rem; }

.av-item {
  background: var(--bg2);
  border: 1px solid var(--bsoft);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--t);
}
.av-item[open] { border-color: var(--border); }

.av-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background var(--t);
}
.av-summary:hover { background: var(--bg3); }
.av-summary::-webkit-details-marker { display: none; }

.av-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 5rem;
  flex-shrink: 0;
}
.av-title {
  font-size: 0.875rem;
  font-weight: 600;
  flex: 1;
}
.av-chevron {
  font-size: 0.7rem;
  color: var(--muted);
  transition: transform var(--t);
  flex-shrink: 0;
}
.av-item[open] .av-chevron { transform: rotate(180deg); }

.av-body {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid var(--bsoft);
  font-size: 0.845rem;
  color: var(--muted);
  line-height: 1.85;
}
.av-body p { margin-bottom: 0.8rem; }
.av-body p:last-child { margin-bottom: 0; }
.av-body ol { padding-left: 1.4rem; display: flex; flex-direction: column; gap: 0.7rem; }
.av-body ul { padding-left: 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; list-style: disc; }
.av-body li > ul { margin-top: 0.5rem; }
.av-body strong { color: rgba(255,255,255,0.82); }

/* ================================================
   FLOATING ELEMENTS
   ================================================ */
.wa-float {
  position: fixed;
  bottom: 2rem; left: 2rem;
  z-index: 800;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--white);
  box-shadow: 0 4px 22px rgba(37,211,102,0.42);
  transition: var(--t);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); color: var(--white); }
.wa-tooltip {
  position: absolute;
  left: 66px;
  background: var(--bg2);
  color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0.42rem 0.88rem;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-8px);
  transition: var(--t);
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

.back-top {
  position: fixed;
  bottom: 5.8rem; right: 2rem;
  z-index: 799;
  width: 40px; height: 40px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--gold);
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: var(--t);
}
.back-top.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-top:hover { background: rgba(201,168,76,0.1); transform: translateY(-3px); }

/* ================================================
   KEYFRAMES
   ================================================ */
@keyframes aFadeDown { from { opacity:0; transform:translateY(-18px); } to { opacity:1; transform:translateY(0); } }
@keyframes aFadeUp   { from { opacity:0; transform:translateY(28px);  } to { opacity:1; transform:translateY(0); } }
@keyframes aBounce   { 0%,100% { transform:translateX(-50%) translateY(0); } 50% { transform:translateX(-50%) translateY(8px); } }
@keyframes aGallery  { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ================================================
   BEPERKTE BEWEGING (WCAG 2.3.3)
   ================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  /* Doorlopende animaties helemaal uit i.p.v. versneld — anders flikkeren ze. */
  .gallery-track,
  .hero-scroll { animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-img { transform: none !important; }
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
  .cards-grid    { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 960px) {
  .over-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .usp-row      { flex-wrap: wrap; gap: 0.4rem; }
  .usp-sep      { display: none; }
  .usp-item     { padding: 0.4rem 1.4rem; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 350px);
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 2.5rem 2.5rem;
    gap: 1.5rem;
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 899;
  }
  .nav-links.open     { transform: translateX(0); }
  .hamburger          { display: flex; }
  .nav-end .nav-cta   { display: none; }
  /* Schuift de staande uitsnede ~10% van de schermbreedte naar rechts
     (50% = gecentreerd, lager = foto naar rechts, hoger = foto naar links). */
  .hero-img           { object-position: 20% 20%; }
  .hero-stats         { flex-direction: column; gap: 1rem; padding: 1rem 1.4rem; }
  .hstat-sep          { width: 55px; height: 1px; }
  .hstat strong       { font-size: 1.4rem; }
  .hero-btns          { flex-direction: column; align-items: center; }
  .hero-btns .btn     { width: 100%; justify-content: center; }
  .cards-grid         { grid-template-columns: 1fr; }
  .features-grid      { grid-template-columns: 1fr; }
  .form-row.two       { flex-direction: column; }
  .footer-grid        { grid-template-columns: 1fr; }
  .footer-bottom-row  { flex-direction: column; text-align: center; gap: 0.7rem; }
  .over-secondary     { display: none; }
  .over-imgs          { padding-right: 0; padding-bottom: 0; }
  .section            { padding: 4rem 0; }
  .svc-img            { height: 160px; }
  .gallery-track img  { width: 190px; height: 125px; }
}

@media (max-width: 480px) {
  .container          { padding: 0 1.2rem; }
  .logo-img           { width: 48px; height: 48px; }
  .logo-sub           { display: none; }
  .lang-opt           { padding: 0.22rem 0.52rem; font-size: 0.65rem; }
  .usp-item           { font-size: 0.76rem; padding: 0.4rem 0.8rem; flex: 1 1 45%; }
  .hero-content       { padding-top: 7rem; padding-bottom: 4rem; }
  .hero-title         { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-desc          { font-size: 0.9rem; }
  .hero-stats         { display: none; }
  .svc-img            { height: 140px; }
  .svc-body           { padding: 1.3rem 1.3rem 1.1rem; }
  .feat-card          { padding: 1.5rem 1.3rem; }
  .over-content h2    { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  .cta-btns           { flex-direction: column; align-items: center; }
  .cta-btns .btn      { width: 100%; justify-content: center; }
  .form-wrap          { padding: 1.4rem 1rem; }
  .gallery-track img  { width: 145px; height: 96px; }
}
