/* ==============================================
   TWINGO SPECIALIST — STYLESHEET
   Secties: Reset | Topbar | Nav | Hero | Buttons |
   Cards | Forms | Embeds | Footer | WhatsApp | Responsive
   ============================================== */

/* Google Fonts geladen via <link> in HTML head voor betere laadprestaties */

/* Oceanwide — grote titels */
@font-face {
  font-family: 'Oceanwide';
  src: url('fonts/Oceanwide-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Oceanwide';
  src: url('fonts/Oceanwide-SemiboldOblique.otf') format('opentype');
  font-weight: 600;
  font-style: oblique;
  font-display: swap;
}

/* Skip-link toegankelijkheid */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-yellow);
  color: var(--dark-bg);
  padding: 0.5rem 1rem;
  font-weight: bold;
  z-index: 9999;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-yellow: #FFD700;
  --dark-bg: #111111;
  --dark-gray: #1a1a1a;
  --medium-gray: #2a2a2a;
  --white: #ffffff;
  --light-gray: #cccccc;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--dark-bg);
  background-image:
    radial-gradient(ellipse at 15% 40%, rgba(255, 215, 0, 0.04) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(255, 215, 0, 0.025) 0%, transparent 45%),
    linear-gradient(175deg, #0d0d0d 0%, #111111 50%, #131313 100%);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--primary-yellow);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--white);
}

/* Navigation */
nav {
  background-color: var(--dark-gray);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--primary-yellow);
  transition: box-shadow 0.3s ease;
}

nav.nav-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

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

.nav-logo {
  height: 32px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .nav-logo {
    height: 26px;
  }
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-yellow);
  border-bottom-color: var(--primary-yellow);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-yellow);
  transition: all 0.3s ease;
}

/* Main Content */
main {
  flex: 1;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary-yellow);
  color: var(--dark-bg);
}

.btn-primary:hover {
  background-color: #ffe94a;
  color: var(--dark-bg);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.45);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-yellow);
  border: 2px solid var(--primary-yellow);
}

.btn-secondary:hover {
  background-color: var(--primary-yellow);
  color: var(--dark-bg);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

/* Sections */
.section {
  margin-bottom: 3rem;
}

.section h2 {
  font-size: 2rem;
  font-family: 'Oceanwide', 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-yellow);
  text-align: center;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-card {
  background-color: var(--dark-gray);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--medium-gray);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-yellow);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.12);
}

.benefit-icon {
  width: 62px;
  height: 62px;
  background-color: var(--primary-yellow);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.benefit-card h3 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--white);
}

.benefit-card p {
  color: var(--light-gray);
  font-size: 0.95rem;
}


/* ============================================================
   VOORRAADPAGINA — Google Sheets
   ============================================================ */
.voorraad-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

/* Laadstatus */
.voorraad-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1rem;
  gap: 1rem;
}

.voorraad-loader {
  display: flex;
  gap: 0.5rem;
}

.loader-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-yellow);
  animation: dot-pulse 1.2s ease-in-out infinite;
}

.loader-dot:nth-child(2) { animation-delay: 0.2s; }
.loader-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dot-pulse {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40%            { transform: scale(1);   opacity: 1; }
}

.loader-tekst {
  color: var(--light-gray);
  font-size: 0.95rem;
}

.voorraad-fout,
.voorraad-leeg {
  color: var(--light-gray);
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
}

/* Grid */
.voorraad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* Auto-kaartje */
.auto-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border-top: 3px solid #FFD700;
  border-left: 1px solid #2a2a2a;
  border-right: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-top-color 0.3s ease, box-shadow 0.3s ease;
}

.auto-card:hover {
  transform: translateY(-4px);
  border-top-color: #ffe340;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.55);
}

.auto-card-img {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #111;
  flex-shrink: 0;
}

.auto-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
  background: #111;
}

.auto-card:hover .auto-card-img img {
  transform: scale(1.04);
}

