/* ===================================================
   JOTT CARDETAILING — STYLESHEET
   Dark luxury, rood accent, premium uitstraling
   =================================================== */

:root {
  --bg-primary:     #0A0A0A;
  --bg-secondary:   #111111;
  --bg-tertiary:    #1A1A1A;
  --accent:         #C0392B;
  --accent-hover:   #E74C3C;
  --text-primary:   #F5F5F5;
  --text-muted:     #A0A0A0;
  --border:         rgba(255, 255, 255, 0.07);
  --shadow:         0 8px 40px rgba(0, 0, 0, 0.5);
  --radius:         12px;
  --radius-sm:      8px;
  --container:      1200px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; width: 100%; max-width: 100vw; background: #0A0A0A; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; -webkit-tap-highlight-color: transparent; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__bg { transform: none !important; }
  .marquee-track { animation: none !important; }
}

/* Focus states */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Touch action */
a, button { touch-action: manipulation; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 100px 0; }
.section--alt { background: var(--bg-secondary); }
.section--dark { background: var(--bg-tertiary); }

/* ===== SECTION HEADERS ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.75;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(192, 57, 43, 0.4);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }
.btn { cursor: pointer; min-height: 44px; }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}
.btn-outline:active { transform: translateY(0); }
.btn-sm { padding: 10px 22px; font-size: 0.75rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  padding: 22px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.navbar__logo img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
}
.navbar__logo-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.navbar__logo-name span { color: var(--accent); }
.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.navbar__links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.navbar__links a:hover { color: #fff; }
.navbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.navbar__phone {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.navbar__phone:hover { color: #fff; }

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.navbar__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.navbar__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.navbar__mobile {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 100px 32px 40px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
  pointer-events: none;
}
.navbar__mobile.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0s;
}
.navbar__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}
.navbar__mobile li {
  border-bottom: 1px solid var(--border);
}
.navbar__mobile li:first-child {
  border-top: 1px solid var(--border);
}
.navbar__mobile a {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  padding: 18px 0;
  transition: color 0.2s;
}
.navbar__mobile a:hover { color: #fff; }
.navbar__mobile .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.navbar__mobile__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.navbar__mobile__phone:hover { color: #fff; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../Website Fotos/SolidMotion-4349.jpg');
  background-size: cover;
  background-position: center 45%;
  transform: scale(1.08);
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero__bg.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.55) 55%,
    rgba(0,0,0,0.25) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideDown 0.8s ease 0.3s forwards;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--accent);
}
.hero__title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
  overflow: hidden;
}
.hero__title-line {
  display: block;
  transform: translateY(110%);
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero__title-line:nth-child(1) { animation-delay: 0.5s; }
.hero__title-line:nth-child(2) { animation-delay: 0.65s; color: var(--accent); }
.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeSlideDown 0.8s ease 0.9s forwards;
}
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideDown 0.8s ease 1.1s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeSlideDown 1s ease 1.5s both;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollBounce 2s ease infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1) translateY(0); opacity: 1; }
  50% { transform: scaleY(0.6) translateY(8px); opacity: 0.4; }
}

/* ===== HERO ANIMATIONS ===== */
@keyframes slideUp {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== USP STRIP ===== */
.usp-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
}
.usp-item:last-child { border-right: none; }
.usp-item:hover { background: rgba(255,255,255,0.02); }
.usp-icon {
  width: 48px;
  height: 48px;
  background: rgba(192, 57, 43, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.usp-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.75; }
.usp-text h4 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: #fff;
}
.usp-text p { font-size: 0.78rem; color: var(--text-muted); }

/* ===== DIENSTEN ===== */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.dienst-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: default;
}
.dienst-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.dienst-card:last-child .dienst-card__img { object-position: 80% 30%; }
.dienst-card:hover .dienst-card__img { transform: scale(1.06); }
.dienst-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.2) 55%, transparent 100%);
}
.dienst-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
}
.dienst-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.dienst-card__title {
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 10px;
}
.dienst-card__desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
.dienst-card:hover .dienst-card__desc { max-height: 100px; opacity: 1; }

