/* =============================================================================
   Bandenbazaar Tilburg — Main stylesheet
   ============================================================================= */

:root {
  --red: #C8001E;
  --red-dark: #9E0018;
  --black: #1A1A1A;
  --charcoal: #2C2C2A;
  --gray: #6B6B6B;
  --gray-light: #E0DEDD;
  --light: #F4F4F2;
  --white: #FFFFFF;
  --star: #F5A623;
  --green: #2A9D5F;

  --font-display: 'Barlow Condensed', Arial, sans-serif;
  --font-body: 'Barlow', Arial, sans-serif;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.12);

  --radius: 6px;
  --radius-lg: 12px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--black); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; color: var(--black); line-height: 1.1; }
h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 3.5vw, 40px); }
h3 { font-size: clamp(22px, 2.2vw, 28px); }
h4 { font-size: 18px; font-weight: 700; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .15s ease;
  text-align: center;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); text-decoration: none; }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); text-decoration: none; }
.btn-outline-dark { background: transparent; border-color: var(--black); color: var(--black); }
.btn-outline-dark:hover { background: var(--black); color: var(--white); text-decoration: none; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-block { display: block; width: 100%; }

/* ---- Header ---- */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--gray-light);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  text-decoration: none;
  color: var(--black);
}
.logo:hover { text-decoration: none; }
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--red);
  color: var(--white);
  border-radius: 4px;
  font-size: 20px;
}
.logo-text span { color: var(--red); }

.main-nav { display: flex; gap: 28px; flex: 1; }
.main-nav a { font-weight: 500; font-size: 15px; color: var(--charcoal); }
.main-nav a:hover { color: var(--red); text-decoration: none; }

.header-cta { display: flex; align-items: center; gap: 16px; }
.phone-link { font-weight: 600; color: var(--black); font-size: 15px; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
}

/* ---- Hero ---- */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,0,30,.25), transparent 60%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 .accent { color: var(--red); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.82);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-rating { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.stars { color: var(--star); font-size: 18px; letter-spacing: 2px; }
.hero-visual {
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.06);
  font-family: var(--font-display);
  font-size: 28px;
  color: rgba(255,255,255,.2);
}

/* ---- USP balk ---- */
.usp-bar {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-light);
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}
.usp-item svg { flex-shrink: 0; color: var(--red); }

/* ---- Sections ---- */
.section { padding: 80px 0; }
.section-gray { background: var(--light); }
.section-dark { background: var(--black); color: var(--white); }
.section-dark h2 { color: var(--white); }
.section-red { background: var(--red); color: var(--white); }
.section-red h2 { color: var(--white); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--gray); max-width: 600px; margin: 0 auto; font-size: 18px; }
.section-dark .section-header p { color: rgba(255,255,255,.7); }

/* ---- Service grid ---- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-light);
  transition: border-color .2s, transform .2s;
  display: block;
  color: var(--charcoal);
}
.service-card:hover {
  border-color: var(--black);
  transform: translateY(-2px);
  text-decoration: none;
}
.service-card-icon {
  display: inline-flex;
  width: 48px; height: 48px;
  background: var(--light);
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--red);
}
.service-card h3 { margin-bottom: 8px; }
.service-card .price { color: var(--red); font-weight: 600; font-size: 14px; }
.service-card .arrow { display: inline-block; margin-top: 16px; color: var(--red); font-weight: 600; font-size: 14px; }

/* ---- Steps ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.step { text-align: left; }
.step-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.step h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--gray); font-size: 15px; }

/* ---- Reviews ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.review-card {
  background: var(--white);
  color: var(--charcoal);
  padding: 28px;
  border-radius: var(--radius-lg);
}
.review-card .stars { font-size: 16px; margin-bottom: 12px; }
.review-card p { font-size: 15px; margin-bottom: 16px; line-height: 1.6; }
.review-card .author { font-weight: 600; font-size: 14px; }
.review-card .date { color: var(--gray); font-size: 13px; }

.google-score {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--charcoal);
  padding: 14px 22px;
  border-radius: var(--radius-lg);
  font-size: 15px;
  margin-bottom: 32px;
}
.google-score strong { font-size: 22px; color: var(--black); }

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-light);
  padding: 20px 0;
}
.faq-item summary {
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--red); font-size: 24px; font-weight: 300; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin-top: 12px; color: var(--gray); }

/* ---- CTA Banner ---- */
.cta-banner { padding: 64px 0; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 24px; }

