/*
Theme Name: VR Activiteiten Child
Template: hello-elementor
Version: 1.0
Description: Child theme voor vractiviteiten.nl — premium dark VR design
*/

/* ============================================================
   CSS VARIABELEN
   ============================================================ */
:root {
  --vr-ink:        #0f0e0c;
  --vr-ink-mid:    #1a1916;
  --vr-ink-light:  #252320;
  --vr-gold:       #b8976a;
  --vr-gold-light: #d4b98a;
  --vr-gold-pale:  #f0e6d6;
  --vr-white:      #faf9f6;
  --vr-grey:       #8a8780;
  --vr-border:     rgba(184,151,106,0.2);
  --vr-radius:     8px;
  --vr-radius-lg:  16px;
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', sans-serif;
  --transition:    0.3s ease;
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--vr-ink);
  color: var(--vr-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

img { max-width: 100%; height: auto; }

a {
  color: var(--vr-gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--vr-gold-light); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--vr-white);
  line-height: 1.2;
  margin-top: 0;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 500; }

p { margin-bottom: 1.2em; color: rgba(250,249,246,0.85); }

/* ============================================================
   GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ============================================================
   NAVIGATIE
   ============================================================ */
.vr-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,14,12,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--vr-border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.vr-nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--vr-white);
}

.vr-nav-logo span { color: var(--vr-gold); }

.vr-nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
}

.vr-nav-links a {
  color: rgba(250,249,246,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.vr-nav-links a:hover { color: var(--vr-gold); }

.vr-nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.vr-nav-tel {
  color: var(--vr-gold);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ============================================================
   KNOPPEN
   ============================================================ */
.vr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--vr-radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.vr-btn-primary {
  background: var(--vr-gold);
  color: var(--vr-ink);
}
.vr-btn-primary:hover {
  background: var(--vr-gold-light);
  color: var(--vr-ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,151,106,0.35);
}

.vr-btn-outline {
  background: transparent;
  color: var(--vr-white);
  border: 1.5px solid rgba(250,249,246,0.3);
}
.vr-btn-outline:hover {
  border-color: var(--vr-gold);
  color: var(--vr-gold);
}

.vr-btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ============================================================
   HERO SECTIE
   ============================================================ */
.vr-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

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

.vr-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,14,12,0.92) 0%,
    rgba(15,14,12,0.78) 50%,
    rgba(15,14,12,0.65) 100%
  );
  z-index: 1;
}

.vr-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.vr-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,151,106,0.15);
  border: 1px solid rgba(184,151,106,0.4);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vr-gold);
  margin-bottom: 24px;
}

.vr-badge-dot {
  width: 8px; height: 8px;
  background: var(--vr-gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.vr-hero h1 {
  margin-bottom: 20px;
  color: var(--vr-white);
}

.vr-hero h1 em {
  font-style: normal;
  color: var(--vr-gold);
}

.vr-hero-lead {
  font-size: 1.15rem;
  color: rgba(250,249,246,0.8);
  margin-bottom: 36px;
  max-width: 540px;
}

.vr-hero-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.vr-usp-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(250,249,246,0.07);
  border: 1px solid rgba(250,249,246,0.12);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
}

.vr-usp-pill .icon { color: var(--vr-gold); }

/* Hero formulier */
.vr-hero-form {
  background: rgba(26,25,22,0.95);
  border: 1px solid var(--vr-border);
  border-radius: var(--vr-radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(16px);
}

.vr-form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--vr-white);
  margin-bottom: 6px;
}

.vr-form-subtitle {
  font-size: 0.85rem;
  color: var(--vr-grey);
  margin-bottom: 24px;
}

.vr-form-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.vr-form-step {
  flex: 1;
  height: 3px;
  background: rgba(250,249,246,0.1);
  border-radius: 2px;
  transition: background var(--transition);
}

.vr-form-step.active { background: var(--vr-gold); }

.vr-form-group { margin-bottom: 16px; }

.vr-form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--vr-grey);
  margin-bottom: 8px;
}

.vr-form-group input,
.vr-form-group select,
.vr-form-group textarea {
  width: 100%;
  background: rgba(250,249,246,0.05);
  border: 1px solid rgba(250,249,246,0.12);
  border-radius: var(--vr-radius);
  padding: 12px 16px;
  color: var(--vr-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.vr-form-group input:focus,
.vr-form-group select:focus,
.vr-form-group textarea:focus {
  border-color: var(--vr-gold);
  background: rgba(184,151,106,0.06);
}

.vr-form-group select { cursor: pointer; }

.vr-form-group select option { background: var(--vr-ink-mid); }

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

.vr-form-privacy {
  font-size: 0.75rem;
  color: var(--vr-grey);
  text-align: center;
  margin-top: 12px;
}

/* ============================================================
   TRUST BALK
   ============================================================ */
.vr-trust-bar {
  background: var(--vr-ink-mid);
  border-top: 1px solid var(--vr-border);
  border-bottom: 1px solid var(--vr-border);
  padding: 28px 40px;
}

.vr-trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.vr-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(250,249,246,0.85);
}

.vr-trust-icon {
  width: 40px; height: 40px;
  background: rgba(184,151,106,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ============================================================
   SECTIES ALGEMEEN
   ============================================================ */
.vr-section {
  padding: 100px 40px;
}

.vr-section-dark { background: var(--vr-ink); }
.vr-section-mid  { background: var(--vr-ink-mid); }

.vr-container {
  max-width: 1200px;
  margin: 0 auto;
}

.vr-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.vr-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vr-gold);
  margin-bottom: 14px;
}

.vr-section-header h2 { margin-bottom: 16px; }

.vr-section-header p {
  font-size: 1.05rem;
  color: rgba(250,249,246,0.7);
}

/* ============================================================
   STATISTIEKEN
   ============================================================ */
.vr-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--vr-border);
  border-radius: var(--vr-radius-lg);
  overflow: hidden;
}