.auto-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--medium-gray);
  font-size: 0.9rem;
  background: #111;
}

.auto-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.auto-card-model {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}

.auto-card-meta {
  color: var(--light-gray);
  font-size: 0.88rem;
  margin: 0;
}

.auto-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.badge {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  white-space: nowrap;
}

.badge-dark {
  background: #2a2a2a;
  color: var(--white);
}

.badge-apk {
  background: #1a4a2e;
  color: #7eebb0;
}

.auto-card-prijs {
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFD700;
  margin: 0.2rem 0 0;
}

.auto-card-bijz {
  color: var(--light-gray);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.auto-card-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: auto;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  background: #FFD700;
  color: #111;
  font-weight: 600;
  border-radius: 6px;
  font-size: 0.92rem;
  transition: background 0.2s, transform 0.2s;
}

.auto-card-btn:hover {
  background: #ffe340;
  color: #111;
  transform: none;
}

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

@media (max-width: 560px) {
  .voorraad-grid {
    grid-template-columns: 1fr;
  }
  .voorraad-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Forms */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--dark-gray);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid var(--medium-gray);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--white);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--medium-gray);
  border-radius: 5px;
  background-color: var(--dark-bg);
  color: var(--white);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

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

/* Intro Text */
.intro-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--light-gray);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Why Section */
.why-section {
  background-color: var(--dark-gray);
  padding: 2rem;
  border-radius: 10px;
  margin-top: 3rem;
  border: 1px solid var(--medium-gray);
}

.why-section h3 {
  color: var(--primary-yellow);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.why-section ul {
  list-style: none;
}

.why-section li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--light-gray);
}

.why-section li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-yellow);
  font-weight: bold;
}

/* Contact Info */
.contact-info {
  background-color: var(--dark-gray);
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
  border: 1px solid var(--medium-gray);
}

.contact-info h3 {
  color: var(--primary-yellow);
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: var(--light-gray);
}

.contact-info a {
  color: var(--primary-yellow);
}

/* Iframe Container */
.iframe-container {
  width: 100%;
  margin-top: 2rem;
}

/* Tally Container */
.tally-container {
  width: 100%;
  margin-top: 2rem;
}

.iframe-container iframe {
  border: none;
  border-radius: 10px;
}

/* Footer */
footer {
  background-color: var(--dark-gray);
  padding: 2rem;
  margin-top: auto;
  border-top: 1px solid var(--medium-gray);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--light-gray);
  font-size: 0.9rem;
}

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

.footer-copyright {
  color: var(--light-gray);
  font-size: 0.9rem;
}

/* Page Header */
.page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-header h1 {
  font-size: 2.5rem;
  font-family: 'Oceanwide', 'Inter', sans-serif;
  font-weight: 600;
  color: var(--primary-yellow);
  margin-bottom: 1rem;
}

/* SEO Text */
.seo-text {
  color: var(--light-gray);
  font-size: 0.95rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
  line-height: 1.7;
}

/* Legal Page */
.legal-section {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.legal-intro {
  color: var(--light-gray);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.legal-block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--medium-gray);
}

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

.legal-block h3 {
  color: var(--primary-yellow);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.legal-block p {
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.legal-list {
  list-style: none;
  margin-top: 0.5rem;
}

.legal-list li {
  color: var(--light-gray);
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
  line-height: 1.7;
}

.legal-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--primary-yellow);
}

/* Stagger benefit cards */
.benefits-grid .benefit-card:nth-child(2) { transition-delay: 0.1s; }
.benefits-grid .benefit-card:nth-child(3) { transition-delay: 0.2s; }

/* Page load fade-in (twingos) */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.page-fadein {
  animation: fadeInUp 0.7s ease both;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--dark-gray);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    display: none;
    border-bottom: 3px solid var(--primary-yellow);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 1rem;
  }

  nav {
    padding: 1rem;
  }

  main {
    padding: 1rem;
  }

  .hero {
    padding: 4rem 1.5rem;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section h2 {
    font-size: 1.5rem;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }

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

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

}