/* ---- Footer ---- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.75);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.logo-footer { color: var(--white); margin-bottom: 16px; }
.footer-text { font-size: 14px; line-height: 1.9; }
.footer-text a { color: rgba(255,255,255,.75); }
.footer-text a:hover { color: var(--white); }
.site-footer h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 8px; font-size: 14px; }
.site-footer ul a { color: rgba(255,255,255,.75); }
.site-footer ul a:hover { color: var(--white); }
.site-footer .hours-table td {
  font-size: 14px;
  padding: 4px 12px 4px 0;
}
.site-footer .hours-table td:first-child { font-weight: 600; color: var(--white); text-transform: capitalize; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,.6); }

/* ---- Mobile call button ---- */
.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 99;
  transition: background .2s;
}
.mobile-call-btn:hover {
  background: #1ebe5d;
}

/* ---- APK dag-boeking info ---- */
.apk-info-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff8f8;
  border: 1px solid rgba(200,0,0,0.15);
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 20px;
}
.apk-info-box p {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.5;
}

/* ---- Booking wizard ---- */
.wizard {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px;
}
.wizard-progress {
  display: flex;
  margin-bottom: 40px;
  gap: 4px;
}
.wizard-progress .p-step {
  flex: 1;
  height: 4px;
  background: var(--gray-light);
  border-radius: 100px;
}
.wizard-progress .p-step.active { background: var(--red); }
.wizard-step { display: none; }
.wizard-step.active { display: block; animation: fadein .2s ease; }
@keyframes fadein { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.wizard h2 { margin-bottom: 12px; }
.wizard-helper { color: var(--gray); margin-bottom: 28px; font-size: 16px; }

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.option-card {
  background: var(--white);
  border: 2px solid var(--gray-light);
  padding: 20px;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  transition: all .15s;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
}
.option-card:hover { border-color: var(--black); }
.option-card.selected { border-color: var(--red); background: #FEF4F5; }
.option-card .label { font-weight: 600; font-size: 16px; margin-bottom: 4px; display: block; }
.option-card .meta { color: var(--gray); font-size: 13px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 500; font-size: 14px; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-hint { color: var(--gray); font-size: 13px; margin-top: 4px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }

/* Kalender — maandweergave met weeknummers */
#date-grid {
  margin-bottom: 24px;
  user-select: none;
}
.cal-month-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  margin: 24px 0 8px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--red);
}
.cal-month-title:first-of-type { margin-top: 0; }

.cal-week-header,
.cal-week-row {
  display: grid;
  grid-template-columns: 32px repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}
.cal-week-header {
  margin-bottom: 6px;
}
.cal-week-header span {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gray);
  padding: 4px 0;
}
.cal-week-header .cal-wk-label {
  color: var(--gray-light);
  font-size: 10px;
}
.cal-wk-num {
  font-size: 11px;
  color: var(--gray-light);
  text-align: center;
  padding-top: 14px;
  font-weight: 500;
}
.cal-empty { /* lege cel voor uitlijning */ }

.date-btn {
  border: 1px solid var(--gray-light);
  background: var(--white);
  padding: 10px 4px 8px;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  font-size: 13px;
  font-family: var(--font-body);
  position: relative;
  transition: border-color .15s, background .15s;
}
.date-btn:disabled { background: var(--light); color: var(--gray-light); cursor: not-allowed; opacity: .4; }
.date-btn.selected { background: var(--red); color: var(--white); border-color: var(--red); }
.date-btn.has-slots:not(.selected) { border-color: var(--green); background: #f0fff6; }
.date-btn.has-slots:not(.selected):hover { background: #dcf5e7; }
.date-btn .day { font-weight: 700; display: block; font-size: 15px; }
.date-btn .slots-dot {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  margin: 4px auto 0;
}
.date-btn.selected .slots-dot { background: rgba(255,255,255,.6); }


.time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 8px;
}
.time-btn {
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 10px;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
}
.time-btn:hover { border-color: var(--black); }
.time-btn.selected { background: var(--red); color: var(--white); border-color: var(--red); }

.wizard-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-light);
}

