/* Pro Panter Transport - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

:root {
  --primary: #111111;
  --accent: #cc0000;
  --gold: #f5a623;
  --light: #f4f4f4;
  --white: #ffffff;
  --gray: #6c757d;
  --dark-gray: #333;
  --font-heading: 'Barlow', sans-serif;
  --font: 'Inter', sans-serif;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10001;
  padding: 12px 18px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font);
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
  top: 0;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* Terug naar boven */
.back-to-top {
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: max(20px, env(safe-area-inset-bottom, 0px));
  z-index: 998;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease,
    background 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #aa0000;
}

.back-to-top:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* WhatsApp Joinchat knop */
.whatsapp-joinchat {
  position: fixed;
  left: max(16px, env(safe-area-inset-left, 0px));
  bottom: max(20px, env(safe-area-inset-bottom, 0px));
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  opacity: 0;
  transform: translateY(14px);
  animation: whatsappFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.whatsapp-joinchat:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

.whatsapp-joinchat:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.whatsapp-joinchat svg {
  width: 32px;
  height: 32px;
  display: block;
}

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

html { scroll-behavior: smooth; }

/* LOADER */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

#loader img {
  width: 320px;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

.loader-bar {
  width: 320px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 3px;
  animation: loaderFill 1.4s ease forwards;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.85; }
}

@keyframes loaderFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

body {
  font-family: var(--font);
  color: var(--dark-gray);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.section-title, .hero-pro__title, .stat-number, .step-number {
  font-family: var(--font-heading);
}

/* NAV — alleen hoofdmenu; .breadcrumb is ook een <nav> en mag niet fixed zijn */
nav:not(.breadcrumb) {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(10px);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.logo-text {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo-text span { color: var(--accent); }

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

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(204,0,0,0.2);
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  font-weight: 600;
}

.nav-cta:hover { background: #aa0000 !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* HERO — modern zakelijk */
section.hero-pro {
  position: relative;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  background: #070707;
  overflow: hidden;
}

.hero-pro__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-pro__gridlines {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 45%, black 20%, transparent 70%);
}

.hero-pro__mesh {
  position: absolute;
  inset: -20%;
  filter: blur(80px);
  opacity: 0.55;
}

.hero-pro__blob {
  position: absolute;
  border-radius: 50%;
  animation: heroBlobDrift 22s ease-in-out infinite;
}

.hero-pro__blob--a {
  width: 42vmin;
  height: 42vmin;
  top: 10%;
  left: -5%;
  background: radial-gradient(circle at 30% 30%, rgba(204,0,0,0.45), transparent 65%);
  animation-delay: 0s;
}

.hero-pro__blob--b {
  width: 50vmin;
  height: 50vmin;
  bottom: -10%;
  right: -8%;
  background: radial-gradient(circle at 60% 40%, rgba(80,80,90,0.5), transparent 60%);
  animation-delay: -7s;
  animation-duration: 28s;
}

.hero-pro__blob--c {
  width: 36vmin;
  height: 36vmin;
  top: 40%;
  right: 25%;
  background: radial-gradient(circle, rgba(204,0,0,0.2), transparent 70%);
  animation-delay: -14s;
  animation-duration: 18s;
}

.hero-pro__panther-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-pro__panther-move {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(68vmin, 640px);
  max-height: 78vh;
  transform-origin: 80% 85%;
  will-change: transform;
}

.hero-pro__panther-img {
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  object-position: 100% 100%;
  display: block;
  opacity: 0.34;
  filter: brightness(1.45) contrast(1.15);
}

.hero-pro__vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(204,0,0,0.08), transparent 45%),
    /* Leesbaarheid links (copy); rechtsonder bewust vrij gelaten voor de panter */
    radial-gradient(ellipse 95% 90% at 12% 45%, rgba(0,0,0,0.45) 0%, transparent 58%),
    linear-gradient(180deg, rgba(0,0,0,0.12) 0%, transparent 42%, rgba(0,0,0,0.15) 100%);
}

.hero-pro__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 110px 5% 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.hero-pro__copy {
  max-width: 620px;
}

.hero-pro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 22px;
  opacity: 0;
  animation: heroProIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.hero-pro__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(204,0,0,0.9);
  animation: heroPulseDot 2.4s ease infinite;
}