/* ===== OVER JOTT ===== */
.over-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.over-image { position: relative; }
.over-image__photo {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
}
.over-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--accent);
  color: #fff;
  padding: 28px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.over-badge .number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.over-badge .label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.88;
  display: block;
  margin-top: 4px;
}
.over-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.over-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.over-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.over-feature__icon {
  width: 32px;
  height: 32px;
  background: rgba(192, 57, 43, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.over-feature__icon svg { width: 15px; height: 15px; stroke: var(--accent); fill: none; stroke-width: 2; }
.over-feature h4 { font-size: 0.82rem; font-weight: 700; margin-bottom: 2px; }
.over-feature p { font-size: 0.77rem; color: var(--text-muted); }

/* ===== GALERIJ PREVIEW ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
  margin-top: 56px;
}
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-sm); cursor: pointer; -webkit-tap-highlight-color: transparent; }
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item__hover {
  position: absolute;
  inset: 0;
  background: rgba(192, 57, 43, 0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item__hover { background: rgba(192, 57, 43, 0.18); }
.gallery-item__hover svg {
  width: 40px; height: 40px;
  stroke: #fff; fill: none; stroke-width: 1.5;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.3s ease;
}
.gallery-item:hover .gallery-item__hover svg { opacity: 1; transform: scale(1); }
.gallery-cta { text-align: center; margin-top: 48px; }

/* ===== PAKKETTEN ===== */
.pakketten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}
.pakket {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pakket:hover {
  border-color: rgba(192,57,43,0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}
.pakket.featured {
  border-color: var(--accent);
  background: linear-gradient(145deg, rgba(192,57,43,0.07) 0%, var(--bg-tertiary) 60%);
  transform: scale(1.02);
}
.pakket.featured:hover { transform: scale(1.02) translateY(-6px); }
.pakket__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
}
.pakket__tier {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.pakket__name { font-size: 1.5rem; margin-bottom: 10px; }
.pakket__desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}
.pakket__price {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.pakket__price .from { font-size: 0.75rem; color: var(--text-muted); display: block; margin-bottom: 4px; }
.pakket__price .amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.pakket__price .suffix { font-size: 0.85rem; color: var(--text-muted); margin-left: 4px; }
.pakket__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pakket__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.4;
}
.pakket__features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23C0392B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='2.5 8 6 12 13.5 4'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}
.pakket__note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 16px;
  font-style: italic;
}

/* ===== SERVICEGEBIED ===== */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.tag {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--text-primary);
  transition: all 0.22s;
}
.tag.active, .tag:hover {
  background: rgba(192,57,43,0.1);
  border-color: var(--accent);
  color: var(--accent);
}
.service-visual {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.service-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(192,57,43,0.08) 0%, transparent 70%);
}
.map-dot {
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(192,57,43,0.5); }
  70% { box-shadow: 0 0 0 24px rgba(192,57,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(192,57,43,0); }
}
.map-label {
  background: rgba(10,10,10,0.85);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}
.map-sub { font-size: 0.78rem; color: var(--text-muted); }

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 130px 0;
  text-align: center;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-image: url('../Website Fotos/SolidMotion-4387.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.18) saturate(0.5);
}
.cta-banner__content { position: relative; z-index: 2; }
.cta-banner__title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  color: #fff;
  margin-bottom: 18px;
}
.cta-banner__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 48px;
}
.cta-banner__ctas { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 80px 0 36px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}
.footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer__logo img { height: 44px; filter: brightness(0) invert(1); }
.footer__logo-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer__logo-name span { color: var(--accent); }
.footer__brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; max-width: 260px; }
.footer__socials { display: flex; gap: 10px; margin-top: 24px; }
.footer__social {
  width: 38px; height: 38px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s;
  color: var(--text-muted);
}
.footer__social:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer__social svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.75; }
.footer__social svg[fill="currentColor"] { fill: currentColor; stroke: none; }
.footer__col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer__col a:hover { color: var(--accent); }
.footer__contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer__contact-item svg { width: 15px; height: 15px; stroke: var(--accent); fill: none; stroke-width: 2; flex-shrink: 0; }
.footer__contact-item a, .footer__contact-item span { font-size: 0.875rem; color: rgba(255,255,255,0.55); }
.footer__contact-item a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.footer__bottom a { color: var(--accent); }