.summary {
  background: var(--light);
  padding: 24px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.summary dl { display: grid; grid-template-columns: 1fr 2fr; gap: 8px 16px; }
.summary dt { font-weight: 600; color: var(--gray); font-size: 14px; }
.summary dd { font-size: 15px; color: var(--black); }

.alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 16px;
}
.alert-error { background: #FCEBEC; color: var(--red-dark); border: 1px solid #F5C7CB; }
.alert-success { background: #E7F5EE; color: #1F7A47; border: 1px solid #BFE3D0; }

/* ---- Page headers ---- */
.page-hero {
  background: var(--light);
  padding: 64px 0;
  text-align: center;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--gray); font-size: 18px; max-width: 600px; margin: 0 auto; }

/* ---- Admin ---- */
.admin-body { background: var(--light); min-height: 100vh; }
.admin-header {
  background: var(--black);
  color: var(--white);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-nav { display: flex; gap: 20px; }
.admin-nav a { color: rgba(255,255,255,.8); font-size: 14px; }
.admin-nav a.active { color: var(--white); }
.admin-container { max-width: 1200px; margin: 32px auto; padding: 0 24px; }
.admin-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.stat-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.stat-label { color: var(--gray); font-size: 13px; text-transform: uppercase; letter-spacing: .5px; }
.stat-value { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--black); }

.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  background: var(--light);
  text-align: left;
  padding: 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gray);
  border-bottom: 1px solid var(--gray-light);
}
.data-table td {
  padding: 12px;
  border-bottom: 1px solid var(--gray-light);
  font-size: 14px;
}
.data-table tr:hover { background: var(--light); }
.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}
.status-confirmed { background: #E7F5EE; color: #1F7A47; }
.status-cancelled { background: #FCEBEC; color: var(--red-dark); }
.status-completed { background: #E7EAF4; color: #2A4A8F; }

.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}
.login-box {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 400px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .main-nav, .phone-link { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 24px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    z-index: 100;
    gap: 0;
  }
  .main-nav.open a {
    padding: 12px 0;
    font-size: 17px;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }
  .main-nav.open a:last-child { border-bottom: 0; }
  .hero { padding: 64px 0; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .mobile-call-btn { display: flex; }
  .option-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 56px 0; }
  .cal-week-header, .cal-week-row { grid-template-columns: 24px repeat(7, 1fr); gap: 2px; }
}

@media (max-width: 500px) {
  .header-cta .btn { padding: 8px 14px; font-size: 13px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .btn { padding: 14px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ---- Promotiebanner ---- */
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.promo-banner {
  background: #111;
  color: var(--white);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.promo-banner:hover .promo-track { animation-play-state: paused; }
.promo-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: ticker 22s linear infinite;
  will-change: transform;
}
.promo-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 48px;
}
.promo-item a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.4);
  font-weight: 600;
  font-size: 14px;
}
.promo-item a:hover { text-decoration-color: var(--white); }
.promo-sep {
  color: var(--red);
  font-size: 18px;
  font-weight: 300;
  opacity: 0.6;
}
.promo-tag {
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.promo-text {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}
.promo-text strong { color: var(--white); }
.promo-deadline {
  display: inline-block;
  margin-left: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
}
/* Verberg de knop in ticker modus — link in tekst werkt */
.promo-btn { display: none; }
@media (max-width: 600px) {
  .promo-track { animation-duration: 18s; }
  .promo-text { font-size: 13px; }
}

/* ---- Content pagina's (banden/diensten) ---- */
.content-page { max-width: 760px; }
.content-page .lead {
  font-size: 17px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 32px;
  border-left: 3px solid var(--red);
  padding-left: 16px;
}
.content-page h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin: 36px 0 12px;
  color: var(--charcoal);
}
.content-page p { margin-bottom: 16px; color: #444; }
.content-list {
  margin: 12px 0 20px 20px;
  color: #444;
}
.content-list li { margin-bottom: 8px; }
.info-box {
  background: #fff8f8;
  border: 1px solid rgba(204,0,0,0.15);
  border-left: 4px solid var(--red);
  border-radius: 6px;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 14px;
  color: #555;
}
.info-box strong { color: var(--red); }
.cta-inline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0;
}
.page-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #eee;
  font-size: 14px;
}
.page-nav a { color: var(--red); text-decoration: none; }
.page-nav a:hover { text-decoration: underline; }
.hero-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.hero-breadcrumb a { color: rgba(255,255,255,0.85); text-decoration: none; }
.hero-breadcrumb a:hover { color: white; }

/* ---- FAQ ---- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 15px;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 3px solid var(--red);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--red);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 16px;
}
details[open] .faq-question::after { content: '−'; }
.faq-answer {
  padding: 16px 20px;
  font-size: 15px;
  color: #444;
  border-top: 1px solid #f0f0f0;
  line-height: 1.6;
}
.faq-answer p { margin: 0; }


/* ---- Cookie Consent Banner ---- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.15);
  border-top: 3px solid #C8001E;
  font-family: 'Barlow', Arial, sans-serif;
}

.cookie-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 24px 24px 20px;
}

.cookie-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.cookie-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #1A1A1A;
  flex-shrink: 0;
}

.cookie-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #C8001E;
  color: #fff;
  border-radius: 4px;
  font-size: 15px;
}

.cookie-logo-text span { color: #C8001E; }

.cookie-title {
  font-weight: 700;
  font-size: 16px;
  color: #1A1A1A;
  margin: 0;
}

.cookie-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0 0 16px;
}

/* Details toggles */
#cookie-details {
  background: #F4F4F2;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #E0DEDD;
  gap: 16px;
}