.vr-stat-item {
  background: var(--vr-ink-mid);
  padding: 40px 32px;
  text-align: center;
}

.vr-stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--vr-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.vr-stat-label {
  font-size: 0.85rem;
  color: var(--vr-grey);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   GRID KAARTEN
   ============================================================ */
.vr-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.vr-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vr-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.vr-card {
  background: var(--vr-ink-light);
  border: 1px solid var(--vr-border);
  border-radius: var(--vr-radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.vr-card:hover {
  border-color: rgba(184,151,106,0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.vr-card-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}

.vr-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.vr-card p {
  font-size: 0.9rem;
  color: rgba(250,249,246,0.65);
  margin: 0;
}

/* Doelgroep kaart met achtergrond afbeelding */
.vr-target-card {
  position: relative;
  border-radius: var(--vr-radius-lg);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: transform var(--transition);
}

.vr-target-card:hover { transform: scale(1.02); }

.vr-target-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.vr-target-card:hover .vr-target-card-bg { transform: scale(1.06); }

.vr-target-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,14,12,0.92) 0%, rgba(15,14,12,0.3) 60%, transparent 100%);
}

.vr-target-card-content {
  position: relative;
  z-index: 1;
  padding: 28px 24px 24px;
}

.vr-target-card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.vr-target-card-content p {
  font-size: 0.85rem;
  color: rgba(250,249,246,0.75);
  margin: 0;
}

/* ============================================================
   STAPPEN
   ============================================================ */
.vr-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.vr-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--vr-gold), transparent);
}

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

.vr-step-number {
  width: 56px; height: 56px;
  background: var(--vr-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--vr-ink);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.vr-step h3 { font-size: 1.05rem; margin-bottom: 10px; }
.vr-step p  { font-size: 0.88rem; color: rgba(250,249,246,0.65); }

/* ============================================================
   REVIEWS
   ============================================================ */
.vr-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.vr-review-card {
  background: var(--vr-ink-light);
  border: 1px solid var(--vr-border);
  border-radius: var(--vr-radius-lg);
  padding: 32px;
}

.vr-review-stars {
  color: var(--vr-gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.vr-review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(250,249,246,0.85);
  margin-bottom: 24px;
  font-style: italic;
}

.vr-reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.vr-reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--vr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--vr-ink);
  flex-shrink: 0;
}

.vr-reviewer-name { font-weight: 600; font-size: 0.9rem; }
.vr-reviewer-company { font-size: 0.8rem; color: var(--vr-grey); }

.vr-google-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 40px;
  background: var(--vr-ink-light);
  border: 1px solid var(--vr-border);
  border-radius: var(--vr-radius-lg);
  max-width: 420px;
  margin: 0 auto;
}

.vr-google-score-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--vr-gold);
  line-height: 1;
}

.vr-google-score-label { font-size: 0.85rem; color: var(--vr-grey); margin-top: 4px; }

/* ============================================================
   STEDEN GRID
   ============================================================ */
.vr-cities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.vr-city-link {
  background: var(--vr-ink-light);
  border: 1px solid var(--vr-border);
  border-radius: var(--vr-radius);
  padding: 16px 12px;
  text-align: center;
  color: rgba(250,249,246,0.75);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
  display: block;
}

.vr-city-link:hover {
  border-color: var(--vr-gold);
  color: var(--vr-gold);
  background: rgba(184,151,106,0.08);
}

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

.vr-faq-item {
  border-bottom: 1px solid var(--vr-border);
}

.vr-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  color: var(--vr-white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
}