.hero-pro__title {
  font-size: clamp(2.5rem, 5.2vw, 3.75rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fafafa;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.hero-pro__title-line {
  display: block;
  opacity: 0;
  transform: translateY(1.1em);
  animation: heroProLine 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-pro__title-line:nth-child(1) { animation-delay: 0.28s; }
.hero-pro__title-line:nth-child(2) { animation-delay: 0.42s; }

.hero-pro__title-line--accent {
  color: var(--accent);
}

.hero-pro__lead {
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
  max-width: 34rem;
  opacity: 0;
  animation: heroProIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

.hero-pro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  opacity: 0;
  animation: heroProIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.68s forwards;
}

.hero-pro__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-pro__btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 32px rgba(204,0,0,0.35);
}

.hero-pro__btn--primary:hover {
  background: #b30000;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(204,0,0,0.45);
}

.hero-pro__btn--ghost {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}

.hero-pro__btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-2px);
}

.hero-pro__phone {
  font-size: 0.9rem;
  margin-bottom: 36px;
  opacity: 0;
  animation: heroProIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.78s forwards;
}

.hero-pro__phone a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 0.2s, border-color 0.2s;
}

.hero-pro__phone a:hover {
  color: #fff;
  border-bottom-color: var(--accent);
}

.hero-pro__metrics.hero-stats,
.hero-pro__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 48px);
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  animation: heroProIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.88s forwards;
}

.hero-pro__metric-value {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-pro__metric-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* Rechts: orbit + kaarten */
.hero-pro__visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: heroProIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.hero-pro__orbit {
  position: absolute;
  width: min(100%, 440px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-pro__orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 210deg, transparent 0%, rgba(204,0,0,0.15) 15%, rgba(204,0,0,0.5) 30%, transparent 45%, transparent 100%);
  animation: heroOrbitSpin 14s linear infinite;
  mask: radial-gradient(circle, transparent 58%, black 59%, black 78%, transparent 79%);
  -webkit-mask: radial-gradient(circle, transparent 58%, black 59%, black 78%, transparent 79%);
}

.hero-pro__orbit-core {
  width: 52%;
  height: 52%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.12), transparent 55%),
              radial-gradient(circle, rgba(20,20,22,0.9) 0%, #0a0a0a 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 0 0 1px rgba(0,0,0,0.5),
    0 40px 80px rgba(0,0,0,0.5);
}

.hero-pro__stack {
  position: relative;
  z-index: 2;
  list-style: none;
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.hero-pro__card {
  --i: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 2px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateX(24px);
  opacity: 0;
  animation: heroCardIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) calc(0.65s + var(--i) * 0.1s) forwards;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-pro__card:hover {
  border-color: rgba(204,0,0,0.35);
  transform: translateX(0) translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.hero-pro__card-kicker {
  grid-row: 1 / -1;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
  padding-top: 3px;
}

.hero-pro__card strong {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.hero-pro__card span:last-child {
  grid-column: 2;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

.hero-pro__card--accent {
  background: linear-gradient(135deg, rgba(204,0,0,0.22), rgba(255,255,255,0.05));
  border-color: rgba(204,0,0,0.35);
}

.hero-pro__card--accent .hero-pro__card-kicker {
  color: rgba(255,200,200,0.6);
}

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

@keyframes heroProLine {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroBlobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(4%, -3%) scale(1.05); }
  66% { transform: translate(-3%, 4%) scale(0.95); }
}

@keyframes heroOrbitSpin {
  to { transform: rotate(360deg); }
}

@keyframes heroCardIn {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes heroPulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.15); }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }
  .hero-pro__blob,
  .hero-pro__orbit-ring,
  .hero-pro__eyebrow-dot {
    animation: none !important;
  }
  .hero-pro__title-line,
  .hero-pro__eyebrow,
  .hero-pro__lead,
  .hero-pro__actions,
  .hero-pro__phone,
  .hero-pro__metrics,
  .hero-pro__visual,
  .hero-pro__card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1024px) {
  .hero-pro__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 64px;
  }
  .hero-pro__visual {
    min-height: 380px;
    max-width: 400px;
    margin: 0 auto;
  }
  .hero-pro__copy {
    max-width: none;
  }
  .hero-pro__panther-move {
    width: min(72vmin, 560px);
    right: 0;
    bottom: 0;
    max-height: 70vh;
  }
  .hero-pro__panther-img {
    opacity: 0.3;
    max-height: 70vh;
  }
}