/* ============================================================
   BEDRIJFSFOTO'S (over-ons)
   ============================================================ */
.bedrijf-fotos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.bedrijf-foto {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  border: 1px solid var(--medium-gray);
}

@media (max-width: 600px) {
  .bedrijf-fotos {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   GOOGLE MAPS EMBED
   ============================================================ */
.maps-container {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--primary-yellow);
  margin-top: 1.5rem;
}


/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background-color: #151515;
  border-bottom: 1px solid #262626;
  padding: 0.35rem 2rem;
  font-size: 0.8rem;
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.topbar-link {
  color: #999;
  transition: color 0.3s ease;
}

.topbar-link:hover {
  color: var(--primary-yellow);
}

.topbar-divider {
  color: #3a3a3a;
}

.topbar-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.topbar-social-link {
  color: #888;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.topbar-social-link:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}

/* ============================================================
   FOOTER SOCIAL ICONS
   ============================================================ */
.footer-social {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  transition: filter 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.footer-social-link:hover {
  filter: brightness(0) invert(1);
  transform: translateY(-3px);
}

.footer-social-link svg {
  width: 28px;
  height: 28px;
  display: block;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
@keyframes tire-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.07); }
}

.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: bottom 0.3s ease;
}

.wa-tire {
  position: absolute;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: conic-gradient(
    #181818 0deg,   #181818 26deg,
    #303030 26deg,  #303030 52deg,
    #181818 52deg,  #181818 78deg,
    #303030 78deg,  #303030 104deg,
    #181818 104deg, #181818 130deg,
    #303030 130deg, #303030 156deg,
    #181818 156deg, #181818 182deg,
    #303030 182deg, #303030 208deg,
    #181818 208deg, #181818 234deg,
    #303030 234deg, #303030 260deg,
    #181818 260deg, #181818 286deg,
    #303030 286deg, #303030 312deg,
    #181818 312deg, #181818 338deg,
    #303030 338deg, #303030 360deg
  );
  animation: tire-spin 8s linear infinite;
  pointer-events: none;
}

.wa-rim {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 4px solid var(--primary-yellow);
  background: transparent;
  pointer-events: none;
}

.wa-btn {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: wa-pulse 2.5s ease infinite;
  transition: transform 0.3s ease;
}

.wa-btn:hover {
  transform: scale(1.08);
  color: white;
}

.wa-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: #1a1a1a;
  color: var(--white);
  font-size: 0.78rem;
  font-family: 'Inter', sans-serif;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  border: 1px solid #2a2a2a;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
}

/* ============================================================
   SOCIAL MEDIA SECTION (index.html)
   ============================================================ */
.social-section {
  background: var(--dark-gray);
}

.social-section .section-inner {
  text-align: center;
}

.social-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: var(--dark-bg);
  border: 1px solid var(--medium-gray);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-decoration: none;
  color: var(--white);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.social-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-yellow);
  box-shadow: 0 8px 28px rgba(255, 215, 0, 0.1);
  color: var(--white);
}

.social-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-card-icon svg {
  width: 56px;
  height: 56px;
}

.social-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.social-card-sub {
  font-size: 0.92rem;
  color: var(--light-gray);
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 600px) {
  .social-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   HOME PAGE — FULL REBUILD
   ============================================================ */

.home-main {
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-inner h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-yellow);
  text-align: center;
  margin-bottom: 3rem;
}

/* --- Statische Hero --- */
.hero-static {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.62);
  z-index: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 6vw;
  max-width: 860px;
}

.hero-label {
  display: inline-block;
  background: var(--primary-yellow);
  color: var(--dark-bg);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 0.3rem 0.85rem;
  border-radius: 0;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  font-variant: small-caps;
}