/* ===== WHATSAPP ===== */
.whatsapp {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 990;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,0.5); }
.whatsapp svg { width: 28px; height: 28px; fill: #fff; }

/* ===== SCROLL ANIMATIONS ===== */
.anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.anim.from-left { transform: translateX(-28px); }
.anim.from-right { transform: translateX(28px); }
.anim.scale { transform: scale(0.95); }
.anim.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lightbox__close {
  position: absolute;
  top: 24px; right: 28px;
  color: rgba(255,255,255,0.6);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}
.lightbox__close:hover { color: #fff; }

/* ===== GALERIJ PAGE ===== */
.gallery-masonry {
  columns: 3;
  column-gap: 12px;
  margin-top: 56px;
}
.gallery-masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  aspect-ratio: unset;
  border-radius: var(--radius-sm);
}
.gallery-masonry .gallery-item img { width: 100%; height: auto; display: block; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info-item { display: flex; gap: 18px; }
.contact-info-icon {
  width: 48px; height: 48px;
  background: rgba(192,57,43,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.75; }
.contact-info-icon svg[fill="currentColor"] { fill: var(--accent); stroke: none; }
.contact-info-item h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 0.9rem; color: var(--text-muted); transition: color 0.2s; }
.contact-info-item a:hover { color: var(--accent); }
.contact-form {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.15);
}
.form-group select option { background: var(--bg-tertiary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 16px; }
.form-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 16px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 160px 0 80px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero .section-label { justify-content: center; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 520px; margin: 16px auto 0; }

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--accent);
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  padding: 0 32px;
}
.marquee-track .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== STATS ===== */
.stats-section {
  background: var(--bg-secondary);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item {
  padding: 0 40px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.stat-suffix {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
}
.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== WERKWIJZE ===== */
.werkwijze-section { padding: 100px 0; background: var(--bg-primary); }
.werkwijze-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.werkwijze-grid::before {
  content: '';
  position: absolute;
  top: 41px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border) 15%, var(--border) 85%, transparent);
}
.werkwijze-step {
  text-align: center;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}
.werkwijze-num {
  width: 82px;
  height: 82px;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.werkwijze-step:hover .werkwijze-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(192,57,43,0.3);
}
.werkwijze-step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.werkwijze-step p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 200px;
  margin: 0 auto;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 100px 0; background: var(--bg-secondary); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(192,57,43,0.35);
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.4);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 26px;
  font-size: 5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(192,57,43,0.08);
  pointer-events: none;
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 18px; }
.testimonial-stars span { color: var(--accent); font-size: 1rem; }
.testimonial-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 42px;
  height: 42px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.875rem; font-weight: 700; }
.testimonial-car { font-size: 0.73rem; color: var(--text-muted); margin-top: 2px; }