@media (max-width: 640px) {
  .hero-pro__panther-move {
    width: min(92vmin, 100vw);
    right: 0;
    bottom: 0;
    max-height: 55vh;
  }
  .hero-pro__panther-img {
    opacity: 0.26;
    max-height: 55vh;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .hero-pro__copy {
    text-align: center;
    margin: 0 auto;
  }
  .hero-pro__lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-pro__actions,
  .hero-pro__metrics,
  .hero-pro__metrics.hero-stats {
    justify-content: center;
  }
  .hero-pro__metric {
    text-align: center;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
  .footer-bottom__legal {
    justify-content: center;
  }
}
/* SECTIONS */
section { padding: 90px 5%; }

.section-label {
  display: inline-block;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 560px;
}

.section-header { margin-bottom: 56px; }

.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* SERVICES */
.services { background: var(--light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.3s;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(204,0,0,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(204,0,0,0.12);
}

.service-icon i {
  font-size: 1.35rem;
  color: var(--accent);
  line-height: 1;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* WHY US */
.why-us {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 90px 5%;
}

.why-visual {
  background: linear-gradient(135deg, #111111, #222222);
  border-radius: 20px;
  padding: 50px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-visual::after {
  content: '🐆';
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-size: 120px;
  opacity: 0.08;
}

.why-visual--fleet {
  padding: 0;
  background: #eaeaea;
}

.why-visual--fleet::after {
  display: none;
}

.why-fleet-img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 20px;
}

.why-visual h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.why-visual p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
}

.feature-list { list-style: none; }

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.feature-list li:last-child { border-bottom: none; }

.feature-check {
  width: 28px;
  height: 28px;
  background: rgba(204,0,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-list li div strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.feature-list li div span {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}

.why-content .section-sub { margin-bottom: 32px; }

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

.usp-item {
  background: var(--light);
  border-radius: 12px;
  padding: 20px;
}

.usp-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  background: rgba(204,0,0,0.08);
  border: 1px solid rgba(204,0,0,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usp-icon i {
  font-size: 1.1rem;
  color: var(--accent);
  line-height: 1;
}

.usp-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.usp-item p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* PROCESS */
.process { background: var(--light); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  background: var(--white);
  border: 3px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(204,0,0,0.2);
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.step p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

/* TESTIMONIALS */
.testimonials { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--light);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 80px;
  color: var(--accent);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; }

.testimonial-card p {
  color: var(--dark-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* CTA BANNER */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(8,8,8,0.82), rgba(17,17,17,0.72)),
    url("../assets/images/propanter fleet 2.jpg") center/cover no-repeat;
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.cta-banner h2,
.cta-banner p,
.cta-banner .cta-buttons {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cta-banner__btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 28px rgba(204, 0, 0, 0.4);
}

.cta-banner__btn--primary:hover {
  background: #b30000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(204, 0, 0, 0.5);
}

.cta-banner__btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.cta-banner__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  transform: translateY(-2px);
}

/* FOOTER */
footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.7);
  padding: 70px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand .logo img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 16px auto 24px;
  max-width: 280px;
}

.footer-partner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

.footer-brand .footer-partner {
  align-items: center;
}

.footer-partner__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.footer-partner__logo {
  height: 46px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

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

.footer-col ul li a:hover { color: var(--gold); }

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

.footer-col .contact-item a:hover {
  color: var(--gold);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.contact-item .ci-icon {
  color: var(--accent);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-bottom a:hover { color: var(--gold); }

.footer-bottom__legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-bottom__legal-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.footer-bottom__legal-btn:hover {
  color: var(--gold);
}

/* Juridische teksten — modal (<dialog>) */
/* Globale * { margin:0 } wist de UA margin:auto van dialog; centreer expliciet */
.legal-dialog {
  position: fixed;
  inset: 0;
  width: min(640px, calc(100vw - 32px));
  max-width: 640px;
  height: fit-content;
  max-height: min(85vh, 720px);
  margin: auto;
  padding: 0;
  border: none;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  color: #111;
  background: var(--white);
}

.legal-dialog::backdrop {
  background: rgba(8, 10, 14, 0.72);
  backdrop-filter: blur(4px);
}

.legal-dialog__inner {
  display: flex;
  flex-direction: column;
  max-height: min(85vh, 720px);
}

.legal-dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.legal-dialog__header h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1.25;
}

.legal-dialog__close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.06);
  color: #111;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.legal-dialog__close:hover {
  background: rgba(0, 0, 0, 0.1);
}

.legal-dialog__body {
  padding: 16px 22px 24px;
  overflow-y: auto;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.88);
}

.legal-dialog__body p {
  margin: 0 0 14px;
}

.legal-dialog__body p:last-child {
  margin-bottom: 0;
}

.legal-dialog__body h3 {
  margin: 22px 0 10px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #111;
}

.legal-dialog__body h3:first-child {
  margin-top: 0;
}

.legal-dialog__body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-dialog__body a:hover {
  color: #a30000;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #111111, #222222);
  padding: 140px 5% 80px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

.page-hero--fleet {
  position: relative;
  background:
    linear-gradient(135deg, rgba(8, 10, 14, 0.92), rgba(18, 18, 24, 0.88)),
    url("../assets/images/propanter fleet 2.jpg") center/cover no-repeat;
  background-color: #111;
}

.page-hero--fleet h1,
.page-hero--fleet p {
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
}

/* Diensten — content met lokale transportbeelden */
.services-detail {
  display: grid;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 40px;
  align-items: center;
  background: var(--white);
  border-radius: 20px;
  padding: 44px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-row--media-right {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}

.service-row--media-right .service-row__visual {
  order: 2;
}

.service-row--media-right .service-row__body {
  order: 1;
}

.service-row__visual {
  border-radius: 16px;
  overflow: hidden;
  background: #0f0f0f;
  aspect-ratio: 4 / 3;
  max-height: 280px;
}

.service-row__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-row__visual--contain img {
  object-fit: contain;
  padding: 12px;
  background: linear-gradient(145deg, #141414, #1e1e1e);
}

.service-row__body h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-row__body p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-tags li {
  background: rgba(204, 0, 0, 0.1);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Over ons — split + teamfoto’s */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-split__figure {
  position: relative;
}

.about-split__figure img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  max-height: 420px;
  display: block;
}

.about-split__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--accent);
  color: white;
  border-radius: 16px;
  padding: 20px 28px;
  font-family: var(--font-heading);
}

.about-split__badge strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.about-split__badge span {
  font-size: 0.85rem;
  opacity: 0.95;
}

/* Contact — visueel in info-kaart */
.contact-info-card__visual {
  margin: -44px -36px 28px -36px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  max-height: 200px;
  background: #111;
}

.contact-info-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-info-card__visual--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: auto;
  min-height: 140px;
  max-height: 180px;
  padding: 28px 24px;
}

.contact-info-card__visual--logo img {
  width: auto;
  height: auto;
  max-width: min(260px, 100%);
  max-height: 100px;
  object-fit: contain;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* CONTACT PAGE */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  background: linear-gradient(135deg, #111111, #222222);
  border-radius: 20px;
  padding: 44px 36px;
  color: var(--white);
}

.contact-info-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-info-card > p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  font-size: 0.95rem;
}

.contact-info-card .footer-partner {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(204,0,0,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.info-item span {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
}

.contact-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 44px 36px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}

.contact-form-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-form-card > p {
  color: var(--gray);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--dark-gray);
  transition: border-color 0.2s;
  background: var(--white);
}

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

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font);
}

.form-submit:hover {
  background: #aa0000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(204,0,0,0.35);
}

.form-botcheck {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-feedback {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 8px;
}

.form-feedback--success {
  background: rgba(40, 167, 69, 0.12);
  color: #155724;
  border: 1px solid rgba(40, 167, 69, 0.35);
}

.form-feedback--error {
  background: rgba(204, 0, 0, 0.08);
  color: #842029;
  border: 1px solid rgba(204, 0, 0, 0.25);
}

.form-privacy-hint {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font);
  transition: background 0.2s;
}

.faq-question:hover { background: var(--light); }

.faq-question .faq-icon {
  color: var(--accent);
  font-size: 1.2rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

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

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

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.7;
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s;
}

.value-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(204,0,0,0.1);
}

.value-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  background: rgba(204, 0, 0, 0.08);
  border: 1px solid rgba(204, 0, 0, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon i {
  font-size: 1.1rem;
  color: var(--accent);
  line-height: 1;
}

.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-us { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-split__badge {
    left: 0;
    bottom: auto;
  }
  .service-row,
  .service-row--media-right {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  .service-row--media-right .service-row__visual {
    order: -1;
  }
  .service-row__visual {
    max-height: 240px;
  }
}

@media (max-width: 640px) {
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: #111111; flex-direction: column; padding: 20px; gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-pro__copy {
    text-align: center;
    align-items: center;
    margin: 0 auto;
  }
  .hero-pro__lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-pro__actions {
    justify-content: center;
    width: 100%;
  }
  .hero-pro__metrics { flex-direction: column; gap: 20px; }
  .hero-pro__metrics,
  .hero-pro__metrics.hero-stats {
    justify-content: center;
    align-items: center;
  }
  .hero-pro__metric {
    text-align: center;
  }
  .why-content,
  .step,
  .testimonial-card,
  .service-row__body,
  .about-split > div:first-child,
  .contact-info-card {
    text-align: center;
  }
  .service-tags {
    justify-content: center;
  }
  .contact-info-card .info-item {
    justify-content: center;
    text-align: left;
  }
.contact-info-card .footer-partner {
  align-items: center;
  justify-content: center;
  text-align: center;
}
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col,
  .footer-bottom {
    text-align: center;
    justify-content: center;
  }
  .footer-col h4 {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-col .contact-item {
    justify-content: center;
    align-items: center;
  }
  .footer-bottom__legal {
    justify-content: center;
    width: 100%;
  }
  .form-row { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-split__badge {
    position: static;
    margin-top: 20px;
    display: inline-block;
  }
}