.hero-h1 {
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  margin: 0 0 1.5rem;
  animation: heroSlideIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-accent {
  color: var(--primary-yellow);
  text-shadow: 0 4px 32px rgba(255, 215, 0, 0.25);
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  line-height: 1.6;
  margin: 0 0 2rem;
  animation: heroSlideIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: heroSlideIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.btn-lg {
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark-bg);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Scroll-indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: 6vw;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50%       { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}

.hero-scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

/* Google-badge */
.hero-google-badge {
  position: absolute;
  bottom: 2rem;
  left: 6vw;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 0.45rem 0.85rem;
}

.hero-badge-stars {
  display: flex;
  gap: 1px;
}

.hero-badge-score {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.hero-badge-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}


/* Mobiel */
@media (max-width: 768px) {
  .hero-h1 {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .hero-google-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.65rem;
  }
}

/* --- Category Blocks --- */
.category-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.category-block {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  text-decoration: none;
  transition: filter 0.4s ease;
}

.category-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.2) 55%, transparent 100%);
  transition: opacity 0.4s ease;
}

.category-block:hover::before {
  opacity: 1;
}

.category-label {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
  padding: 1.5rem 1.75rem;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.category-block:hover .category-label {
  color: var(--primary-yellow);
}

/* --- Aankopen Gallery --- */
.aankopen-section {
  background: var(--dark-bg);
}

.aankopen-section .section-inner {
  text-align: center;
  max-width: 1400px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.carousel-wrapper {
  position: relative;
  margin-top: 2rem;
}

.carousel-track-outer {
  overflow: hidden;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.aankopen-card {
  flex: 0 0 320px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  background: var(--dark-gray);
  text-decoration: none;
  display: block;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.aankopen-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.6);
}

.aankopen-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: none;
  background: var(--dark-gray);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-btn:hover {
  background: var(--primary-yellow);
  color: var(--dark-bg);
}

@media (max-width: 600px) {
  .aankopen-section .section-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .carousel-track-outer {
    border-radius: 0;
  }

  .aankopen-card img {
    height: 220px;
  }

  .carousel-track {
    gap: 0;
  }
}

/* --- Feature Rows (alternating) --- */
.feature-rows-section .section-inner {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4.5rem;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row.reverse .feature-row-image {
  order: 2;
}

.feature-row.reverse .feature-row-text {
  order: 1;
}

.feature-row-image {
  border-radius: 12px;
  overflow: hidden;
  height: 320px;
}

.feature-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.feature-row-image:hover img {
  transform: scale(1.04);
}

.feature-row-text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-yellow);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.feature-row-text p {
  color: var(--light-gray);
  font-size: 1.05rem;
  line-height: 1.85;
}

.btn-dark {
  background-color: var(--dark-bg);
  color: var(--white);
}

.btn-dark:hover {
  background-color: #1f1f1f;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark-bg);
  border: 2px solid var(--dark-bg);
}

.btn-outline-dark:hover {
  background: var(--dark-bg);
  color: var(--primary-yellow);
  transform: translateY(-3px);
}

/* --- Home SEO text --- */
.home-seo {
  text-align: center;
  padding: 2.5rem 2rem 3.5rem;
}

.home-seo .seo-text {
  margin: 0 auto;
}

/* --- Home responsive --- */
@media (max-width: 900px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-row.reverse .feature-row-image { order: 0; }
  .feature-row.reverse .feature-row-text  { order: 0; }

  .section-inner {
    padding: 3.5rem 1.5rem;
  }
}

@media (max-width: 768px) {
  /* home-main mag geen padding krijgen van de algemene main-regel */
  .home-main {
    padding: 0 !important;
  }

  .category-blocks {
    grid-template-columns: 1fr;
  }

  .category-block {
    height: 220px;
  }

  .feature-row-image {
    height: 240px;
  }

  .section-inner {
    padding: 3rem 1.25rem;
  }

  .section-inner h2 {
    font-size: 1.7rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .category-block {
    height: 190px;
  }

  .section-inner {
    padding: 2.5rem 1rem;
  }
}

/* ============================================================
   KLANTREVIEWS
   ============================================================ */
.reviews-section {
  background: var(--dark-gray);
}

.reviews-stars {
  display: flex;
  gap: 2px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--dark-bg);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid #2a2a2a;
  transition: border-color 0.3s ease;
}

.review-card:hover {
  border-color: var(--primary-yellow);
}

.review-stars {
  display: flex;
  gap: 3px;
}

.review-text {
  color: var(--light-gray);
  font-size: 0.97rem;
  line-height: 1.75;
  flex: 1;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.review-time {
  font-size: 0.82rem;
  color: var(--medium-gray);
}

.reviews-more {
  text-align: center;
  margin-top: 2rem;
}

.reviews-more a {
  color: var(--primary-yellow);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

.reviews-more a:hover {
  opacity: 0.75;
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   AUTO MODAL
   ============================================================ */
.auto-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}

.auto-modal-overlay.open {
  display: flex;
}

.auto-modal-inner {
  background: #1a1a1a;
  border-radius: 14px;
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #2a2a2a;
}

.auto-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  background: rgba(0,0,0,0.6);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s;
}

.auto-modal-close:hover {
  background: var(--primary-yellow);
  color: var(--dark-bg);
}

/* Gallery */
.auto-modal-gallery {
  position: relative;
  background: #111;
  border-radius: 14px 0 0 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
}

#modal-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 5;
}

.modal-arrow:hover { background: var(--primary-yellow); color: var(--dark-bg); }
.modal-prev { left: 0.5rem; }
.modal-next { right: 0.5rem; }

.modal-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 5;
}

.mdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.mdot-active {
  background: var(--primary-yellow);
  transform: scale(1.3);
}

/* Body */
.auto-modal-body {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow-y: visible;
  height: auto;
  min-height: 480px;
}

.auto-modal-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}