/* ===== GOOGLE BADGE ===== */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px 8px 14px;
  margin-top: 32px;
}
.google-badge svg { width: 18px; height: 18px; }
.google-badge span { font-size: 0.78rem; color: var(--text-muted); }
.google-badge strong { color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-item:nth-child(2) { border-right: none; }
  .usp-item:nth-child(3),
  .usp-item:nth-child(4) { border-top: 1px solid var(--border); }
  .usp-item:nth-child(4) { border-right: none; }

  .over-grid { grid-template-columns: 1fr; gap: 56px; }
  .over-image__photo { height: 420px; }
  .over-badge { right: 16px; bottom: -20px; }

  .service-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 48px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); padding-top: 40px; margin-top: 40px; }
  .stat-item:nth-child(4) { border-right: none; }

  .werkwijze-grid { grid-template-columns: repeat(2, 1fr); gap: 56px; }
  .werkwijze-grid::before { display: none; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 36px 28px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .navbar__links,
  .navbar__phone,
  .navbar__right .btn { display: none; }
  .navbar__hamburger { display: flex; z-index: 1002; position: relative; }
  .navbar__right { display: none; }

  .hero { min-height: 100svh; height: 100svh; width: 100vw; }
  .hero__bg { transform: none !important; }
  .hero__title { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero__subtitle { font-size: 0.9rem; max-width: 100%; }
  .hero__eyebrow { font-size: 0.6rem; margin-bottom: 16px; }
  .hero__content { padding-right: 0; }
  .hero__scroll { display: none; }
  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.7) 0%,
      rgba(0,0,0,0.5) 40%,
      rgba(0,0,0,0.75) 100%
    );
  }

  .diensten-grid { grid-template-columns: 1fr; }
  .dienst-card { aspect-ratio: 16/9; }
  .dienst-card__desc { max-height: 100px; opacity: 1; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-grid .gallery-item:first-child { grid-row: auto; aspect-ratio: 4/3; }

  .pakketten-grid { grid-template-columns: 1fr; gap: 20px; }
  .pakket { padding: 32px 24px; }
  .pakket.featured { transform: none; }
  .pakket.featured:hover { transform: translateY(-4px); }
  .pakket__name { font-size: 1.3rem; }
  .pakket__price .amount { font-size: 2.2rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-text { font-size: 0.9rem; }

  .werkwijze-grid { grid-template-columns: 1fr 1fr; }
  .werkwijze-step { padding: 28px 20px; }

  .gallery-masonry { columns: 2; }

  .form-row { grid-template-columns: 1fr; }
  .over-features { grid-template-columns: 1fr; }
  .over-image__photo { height: 340px; }
  .over-badge { right: 12px; bottom: -16px; padding: 20px 18px; }
  .over-badge .number { font-size: 2rem; }

  .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .section-sub { font-size: 0.95rem; }

  .page-hero { padding: 130px 0 60px; }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .page-hero p { font-size: 0.95rem; }

  .cta-banner { padding: 80px 0; }
  .cta-banner__title { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  .location-tags { gap: 8px; }
  .tag { font-size: 0.72rem; padding: 7px 14px; }

  .service-visual { display: none; }

  .contact-info-grid { gap: 20px; }
  .contact-form { padding: 28px 20px; }

  .whatsapp { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .whatsapp svg { width: 24px; height: 24px; }

  .marquee-track span { font-size: 0.6rem; padding: 0 14px; }

  .google-badge { font-size: 0.8rem; }
  .google-badge svg { width: 20px; height: 20px; }

  .dienst-card__body { padding: 24px; }
  .dienst-card__title { font-size: 1.15rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero__title { font-size: clamp(2rem, 11vw, 3rem); }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  .usp-grid { grid-template-columns: 1fr; }
  .usp-item { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 20px; }
  .usp-item:last-child { border-bottom: none; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; column-gap: 0; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 2rem; }

  .werkwijze-grid { grid-template-columns: 1fr; gap: 32px; }
  .werkwijze-step::before { display: none; }

  .navbar__mobile { padding: 24px 16px; }
  .navbar__mobile ul { gap: 18px; }

  .pakket__features li { font-size: 0.82rem; }
  .pakket__note { font-size: 0.72rem; }

  .testimonial-card { padding: 28px 22px; }

  .section-label { font-size: 0.62rem; }

  .b2b-banner { padding: 28px 20px !important; }
  .b2b-banner h3 { font-size: 1.1rem !important; }
  .b2b-banner p { font-size: 0.85rem !important; }
  .b2b-banner .btn { width: 100%; justify-content: center; }

  .over-image__photo { height: 280px; }
  .over-badge { padding: 16px 14px; }
  .over-badge .number { font-size: 1.6rem; }
  .over-badge .label { font-size: 0.65rem; }

  .footer__grid { gap: 32px; }
  .footer__col-title { font-size: 0.85rem; margin-bottom: 12px; }

  .dienst-card { aspect-ratio: 4/3; }

  .gallery-grid .gallery-item { aspect-ratio: 1; }

  .lightbox__close { top: 16px; right: 16px; font-size: 2rem; }
  .lightbox img { max-width: 96vw; max-height: 85vh; border-radius: 4px; }
}

@media (max-width: 375px) {
  .container { padding: 0 14px; }
  .hero__title { font-size: clamp(1.8rem, 12vw, 2.6rem); }
  .hero__eyebrow { font-size: 0.55rem; }
  .section { padding: 56px 0; }
  .section-title { font-size: 1.4rem; }
  .pakket { padding: 28px 18px; }
  .pakket__price .amount { font-size: 1.8rem; }
  .navbar__mobile { padding: 90px 20px 32px; }
  .navbar__mobile a { font-size: 1rem; padding: 16px 0; }
  .stat-num { font-size: 1.7rem; }
  .testimonial-card { padding: 24px 18px; }
  .testimonial-text { font-size: 0.85rem; }
  .over-image__photo { height: 240px; }
}