.cookie-toggle-row:last-child { border-bottom: none; }

.cookie-toggle-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cookie-toggle-info strong {
  font-size: 14px;
  color: #1A1A1A;
  font-weight: 600;
}

.cookie-toggle-info span {
  font-size: 12px;
  color: #6B6B6B;
}

/* Toggle switch */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}

.cookie-toggle--locked { cursor: not-allowed; opacity: 0.7; }

.cookie-toggle input { opacity: 0; width: 0; height: 0; }

.cookie-slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 24px;
  transition: background 0.2s;
}

.cookie-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.cookie-toggle input:checked + .cookie-slider { background: #C8001E; }
.cookie-toggle input:checked + .cookie-slider::before { transform: translateX(20px); }

/* More options link */
.cookie-link {
  background: none;
  border: none;
  color: #C8001E;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 16px;
  font-family: inherit;
}

.cookie-link:hover { text-decoration: underline; }

/* Action buttons */
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.cookie-btn {
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: inherit;
  transition: all 0.15s;
  white-space: nowrap;
}

.cookie-btn--primary {
  background: #C8001E;
  color: #fff;
  border-color: #C8001E;
}

.cookie-btn--primary:hover { background: #9E0018; border-color: #9E0018; }

.cookie-btn--secondary {
  background: #fff;
  color: #1A1A1A;
  border-color: #1A1A1A;
}

.cookie-btn--secondary:hover { background: #1A1A1A; color: #fff; }

.cookie-btn--ghost {
  background: transparent;
  color: #6B6B6B;
  border-color: #E0DEDD;
}

.cookie-btn--ghost:hover { border-color: #6B6B6B; color: #1A1A1A; }

/* Legal */
.cookie-legal {
  font-size: 12px;
  color: #999;
  margin: 0;
}

.cookie-legal a { color: #C8001E; }

/* Mobile */
@media (max-width: 600px) {
  .cookie-inner { padding: 20px 16px 16px; }
  .cookie-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cookie-actions { flex-direction: column; }
  .cookie-btn { width: 100%; text-align: center; }
}
/* ================================================
   LEGAL PAGES — voorwaarden / cookies / privacy
   Voeg toe aan styles.css (increment ?v= naar v9)
   ================================================ */

/* Hero */
.legal-hero {
  background: var(--color-dark, #1a1a1a);
  color: #fff;
  padding: 3.5rem 0 2.5rem;
  border-bottom: 4px solid var(--color-primary, #e63312);
}

.legal-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 0.4rem;
  font-weight: 800;
  line-height: 1.1;
}

.legal-meta {
  color: #aaa;
  font-size: 0.9rem;
  margin: 0;
}

/* Main layout */
.legal-content {
  padding: 3rem 0 4rem;
}

.legal-content .container {
  max-width: 860px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Table of contents */
.legal-toc {
  position: sticky;
  top: 1.5rem;
  background: #f7f7f7;
  border-left: 3px solid var(--color-primary, #e63312);
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  border-radius: 0 6px 6px 0;
  font-size: 0.875rem;
}

.legal-toc strong {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #555;
}

.legal-toc ol {
  margin: 0;
  padding-left: 1.1rem;
}

.legal-toc li {
  margin-bottom: 0.45rem;
  line-height: 1.4;
}

.legal-toc a {
  color: #333;
  text-decoration: none;
}

.legal-toc a:hover {
  color: var(--color-primary, #e63312);
  text-decoration: underline;
}

/* Articles */
.legal-articles {
  min-width: 0;
}

.legal-articles article {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #eee;
}

.legal-articles article:last-child {
  border-bottom: none;
}

.legal-articles h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-dark, #1a1a1a);
  margin: 0 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--color-primary, #e63312);
  display: inline-block;
}

.legal-articles h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
  color: #333;
}

.legal-articles p {
  margin: 0 0 0.75rem;
  line-height: 1.7;
  color: #444;
}

.legal-articles ul,
.legal-articles ol {
  padding-left: 1.3rem;
  margin: 0 0 0.75rem;
}

.legal-articles li {
  margin-bottom: 0.35rem;
  line-height: 1.6;
  color: #444;
}

.legal-articles a {
  color: var(--color-primary, #e63312);
  text-decoration: underline;
}

.legal-articles a:hover {
  opacity: 0.8;
}

/* Contact block (voorwaarden) */
.legal-contact-block {
  grid-column: 2;
  background: #fff8f7;
  border: 1px solid #f5cfc9;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: #444;
  margin-top: -1rem;
}

.legal-contact-block a {
  color: var(--color-primary, #e63312);
  font-weight: 600;
  text-decoration: none;
}

.legal-contact-block a:hover {
  text-decoration: underline;
}

/* Cookie table */
.cookie-table-wrap {
  overflow-x: auto;
  margin: 0.75rem 0 1.25rem;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.cookie-table th {
  background: var(--color-dark, #1a1a1a);
  color: #fff;
  text-align: left;
  padding: 0.6rem 0.9rem;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cookie-table td {
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid #eee;
  color: #444;
  vertical-align: top;
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

.cookie-table tr:nth-child(even) td {
  background: #fafafa;
}

.cookie-table code {
  background: #f0f0f0;
  padding: 0.15em 0.4em;
  border-radius: 3px;
  font-size: 0.85em;
  color: #c0392b;
}

/* Responsive */
@media (max-width: 680px) {
  .legal-content .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .legal-toc {
    position: static;
  }

  .legal-contact-block {
    grid-column: 1;
  }
}

/* ================================================
   CONTACTFORMULIER
   ================================================ */

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

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

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--black);
}

.req {
  color: var(--red);
}

.alert-success {
  background: #f0faf0;
  border: 1px solid #b3ddb3;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  color: #2d6a2d;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}
.logo-img { height: 124px; width: auto; display: block; }