.modal-specs {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.modal-spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid #2a2a2a;
}

.modal-spec-label {
  color: var(--light-gray);
}

.modal-spec-val {
  color: var(--white);
  font-weight: 500;
  text-align: right;
}

.modal-bijz-wrap h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--medium-gray);
  margin-bottom: 0.4rem;
}

.modal-bijz-wrap p {
  color: var(--light-gray);
  font-size: 0.88rem;
  line-height: 1.65;
  white-space: pre-line;
}

/* Proefrit knop in modal */
.modal-proefrit-btn {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  flex-shrink: 0;
}

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  overflow: hidden;
}

.lightbox-overlay.open {
  display: block;
}

.lightbox-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 6px;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  font-size: 1.75rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: var(--primary-yellow);
  color: var(--dark-bg);
}

/* Foto-teller badge op kaartje */
.foto-count {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0,0,0,0.65);
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  pointer-events: none;
}

/* Hint tekst onderaan kaartje */
.auto-card-hint {
  font-size: 0.78rem;
  color: var(--medium-gray);
  margin-top: auto;
  padding-top: 0.5rem;
}

/* Modal responsive */
@media (max-width: 680px) {
  .auto-modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .auto-modal-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    max-height: 90vh;
    height: auto;
    border-radius: 14px 14px 0 0;
    width: 100%;
    overflow: hidden;
  }

  .auto-modal-gallery {
    border-radius: 14px 14px 0 0;
    height: 240px;
    flex-shrink: 0;
  }

  #modal-img {
    max-height: 240px;
  }

  .auto-modal-body {
    padding: 1.25rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}


/* ============================================================
   STATISTIEKEN BALK
   ============================================================ */
.stats-bar {
  display: flex;
  align-items: stretch;
  background: #111111;
  padding: 1.5rem 2rem;
  margin-top: -4rem;
  position: relative;
  z-index: 4;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem 1rem;
}

.stat-number,
.stat-static {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--primary-yellow);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.75rem;
  color: #aaaaaa;
  margin-top: 0.35rem;
  text-align: center;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
  margin: 0.5rem 0;
}