.vr-faq-icon {
  width: 32px; height: 32px;
  background: rgba(184,151,106,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vr-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}

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

.vr-faq-answer {
  display: none;
  padding: 0 0 24px;
  color: rgba(250,249,246,0.75);
  font-size: 0.95rem;
  line-height: 1.8;
}

.vr-faq-item.open .vr-faq-answer { display: block; }

/* ============================================================
   SEO TEKST SECTIE
   ============================================================ */
.vr-seo-section {
  padding: 100px 40px;
  background: var(--vr-ink-mid);
}

.vr-seo-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

.vr-seo-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.vr-seo-content h3 {
  font-size: 1.3rem;
  color: var(--vr-gold-light);
  margin: 36px 0 14px;
}

.vr-seo-content p { font-size: 0.95rem; color: rgba(250,249,246,0.8); }

.vr-seo-sidebar { position: sticky; top: 100px; }

.vr-sidebar-widget {
  background: var(--vr-ink-light);
  border: 1px solid var(--vr-border);
  border-radius: var(--vr-radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}

.vr-sidebar-widget h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vr-gold);
  margin-bottom: 16px;
}

.vr-toc-list {
  list-style: none;
  padding: 0; margin: 0;
}

.vr-toc-list li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.vr-toc-list a {
  font-size: 0.85rem;
  color: rgba(250,249,246,0.65);
}

.vr-toc-list a:hover { color: var(--vr-gold); }

.vr-fact-list {
  list-style: none;
  padding: 0; margin: 0;
}

.vr-fact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.85rem;
  color: rgba(250,249,246,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.vr-fact-list li::before {
  content: '✓';
  color: var(--vr-gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   CTA SECTIE
   ============================================================ */
.vr-cta-section {
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--vr-ink);
}

.vr-cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,151,106,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.vr-cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.vr-cta-section p {
  font-size: 1.1rem;
  color: rgba(250,249,246,0.7);
  max-width: 500px;
  margin: 0 auto 40px;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.vr-footer {
  background: rgba(10,10,9,1);
  border-top: 1px solid var(--vr-border);
  padding: 64px 40px 32px;
}

.vr-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.vr-footer-brand p {
  font-size: 0.9rem;
  color: rgba(250,249,246,0.55);
  max-width: 280px;
  margin-top: 12px;
}

.vr-footer h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vr-gold);
  margin-bottom: 20px;
}

.vr-footer-links {
  list-style: none;
  padding: 0; margin: 0;
}

.vr-footer-links li { margin-bottom: 10px; }

.vr-footer-links a {
  font-size: 0.88rem;
  color: rgba(250,249,246,0.55);
  transition: color var(--transition);
}

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

.vr-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(250,249,246,0.35);
}

/* ============================================================
   FLOATING ELEMENTEN
   ============================================================ */
.vr-whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  color: white;
  text-decoration: none;
}

.vr-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
  color: white;
}

.vr-sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--vr-gold);
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.vr-sticky-cta.visible { transform: translateY(0); }

.vr-sticky-cta-text {
  font-weight: 600;
  color: var(--vr-ink);
  font-size: 1rem;
}

.vr-sticky-cta a {
  background: var(--vr-ink);
  color: var(--vr-gold);
  padding: 10px 24px;
  border-radius: var(--vr-radius);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.vr-breadcrumb {
  padding: 24px 40px;
  background: var(--vr-ink-mid);
  border-bottom: 1px solid var(--vr-border);
}

.vr-breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--vr-grey);
}

.vr-breadcrumb a { color: var(--vr-grey); }
.vr-breadcrumb a:hover { color: var(--vr-gold); }
.vr-breadcrumb-sep { opacity: 0.4; }
.vr-breadcrumb-current { color: var(--vr-gold-light); }

/* ============================================================
   PAGINA HERO (niet video, voor landingspagina's)
   ============================================================ */
.vr-page-hero {
  background: linear-gradient(135deg, var(--vr-ink) 0%, var(--vr-ink-mid) 100%);
  padding: 120px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vr-page-hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(184,151,106,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.vr-page-hero h1 { position: relative; z-index: 1; }
.vr-page-hero p { position: relative; z-index: 1; max-width: 600px; margin: 0 auto 36px; font-size: 1.1rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .vr-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .vr-cities-grid { grid-template-columns: repeat(4, 1fr); }
  .vr-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .vr-hero-content { grid-template-columns: 1fr; gap: 48px; }
  .vr-section { padding: 64px 24px; }
  .vr-grid-3 { grid-template-columns: 1fr 1fr; }
  .vr-steps { grid-template-columns: 1fr 1fr; }
  .vr-steps::before { display: none; }
  .vr-reviews-grid { grid-template-columns: 1fr; }
  .vr-seo-layout { grid-template-columns: 1fr; }
  .vr-seo-sidebar { position: static; }
  .vr-nav-links { display: none; }
}

@media (max-width: 640px) {
  .vr-grid-2, .vr-grid-3, .vr-grid-4 { grid-template-columns: 1fr; }
  .vr-stats-grid { grid-template-columns: 1fr 1fr; }
  .vr-cities-grid { grid-template-columns: repeat(3, 1fr); }
  .vr-steps { grid-template-columns: 1fr; }
  .vr-footer-grid { grid-template-columns: 1fr; }
  .vr-sticky-cta { display: none; }
  .vr-hero-form { padding: 28px 20px; }
  .vr-form-row { grid-template-columns: 1fr; }
}