@media (max-width: 640px) {
  .stats-bar {
    flex-wrap: wrap;
    padding: 1.25rem 1rem;
  }

  .stat-item {
    flex: 0 0 50%;
    padding: 0.75rem 0.5rem;
  }

  .stat-divider {
    display: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(3) {
    border-right: 1px solid rgba(255,255,255,0.12);
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(3) {
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
}

/* ============================================================
   SECTIE-LABEL
   ============================================================ */
.sectie-label {
  display: inline-block;
  background: var(--primary-yellow);
  color: var(--dark-bg);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

/* ============================================================
   DIRECTIONAL SCROLL REVEAL
   ============================================================ */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left.in-view,
.reveal-right.in-view,
.reveal.in-view,
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   FEATURE ROWS — NIEUWE OPZET (ZONDER OUTER WRAPPER H2)
   ============================================================ */
.feature-rows-section {
  background: var(--dark-gray);
}

.feature-rows-section .feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}

.feature-rows-section .feature-row.reverse {
  direction: rtl;
}

.feature-rows-section .feature-row.reverse > * {
  direction: ltr;
}

.feature-rows-section .feature-row-image {
  overflow: hidden;
}

.feature-rows-section .feature-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.feature-rows-section .feature-row:hover .feature-row-image img {
  transform: scale(1.03);
}

.feature-rows-section .feature-row-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 4rem;
  background: var(--dark-gray);
}

.feature-rows-section .feature-row-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--white);
  margin: 0 0 1rem;
}

.feature-rows-section .feature-row-text p {
  color: var(--light-gray);
  line-height: 1.7;
  margin: 0 0 1.75rem;
}

@media (max-width: 768px) {
  .feature-rows-section .feature-row,
  .feature-rows-section .feature-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    min-height: unset;
  }

  .feature-rows-section .feature-row-image {
    height: 240px;
  }

  .feature-rows-section .feature-row.reverse .feature-row-image {
    order: -1;
  }

  .feature-rows-section .feature-row-text {
    padding: 2rem 1.5rem;
  }
}

/* ============================================================
   GELE CTA BANNER
   ============================================================ */
.cta-yellow {
  background: var(--primary-yellow);
  padding: 4rem 2rem;
}

.cta-yellow-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-yellow-text h2 {
  color: var(--dark-bg);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 0 0 0.5rem;
}

.cta-yellow-text p {
  color: #333333;
  margin: 0;
  font-size: 1rem;
}

.cta-yellow-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .cta-yellow-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .cta-yellow-buttons {
    justify-content: center;
  }
}

/* ============================================================
   LOCATIE SECTIE
   ============================================================ */
.locatie-section {
  background: var(--dark-bg);
  padding: 0;
}

.locatie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.locatie-map {
  position: relative;
}

.locatie-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  filter: grayscale(20%);
}

.locatie-info {
  padding: 3.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark-gray);
}

.locatie-info h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--white);
  margin: 0 0 1.75rem;
}

.locatie-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.locatie-detail-item {
  display: flex;
  gap: 1.5rem;
  align-items: start;
}

.locatie-detail-item strong {
  flex: 0 0 140px;
  color: var(--primary-yellow);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 0.1rem;
}

.locatie-detail-item span {
  color: var(--light-gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

.locatie-detail-item a {
  color: var(--light-gray);
  text-decoration: none;
}

.locatie-detail-item a:hover {
  color: var(--primary-yellow);
}

@media (max-width: 768px) {
  .locatie-grid {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .locatie-map iframe {
    min-height: 280px;
  }

  .locatie-info {
    padding: 2rem 1.5rem;
  }
}

/* ============================================================
   REVIEWS HEADER
   ============================================================ */
.reviews-header-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.reviews-header-score {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.reviews-header-rating {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}

.reviews-header-score .reviews-stars {
  display: flex;
  gap: 2px;
}
