/*
Theme Name: Onlinemeersucces.nl (bushurendelft)
Theme URI: https://bushurendelft.nl
Author: Onlinemeersucces.nl
Author URI: https://onlinemeersucces.nl
Description: Stand-alone theme-kopie voor bushurendelft.nl. Charcoal-Amber palet (Manus manus-v2). CSS volledig geport van bushuren-subpagina-template@manus-v2.
Version: 1.4.0-bushurendelft
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: Proprietary
License URI: https://onlinemeersucces.nl
Text Domain: onlinemeersucces
*/
/* ============================================================
   BUSHUREN TEMPLATE - EVENTLINER TOURS
   Gebaseerd op Template 3 (partybusrotterdam.nl)
   ============================================================ */

/* === VARIABELEN === */
:root {
  --primary: #2c2c2c;
  --primary-dark: #1a1a1a;
  --accent: #e8a020;
  --accent-dark: #c88010;
  --cta: #e05c20;
  --cta-dark: #c04010;
  --white: #ffffff;
  --light-gray: #f5f7fa;
  --mid-gray: #e2e8f0;
  --text-dark: #2d3748;
  --text-muted: #718096;
  --font-main: 'Open Sans', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 6px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
  background: var(--white);
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

ul {
  list-style: none;
}

/* === TYPOGRAFIE === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* === KNOPPEN === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--cta);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(232, 119, 34, 0.4);
}

.btn-primary:hover {
  background: var(--cta-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 119, 34, 0.5);
}

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

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
}

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

.btn-accent:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
}

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

/* === LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 50px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

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

.section-title p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

.section-title .divider {
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 16px auto;
  border-radius: 2px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* === TOPBAR === */
.topbar {
  background: var(--primary-dark);
  padding: 8px 0;
  font-size: 0.85rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-contact {
  display: flex;
  gap: 24px;
  align-items: center;
}

.topbar-contact a {
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-contact a:hover {
  color: var(--accent);
}

.topbar-social {
  display: flex;
  gap: 12px;
}

.topbar-social a {
  color: rgba(255,255,255,0.7);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.75rem;
  transition: var(--transition);
}

.topbar-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* === HEADER / NAVIGATIE === */
.site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  text-decoration: none;
}

.site-logo:hover {
  color: var(--accent);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: var(--radius);
  text-transform: none;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.site-nav .btn-nav-cta {
  background: var(--cta);
  color: var(--white);
  padding: 10px 22px;
  margin-left: 8px;
}

.site-nav .btn-nav-cta:hover {
  background: var(--cta-dark);
}

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

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* === HERO SECTIE — SPLIT LAYOUT === */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15,29,53,0.95) 0%, rgba(15,29,53,0.88) 50%, rgba(26,42,74,0.55) 100%);
}

/* Split hero: tekst links, formulier rechts */
.hero-split .hero-split-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  /* Alleen verticale padding: horizontale komt van .container (24px) zodat
     de hero op gelijke breedte uitlijnt met de header. */
  padding-block: 60px 72px;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 12px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(43,196,180,0.18);
  border: 1px solid rgba(43,196,180,0.4);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
  width: fit-content;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-text-col > p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 36px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-icon {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Formulierkaart rechts in de hero */
.hero-form-col {
  display: flex;
  align-items: flex-start;
}

.hero-booking-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  width: 100%;
  overflow: hidden;
}

.hero-booking-card-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-bottom: 3px solid var(--accent);
  padding: 20px 24px 16px;
}

.hero-booking-card-header h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-booking-card-header h3 i {
  color: var(--accent);
}

.hero-booking-card-header p {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  margin: 0;
}

/* ============================================================
   HERO BOOKING CARD — lichte stijl (wit formulier in hero)
   ============================================================ */

/* Tabbladen */
.hero-booking-card .booking-tabs {
  display: flex;
  border-radius: 0;
  border-bottom: 2px solid #e2e8f0;
  background: #f1f5f9;
  padding: 0;
}

.hero-booking-card .booking-tab {
  flex: 1;
  color: #64748b;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.6px;
  padding: 13px 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.hero-booking-card .booking-tab:hover {
  color: var(--primary);
  background: rgba(255,255,255,0.6);
}

.hero-booking-card .booking-tab.active {
  color: var(--primary);
  border-bottom-color: var(--accent);
  background: var(--white);
  font-weight: 800;
}

/* Formulier container */
.hero-booking-card .booking-form-container {
  padding: 0;
  background: var(--white);
  border-radius: 0;
  box-shadow: none;
}

/* Paneel padding */
.hero-booking-card .booking-panel {
  padding: 18px 20px 22px;
}

/* Stap indicator */
.hero-booking-card .step-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
}

.hero-booking-card .step-label {
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.hero-booking-card .step-label span {
  color: var(--primary);
  font-weight: 800;
}

.hero-booking-card .step-progress-bar {
  flex: 1;
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  margin: 0;
  overflow: hidden;
}

.hero-booking-card .step-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* Sectie-kopjes */
.hero-booking-card .booking-section-heading {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 1px;
  color: var(--primary);
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
  padding: 6px 10px;
  margin: 12px 0 8px;
}

.hero-booking-card .booking-section-heading i {
  color: var(--accent);
  font-size: 0.75rem;
}

/* Veldgroepen grid */
.hero-booking-card .booking-form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 8px;
  align-items: end;
}

.hero-booking-card .booking-form-row.cols-1 { grid-template-columns: 1fr; }
.hero-booking-card .booking-form-row.cols-2 { grid-template-columns: 1fr 1fr; }
.hero-booking-card .booking-form-row.cols-3 { grid-template-columns: 2fr 1.2fr 1fr; }

.hero-booking-card .booking-form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Labels */
.hero-booking-card .booking-form-group label,
.hero-booking-card label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.6px;
  color: #475569;
  margin-bottom: 0;
  line-height: 1.2;
}

.hero-booking-card .req {
  color: var(--cta);
  margin-left: 1px;
}

/* Invoervelden — strak en consistent */
.hero-booking-card .booking-input {
  width: 100%;
  height: 38px;
  padding: 0 11px;
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  color: #1e293b;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 38px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.hero-booking-card .booking-input::placeholder {
  color: #94a3b8;
  font-size: 0.82rem;
}

.hero-booking-card .booking-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(43,196,180,0.12);
  background: #fff;
}

.hero-booking-card .booking-input:hover:not(:focus) {
  border-color: #94a3b8;
}

/* Date en time inputs — zelfde hoogte forceren */
.hero-booking-card input[type="date"].booking-input,
.hero-booking-card input[type="time"].booking-input {
  height: 38px;
  line-height: 38px;
  padding: 0 8px;
  font-size: 0.82rem;
  color: #1e293b;
}

/* Textarea */
.hero-booking-card textarea.booking-input {
  height: auto;
  min-height: 60px;
  line-height: 1.5;
  padding: 8px 11px;
  resize: vertical;
}

/* Checkbox rij */
.hero-booking-card .booking-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 10px 0 4px;
  padding: 10px 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
}

.hero-booking-card .booking-checkbox-row input[type="checkbox"] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

.hero-booking-card .booking-checkbox-row label {
  color: #64748b;
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.4;
}

.hero-booking-card .booking-checkbox-row label a {
  color: var(--accent);
  text-decoration: underline;
}

/* Navigatieknoppen */
.hero-booking-card .booking-form-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
}

.hero-booking-card .btn-booking-next,
.hero-booking-card .btn-booking-submit {
  background: var(--cta);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 10px 22px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.hero-booking-card .btn-booking-next:hover,
.hero-booking-card .btn-booking-submit:hover {
  background: var(--cta-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232,119,34,0.3);
}

.hero-booking-card .btn-booking-prev {
  background: transparent;
  color: #64748b;
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  padding: 9px 16px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.hero-booking-card .btn-booking-prev:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Succes bericht */
.hero-booking-card .booking-success {
  text-align: center;
  padding: 32px 20px;
}

.hero-booking-card .booking-success-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 auto 16px;
}

.hero-booking-card .booking-success h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.hero-booking-card .booking-success p {
  color: #64748b;
  font-size: 0.9rem;
}

/* === FEATURES STRIP === */
.features-strip {
  background: var(--primary);
  padding: 0;
}

.features-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 4px solid var(--accent);
}

.feature-item {
  padding: 36px 30px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.feature-item:last-child {
  border-right: none;
}

.feature-item:hover {
  background: rgba(255,255,255,0.05);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--white);
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: var(--cta);
  transform: scale(1.1);
}

.feature-item h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin: 0;
}

/* === INTRO SECTIE === */
.intro-section {
  background: var(--white);
}

.intro-text h2 {
  margin-bottom: 20px;
}

.intro-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.intro-text .btn {
  margin-top: 16px;
}

.intro-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* === DIENSTEN KAARTEN === */
.services-section {
  background: var(--light-gray);
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card-image {
  display: block;
  height: 200px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.service-card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.service-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--mid-gray);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.service-card-meta .capacity {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* === GELEGENHEDEN === */
.occasions-section {
  background: var(--white);
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.occasion-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 200px;
  cursor: pointer;
}

.occasion-card-bg {
  position: absolute;
  inset: 0;
  background: var(--primary);
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.occasion-card:hover .occasion-card-bg {
  transform: scale(1.08);
}

.occasion-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,42,74,0.85) 0%, rgba(26,42,74,0.2) 100%);
  transition: var(--transition);
}

.occasion-card:hover .occasion-card-overlay {
  background: linear-gradient(to top, rgba(43,196,180,0.8) 0%, rgba(26,42,74,0.3) 100%);
}

.occasion-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
}

.occasion-card-content h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.occasion-card-content span {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.5px;
}

.occasion-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.occasion-grid--4 .occasion-card {
  height: 180px;
}

/* === USP SECTIE === */
.usp-section {
  background: var(--primary);
  color: var(--white);
}

.usp-section h2 {
  color: var(--white);
}

.usp-section .divider {
  background: var(--accent);
}

.usp-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

.usp-icon {
  color: var(--accent);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

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

.usp-item p {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  margin: 0;
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

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

.cta-banner .btn-primary {
  background: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.cta-banner .btn-primary:hover {
  background: var(--primary-dark);
}

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

.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}

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

.review-stars {
  color: #f6c90e;
  font-size: 1rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.review-text {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
}

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

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

.review-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
}

.review-occasion {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* === FOOTER === */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}

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

.footer-brand .site-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
}

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

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

.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
}

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

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

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

.footer-bottom a {
  color: rgba(255,255,255,0.5);
}

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

/* === DIENSTEN PAGINA === */
.page-hero {
  background: var(--primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bus.jpg') center/cover no-repeat;
  opacity: 0.2;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

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

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

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
}

.breadcrumb a {
  color: var(--accent);
}

.breadcrumb span {
  color: rgba(255,255,255,0.4);
}

/* === BUS TYPES SECTIE === */
.bus-type-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}

.bus-type-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.bus-type-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.bus-type-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bus-type-card:hover .bus-type-image img {
  transform: scale(1.06);
}

.bus-type-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: none;
}

.bus-type-body {
  padding: 24px;
}

.bus-type-body h3 {
  margin-bottom: 8px;
}

.bus-type-body h3 a {
  color: inherit;
  text-decoration: none;
}

.bus-type-body h3 a:hover {
  color: var(--accent);
}

a.bus-type-image {
  display: block;
}

.bus-type-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.bus-specs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.bus-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--light-gray);
  padding: 4px 12px;
  border-radius: 20px;
}

.bus-spec .icon {
  color: var(--accent);
}

.price-indicator {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-indicator strong {
  color: var(--primary);
  font-size: 1.1rem;
}

/* === PRIJSTABEL === */
.pricing-section {
  background: var(--light-gray);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-table th {
  background: var(--primary);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0.5px;
}

.pricing-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--mid-gray);
  font-size: 0.95rem;
}

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

.pricing-table tr:hover td {
  background: var(--light-gray);
}

.pricing-table .price-cell {
  font-weight: 700;
  color: var(--primary);
}

/* === CONTACT PAGINA === */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-detail-text p,
.contact-detail-text a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.contact-detail-text a:hover {
  color: var(--accent);
}

/* === FORMULIER === */
.contact-form-wrapper {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--accent);
}

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

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

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

.form-group label .required {
  color: var(--cta);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--mid-gray);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(43, 196, 180, 0.15);
}

.form-control::placeholder {
  color: var(--text-muted);
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23718096' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

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

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* === GOOGLE MAPS === */
.map-section {
  background: var(--light-gray);
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* === WERKGEBIED SECTIE === */
.werkgebied-section {
  background: var(--primary);
  padding: 60px 0;
}

.werkgebied-section h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 10px;
}

.werkgebied-section p {
  color: rgba(255,255,255,0.7);
  text-align: center;
  margin-bottom: 40px;
}

.steden-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.stad-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 12px;
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: default;
}

.stad-item:hover,
.stad-item.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steden-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-split .hero-split-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 56px 64px;
  }
  .hero-text-col > p { max-width: 100%; }
  .hero-trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .features-strip-inner { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .occasion-grid { grid-template-columns: repeat(2, 1fr); }
  .occasion-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .usp-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .steden-grid { grid-template-columns: repeat(3, 1fr); }
  .topbar-inner { flex-direction: column; gap: 8px; }
  .hero-split .hero-split-inner { padding-block: 48px 56px; }
  .hero-trust-grid { grid-template-columns: 1fr 1fr; gap: 10px 16px; }
  .hero-cta { flex-direction: column; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 12px 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .pricing-table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .occasion-grid { grid-template-columns: 1fr; }
  .steden-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrapper { padding: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* === UTILITY KLASSEN === */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.bg-primary { background: var(--primary); }
.bg-light { background: var(--light-gray); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-8 { margin-bottom: 2rem; }
.hidden { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   BOEKINGSFORMULIER – 3 TABBLADEN / 2 STAPPEN
   (Forms 6, 7, 8 – Enkele reis, Retour, Meer bestemmingen)
   ============================================================ */

/* --- Wrapper sectie --- */
.booking-form-section {
  background: var(--primary);
  padding: 60px 0;
}

.booking-form-section .section-title h2 {
  color: var(--white);
}

.booking-form-section .section-title p {
  color: rgba(255,255,255,0.7);
}

/* --- Formulier container --- */
.booking-form-container {
  background: var(--primary-dark);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(0,0,0,0.4);
  max-width: 900px;
  margin: 0 auto;
}

/* --- Tabbladen --- */
.booking-tabs {
  display: flex;
  background: rgba(0,0,0,0.25);
  border-bottom: 2px solid rgba(255,255,255,0.08);
}

.booking-tab {
  flex: 1;
  padding: 18px 20px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  border: none;
  background: transparent;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.booking-tab:hover {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.05);
}

.booking-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  background: rgba(43,196,180,0.08);
}

/* --- Formulier panelen --- */
.booking-panel {
  display: none;
  padding: 32px 36px 36px;
}

.booking-panel.active {
  display: block;
}

/* --- Stap indicator --- */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.step-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: none;
  letter-spacing: 0.5px;
}

.step-label span {
  color: var(--accent);
}

.step-progress-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin: 0 20px;
  overflow: hidden;
}

.step-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  transition: width 0.4s ease;
  width: 50%;
}

/* --- Stap inhoud --- */
.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
}

/* --- Veldgroepen in het formulier --- */
.booking-form-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.booking-form-row.cols-1 { grid-template-columns: 1fr; }
.booking-form-row.cols-2 { grid-template-columns: 1fr 1fr; }
.booking-form-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.booking-form-row.cols-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }

.booking-form-group {
  display: flex;
  flex-direction: column;
}

.booking-form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: none;
  letter-spacing: 0.4px;
  margin-bottom: 6px;
}

.booking-form-group label .req {
  color: var(--cta);
  margin-left: 2px;
}

.booking-input {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-bottom: 2px solid rgba(255,255,255,0.2);
  border-radius: 4px 4px 0 0;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: var(--transition);
}

.booking-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.booking-input:focus {
  outline: none;
  background: rgba(255,255,255,0.1);
  border-bottom-color: var(--accent);
  box-shadow: 0 2px 0 0 var(--accent);
}

.booking-input:focus::placeholder {
  color: rgba(255,255,255,0.2);
}

select.booking-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

select.booking-input option {
  background: var(--primary-dark);
  color: var(--white);
}

textarea.booking-input {
  resize: vertical;
  min-height: 90px;
  border-radius: 4px;
  border-bottom: 2px solid rgba(255,255,255,0.2);
}

textarea.booking-input:focus {
  border-bottom-color: var(--accent);
}

/* --- Sectie kopje binnen formulier --- */
.booking-section-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 1px;
  color: var(--accent);
  margin: 24px 0 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(43,196,180,0.25);
}

/* --- KNV akkoord checkbox --- */
.booking-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0;
}

.booking-checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

.booking-checkbox-row label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  cursor: pointer;
  line-height: 1.5;
}

.booking-checkbox-row label a {
  color: var(--accent);
  text-decoration: underline;
}

/* --- Navigatieknoppen --- */
.booking-form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 16px;
}

.btn-booking-next,
.btn-booking-prev,
.btn-booking-submit {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: none;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-booking-next {
  background: var(--accent);
  color: var(--white);
  margin-left: auto;
}

.btn-booking-next:hover {
  background: var(--accent-dark);
  transform: translateX(2px);
}

.btn-booking-prev {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-booking-prev:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.btn-booking-submit {
  background: var(--cta);
  color: var(--white);
  margin-left: auto;
}

.btn-booking-submit:hover {
  background: var(--cta-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,119,34,0.4);
}

/* --- Succes melding --- */
.booking-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
}

.booking-success-icon {
  width: 72px;
  height: 72px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin: 0 auto 24px;
}

.booking-success h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.booking-success p {
  color: rgba(255,255,255,0.7);
}

/* --- Validatie foutmelding --- */
.booking-input.error {
  border-bottom-color: #fc8181;
  box-shadow: 0 2px 0 0 #fc8181;
}

.booking-field-error {
  font-size: 0.75rem;
  color: #fc8181;
  margin-top: 4px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .booking-panel { padding: 24px 20px 28px; }
  .booking-form-row.cols-4 { grid-template-columns: 1fr 1fr; }
  .booking-form-row.cols-3 { grid-template-columns: 1fr 1fr; }
  .booking-form-row.cols-2 { grid-template-columns: 1fr; }
  .booking-tab { font-size: 0.75rem; padding: 14px 10px; }
}

@media (max-width: 480px) {
  .booking-form-row.cols-4 { grid-template-columns: 1fr; }
  .booking-form-row.cols-3 { grid-template-columns: 1fr; }
  .booking-tabs { flex-direction: column; }
  .booking-tab { border-bottom: none; border-left: 3px solid transparent; text-align: left; }
  .booking-tab.active { border-left-color: var(--accent); border-bottom-color: transparent; }
  .step-progress-bar { display: none; }
}

/* ============================================================
   BOOKING FORM — BF-* SYSTEEM
   3 tabbladen Ã— 3 stappen
============================================================ */

/* --- Tabs --- */
.bf-tabs {
  display: flex;
  border-bottom: 2px solid #e2e8f0;
  background: #f8fafc;
}

.bf-tab {
  flex: 1;
  padding: 10px 8px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #64748b;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  white-space: nowrap;
}

.bf-tab:hover { color: var(--primary); }

.bf-tab--active {
  color: var(--primary);
  border-bottom-color: var(--accent);
}

/* --- Panels --- */
.bf-panels { padding: 14px 16px 16px; }

.bf-panel { display: none; }
.bf-panel--active { display: block; }

/* --- Progress indicator --- */
.bf-progress {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.bf-progress-step {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #94a3b8;
  white-space: nowrap;
  transition: color 0.2s;
}

.bf-progress-step span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.bf-progress-step--active { color: var(--primary); }
.bf-progress-step--active span { background: var(--accent); color: #fff; }
.bf-progress-step--done { color: var(--accent); }
.bf-progress-step--done span { background: var(--accent); color: #fff; }

.bf-progress-line {
  flex: 1;
  height: 2px;
  background: #e2e8f0;
  margin: 0 6px;
  transition: background 0.3s;
}

.bf-progress-line--done { background: var(--accent); }

/* --- Steps --- */
.bf-step { display: none; }
.bf-step--active { display: block; }

/* --- Rows --- */
.bf-row {
  display: grid;
  gap: 8px;
  margin-bottom: 8px;
}

.bf-row--1  { grid-template-columns: 1fr; }
.bf-row--2  { grid-template-columns: 1fr 1fr; }
.bf-row--3-2 { grid-template-columns: 3fr 2fr; }

/* --- Fields --- */
.bf-field {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.bf-field label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: none;
  color: #475569;
  line-height: 1.2;
}

.bf-req { color: var(--cta); font-weight: 700; }

/* --- Inputs --- */
.bf-input {
  width: 100%;
  height: 36px;
  padding: 0 10px;
  border: 1.5px solid #cbd5e1;
  border-radius: 5px;
  background: #fff;
  font-family: var(--font-main);
  font-size: 0.82rem;
  color: var(--primary);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.bf-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(43, 196, 180, 0.12);
}

.bf-input--error { border-color: #e53e3e !important; }

.bf-input[type="date"],
.bf-input[type="time"] {
  padding: 0 6px;
  color: #475569;
}

textarea.bf-input {
  height: auto;
  padding: 8px 10px;
  resize: vertical;
}

.bf-error {
  font-size: 0.68rem;
  color: #e53e3e;
  margin-top: 2px;
}

/* --- Checkbox --- */
.bf-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 8px 0 10px;
}

.bf-checkbox input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.bf-checkbox label {
  font-size: 0.75rem;
  color: #475569;
  line-height: 1.4;
}

.bf-checkbox a {
  color: var(--accent);
  text-decoration: underline;
}

/* --- Navigation buttons --- */
.bf-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid #e2e8f0;
  margin-top: 4px;
}

.bf-nav--right { justify-content: flex-end; }

.bf-btn-next,
.bf-btn-submit {
  background: var(--cta);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 9px 18px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, transform 0.1s;
}

.bf-btn-next:hover,
.bf-btn-submit:hover {
  background: var(--cta-dark);
  transform: translateY(-1px);
}

.bf-btn-prev {
  background: none;
  color: #64748b;
  border: 1.5px solid #cbd5e1;
  border-radius: 5px;
  padding: 8px 14px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: border-color 0.2s, color 0.2s;
}

.bf-btn-prev:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* --- Success state --- */
.bf-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  gap: 8px;
}

.bf-success i {
  font-size: 2.5rem;
  color: var(--accent);
}

.bf-success h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin: 0;
}

.bf-success p {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
}

/* --- Responsive: mobiel --- */
@media (max-width: 480px) {
  .bf-row--2,
  .bf-row--3-2 {
    grid-template-columns: 1fr;
  }

  .bf-tab {
    font-size: 0.7rem;
    padding: 9px 4px;
  }

  .bf-panels {
    padding: 12px 12px 14px;
  }
}


/* =============================================
   SERVICE PAGE COMPONENTS
   ============================================= */

.breadcrumb-bar { background: #f0f0f0; border-bottom: 1px solid #e0e0e0; padding: 0.6rem 0; }
.breadcrumb { list-style: none; display: flex; align-items: center; gap: 0.4rem; margin: 0; padding: 0; font-size: 0.82rem; color: #666; }
.breadcrumb li + li::before { content: "\203A"; margin-right: 0.4rem; color: #999; }
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb [aria-current="page"] { color: #444; font-weight: 600; }

.hero-dienst { position: relative; min-height: 420px; display: flex; align-items: center; overflow: hidden; }
.hero-dienst .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero-dienst .hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(28,28,28,0.88) 0%, rgba(28,28,28,0.55) 60%, rgba(28,28,28,0.3) 100%); z-index: 1; }
.hero-dienst .container { position: relative; z-index: 2; }
.hero-dienst-inner { max-width: 680px; padding: 4rem 0; color: #fff; }
.hero-dienst-inner h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; margin: 0.5rem 0 1rem; color: #fff; }
.hero-dienst-inner p { font-size: 1.05rem; line-height: 1.65; color: rgba(255,255,255,0.88); margin-bottom: 1.5rem; }

.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1.5rem; }
.features-grid .feature-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: #333; padding: 0; text-align: left; border: none; }
.feature-item i { font-size: 0.9rem; flex-shrink: 0; }
.feature-item .icon { width: 1.1em; height: 1.1em; color: var(--accent); flex-shrink: 0; }

.occasion-mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
.occasion-mini-card { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; padding: 1.75rem 1rem; background: #fff; border: 2px solid #e8e8e8; border-radius: 12px; text-decoration: none; color: var(--primary); font-weight: 600; font-size: 0.9rem; text-align: center; transition: all 0.25s ease; }
.occasion-mini-card i { font-size: 1.8rem; color: var(--accent); }
.occasion-mini-card .icon { width: 2rem; height: 2rem; color: var(--accent); }
.occasion-mini-card:hover { border-color: var(--accent); background: var(--primary); color: #fff; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.occasion-mini-card:hover i,
.occasion-mini-card:hover .icon { color: var(--accent); }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.related-card { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 2rem 1.5rem; background: #fff; border: 2px solid #e8e8e8; border-radius: 12px; text-decoration: none; color: var(--primary); transition: all 0.25s ease; text-align: center; }
.related-card:hover { border-color: var(--accent); background: var(--primary); color: #fff; transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.related-card-icon { width: 56px; height: 56px; background: var(--accent); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.related-card-icon i { font-size: 1.4rem; color: #fff; }
.related-card-icon .icon { width: 1.6em; height: 1.6em; color: #fff; }
.related-card-text { flex: 1; }
.related-card-text strong { display: block; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.25rem; }
.related-card-text span { font-size: 0.85rem; color: #666; }
.related-card:hover .related-card-text span { color: rgba(255,255,255,0.75); }
.related-card-arrow { font-size: 0.9rem; color: var(--accent); transition: transform 0.2s; }
.related-card-arrow .icon { width: 1em; height: 1em; }
.related-card:hover .related-card-arrow,
.related-card:hover .related-card-arrow .icon { color: var(--accent); transform: translateY(2px); }

.btn-outline-white { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline-white:hover { background: #fff; color: var(--primary); }
.btn-cta { background: var(--cta); color: #fff; box-shadow: 0 4px 15px rgba(224,92,32,0.4); }
.btn-cta:hover { background: var(--cta-dark); color: #fff; transform: translateY(-2px); }

.section-header { text-align: center; margin-bottom: 2rem; }
.section-header h2 { margin-bottom: 0.5rem; }
.section-header p { color: #666; max-width: 600px; margin: 0 auto; }

.intro-section { padding: 4rem 0; }
.intro-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.intro-text h2 { margin-bottom: 1rem; }
.intro-image img { border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); width: 100%; }

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
  .occasion-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-dienst-inner { padding: 3rem 0; }
  .hero-dienst-inner h1 { font-size: 2rem; }
  .intro-content { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}


/* =============================================
   NAVIGATION DROPDOWN
   ============================================= */

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.nav-chevron {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown.open .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 1px solid #e8e8e8;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  transform: translateX(-50%) translateY(-6px);
  z-index: 1000;
}

/* Arrow pointer */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #e8e8e8;
}
.nav-dropdown-menu::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
  color: #333 !important;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  border-radius: 0;
  margin: 0 !important;
}

.nav-dropdown-menu a i {
  width: 16px;
  text-align: center;
  color: var(--accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.nav-dropdown-menu a:hover {
  background: #f5f5f5;
  color: var(--primary) !important;
}

.nav-dropdown-divider {
  height: 1px;
  background: #e8e8e8;
  margin: 0.35rem 0;
}

.nav-dropdown-all {
  font-weight: 700 !important;
  color: var(--primary) !important;
}
.nav-dropdown-all i {
  color: var(--primary) !important;
}
.nav-dropdown-all:hover {
  background: var(--primary) !important;
  color: #fff !important;
}
.nav-dropdown-all:hover i {
  color: var(--accent) !important;
}

/* Mobile dropdown */
@media (max-width: 900px) {
  .nav-dropdown {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
  }
  .nav-dropdown-menu {
    position: static;
    transform: none !important;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(0,0,0,0.05);
    padding: 0;
    min-width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }
  .nav-dropdown-menu::before,
  .nav-dropdown-menu::after { display: none; }
  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-dropdown-menu a {
    padding: 0.6rem 2rem;
    font-size: 0.85rem;
  }
}

/* =============================================
   WORDPRESS-SPECIFIC OVERRIDES
   ============================================= */

/* WP admin-bar offset */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

/* Skip-link (WCAG) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  z-index: 10000;
  text-decoration: none;
  font-weight: 700;
}

/* Mobile fullscreen-overlay menu (vervangt Manus' inline open-class) */
@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--primary-dark);
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 80px 24px 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 999;
  }
  .site-nav.open {
    transform: translateX(0);
  }
  .site-nav a {
    font-size: 1.15rem;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: left;
  }
  .site-nav .btn-nav-cta {
    margin-top: 16px;
    margin-left: 0;
    text-align: center;
  }
  .nav-toggle {
    display: flex;
    z-index: 1000;
    position: relative;
  }
  .nav-dropdown { display: block; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    background: rgba(0,0,0,0.2);
    border: none;
    border-radius: 0;
    margin-top: 4px;
    padding: 4px 0 8px;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }
  .nav-dropdown-menu a {
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-dropdown-menu a:hover {
    color: var(--accent);
    background: transparent;
  }
}

/* WP gallery / caption defaults */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--text-muted); }
.gallery-caption { font-size: 0.85rem; }
.bypostauthor { /* placeholder for author-styling */ }

/* WP alignment */
.alignleft { float: left; margin-right: 24px; margin-bottom: 16px; }
.alignright { float: right; margin-left: 24px; margin-bottom: 16px; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignfull, .alignwide { width: 100%; }

/* OMS Forms native styling — basis voor contact/offerte/callback templates die NIET in de hero-booking-card staan */
.oms-form { display: block; max-width: 100%; }
.oms-form__row { margin-bottom: 16px; }
.oms-form__row label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; color: var(--text-dark); }
.oms-form__row .req { color: var(--cta); }
.oms-form__row input,
.oms-form__row select,
.oms-form__row textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--mid-gray); border-radius: var(--radius); font-family: var(--font-main); font-size: 0.95rem; transition: border-color 0.15s ease; }
.oms-form__row input:focus,
.oms-form__row select:focus,
.oms-form__row textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,160,32,0.15); }
.oms-form__row textarea { min-height: 120px; resize: vertical; }
.oms-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.oms-form__fieldset { border: 1px solid var(--mid-gray); border-radius: var(--radius); padding: 18px 20px 8px; margin-bottom: 18px; }
.oms-form__fieldset legend { font-weight: 700; font-size: 0.85rem; text-transform: none; letter-spacing: 0.5px; padding: 0 8px; color: var(--primary); }
.oms-form__row--avg { background: #f8fafc; border: 1px solid var(--mid-gray); border-radius: var(--radius); padding: 12px 16px; margin: 16px 0 8px; }
.oms-form__checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text-dark); cursor: pointer; }
.oms-form__checkbox input[type=checkbox] { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--accent); flex-shrink: 0; }
.oms-form__hint { font-size: 0.85rem; color: var(--text-muted); margin: -4px 0 12px; }
.oms-form__actions { margin-top: 12px; display: flex; gap: 12px; flex-wrap: wrap; }
.booking-form-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 18px; }
.booking-form-nav .btn-booking-prev { background: transparent; color: var(--text-muted); border: 1.5px solid var(--mid-gray); }
.booking-form-nav .btn-booking-prev:hover { color: var(--primary); border-color: var(--primary); background: var(--white); }
.booking-step { display: none; }
.booking-step.active { display: block; }
.step-indicator { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.step-indicator .step-label { font-size: 0.78rem; text-transform: none; letter-spacing: 0.5px; color: var(--text-muted); white-space: nowrap; font-weight: 600; }
.step-indicator .step-label span { color: var(--primary); font-weight: 800; }
.step-progress-bar { flex: 1; height: 4px; background: var(--mid-gray); border-radius: 2px; overflow: hidden; }
.step-progress-fill { height: 100%; background: var(--accent); transition: width 0.3s ease; }
.booking-input-error { border-color: var(--cta) !important; box-shadow: 0 0 0 3px rgba(224,92,32,0.15) !important; }

/* OMS Forms feedback */
[data-oms-feedback].sm-form-feedback--success,
[data-oms-feedback].oms-form-feedback--success { background: #d1fae5; color: #065f46; padding: 14px 16px; border-radius: var(--radius); margin-top: 16px; font-weight: 600; }
[data-oms-feedback].sm-form-feedback--error,
[data-oms-feedback].oms-form-feedback--error { background: #fee2e2; color: #991b1b; padding: 14px 16px; border-radius: var(--radius); margin-top: 16px; font-weight: 600; }

/* Mobile: oms-form grid stack */
@media (max-width: 600px) {
  .oms-form__grid { grid-template-columns: 1fr; }
}

/* SVG icons inline */
.icon { width: 1em; height: 1em; vertical-align: -0.125em; fill: currentColor; display: inline-block; flex-shrink: 0; }
.icon--lg { width: 1.5em; height: 1.5em; }

/* Icon sizing in specific contexts */
.hero-trust-item .icon,
.trust-icon .icon { width: 1.25em; height: 1.25em; color: var(--accent); filter: drop-shadow(0 0 2px rgba(232,160,32,0.5)); }
.feature-item .icon { width: 1em; height: 1em; color: var(--accent); }
.hero-badge .icon { width: 1em; height: 1em; }
.occasion-mini-card .icon { width: 1.5em; height: 1.5em; }
.related-card-icon .icon { width: 1.5em; height: 1.5em; color: var(--accent); }
.related-card-arrow .icon { width: 1em; height: 1em; }
.cta-banner .btn .icon,
.hero-cta .btn .icon { width: 1em; height: 1em; margin-right: 0.3em; }
.nav-dropdown-menu .icon { width: 1em; height: 1em; color: var(--accent); }

/* === Service page FAQ === */
.faq-section {
  background: var(--white);
}
.faq-section .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.faq-section .section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.faq-section .section-header p {
  color: var(--text-muted);
  font-size: 1rem;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 12px;
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item[open] {
  border-color: var(--accent);
}
.faq-item summary,
.faq-item .faq-question {
  padding: 18px 48px 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  background: var(--light-gray);
  list-style: none;
  position: relative;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-heading);
  transition: background 0.2s ease, color 0.2s ease;
}
.faq-item summary:hover,
.faq-item .faq-question:hover {
  background: #edf0f5;
}
.faq-item summary::after,
.faq-item .faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after {
  content: '−';
  transform: translateY(-50%) rotate(0deg);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-answer {
  padding: 16px 20px 20px;
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--white);
  border-top: 1px solid var(--mid-gray);
}
.faq-answer p {
  margin: 0;
  font-size: 0.95rem;
}

/* Service-thema body-class accents */
.thema--eventliner .hero-dienst .hero-overlay { background: linear-gradient(135deg, rgba(28,28,28,0.92) 0%, rgba(224,92,32,0.55) 100%); }
.thema--kuiper .hero-dienst .hero-overlay { background: linear-gradient(135deg, rgba(28,28,28,0.88) 0%, rgba(28,28,28,0.45) 100%); }

/* === Bottom CTA banner (homepage, zonder form) === */
.section-cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, rgba(232,160,32,0.18) 100%);
  padding: 64px 0;
  color: var(--white);
}
.section-cta-banner .cta-banner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.section-cta-banner .cta-banner-text h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-cta-banner .cta-banner-text p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  margin: 0;
  max-width: 520px;
}
.section-cta-banner .cta-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .section-cta-banner .cta-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .section-cta-banner .cta-banner-actions {
    justify-content: center;
  }
}

/* === Better step-indicator (3 stappen visueel duidelijker) === */
.step-indicator { gap: 16px; padding: 8px 0 14px; border-bottom: 1px solid var(--mid-gray); margin-bottom: 18px; }
.step-progress-bar { transition: opacity 0.2s; }
.step-progress-fill { transition: width 0.4s ease; }

/* === Booking-form fieldset legends in lichte stijl in hero === */
.hero-booking-card .oms-form__fieldset {
  border: none;
  padding: 8px 0 0;
  margin-bottom: 0;
}
.hero-booking-card .oms-form__fieldset legend {
  font-size: 0.68rem;
  color: var(--primary);
  background: #f1f5f9;
  border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
  padding: 6px 10px;
  margin: 12px 0 8px;
  letter-spacing: 1px;
  display: block;
  width: 100%;
}
.hero-booking-card .oms-form__row { margin-bottom: 8px; }
.hero-booking-card .oms-form__row label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.6px;
  color: #475569;
  margin-bottom: 4px;
  line-height: 1.2;
  display: block;
}
.hero-booking-card .oms-form__row input,
.hero-booking-card .oms-form__row textarea,
.hero-booking-card .oms-form__row select {
  height: 38px;
  padding: 0 11px;
  font-size: 0.85rem;
  border-radius: 6px;
  border: 1.5px solid #cbd5e1;
}
.hero-booking-card .oms-form__row textarea {
  height: auto;
  min-height: 60px;
  padding: 8px 11px;
}
.hero-booking-card .booking-form-nav {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
}
.hero-booking-card .booking-form-nav:has(.btn-booking-prev) {
  justify-content: space-between;
}
.hero-booking-card .booking-form-nav.booking-form-nav--right {
  justify-content: flex-end;
}
.hero-booking-card .booking-form-nav .btn {
  padding: 10px 18px;
  font-size: 0.85rem;
}

/* === OMS: lange formulieren (contactpagina, geen steps) === */
.oms-form--long .booking-form-nav--paging {
  display: none !important;
}
.oms-form--long .btn-booking-prev {
  display: none !important;
}
.oms-form--long .booking-step {
  display: block !important;
}
.oms-form--long .booking-section-heading {
  font-family: var(--font-heading, inherit);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: 1px;
  color: var(--accent);
  margin: 24px 0 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(43, 196, 180, 0.25);
}
.oms-form--long .booking-section-heading:first-of-type,
.oms-form--long .booking-form-row:first-child + .booking-section-heading {
  margin-top: 0;
}

.booking-form-nav--submit-only {
  justify-content: flex-end;
}

/* Contact: donkere booking container (Manus contact.html) */
.contact-form-wrapper--booking {
  background: transparent;
  padding: 0;
  box-shadow: none;
}
.contact-form-wrapper--booking .booking-form-container--contact {
  max-width: 100%;
  margin: 0;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.18);
}

/* Trust-blok contact (Manus) */
.contact-trust-box {
  margin-top: 30px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: var(--radius);
}
.contact-trust-box h4 {
  margin: 0 0 14px;
  font-size: 0.95rem;
}
.contact-trust-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-trust-box li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.contact-trust-box li:last-child {
  margin-bottom: 0;
}
.contact-trust-box .icon {
  flex-shrink: 0;
  color: var(--accent);
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.9rem;
}
.page-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
.page-hero-breadcrumb a:hover {
  text-decoration: underline;
}
.page-hero-breadcrumb .breadcrumb-sep {
  color: rgba(255, 255, 255, 0.5);
}
.page-hero-breadcrumb [aria-current="page"] {
  color: var(--accent);
}

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

.contact-page-faq {
  background: var(--white);
}
.contact-faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.contact-faq-item {
  margin-bottom: 16px;
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius);
  overflow: hidden;
}
.contact-faq-item summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
  background: var(--light-gray);
  list-style: none;
}
.contact-faq-item summary::-webkit-details-marker {
  display: none;
}
.contact-faq-answer {
  padding: 18px 20px;
  color: var(--text-muted);
}
.contact-faq-answer p {
  margin: 0;
}

.map-embed--contact iframe {
  display: block;
  width: 100%;
  min-height: 320px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ================================================================
   FOCUS STATES — WCAG AA keyboard accessibility
   ================================================================ */

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="tab"]:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* === MOBILE AUDIT FIXES (2026-05-05) ======================================= */

@media (max-width: 768px) {
  /* FIX 1: Hero padding — container horizontal padding was overridden to 0 */
  .hero-split .hero-split-inner {
    padding: 48px 16px 56px;
  }

  /* FIX 2: Topbar — hide on mobile, header already has phone CTA */
  .topbar {
    display: none;
  }

  /* FIX 3: Social media icons — 44px minimum touch target */
  .topbar-social a {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  /* FIX 4: Hero booking card tabs — taller touch targets */
  .hero-booking-card .booking-tab,
  .hero-booking-card .bf-tab {
    padding: 15px 10px;
    min-height: 44px;
  }

  /* FIX 5: Hero booking card inputs — 44px minimum height */
  .hero-booking-card .oms-form__row input,
  .hero-booking-card .oms-form__row textarea,
  .hero-booking-card .oms-form__row select,
  .hero-booking-card .bf-input,
  .hero-booking-card .bf-field input,
  .hero-booking-card .bf-field select {
    height: 44px;
    font-size: 16px; /* prevents iOS zoom on focus */
  }

  /* FIX 6: Intro section button — prevent text overflow */
  .intro-text .btn {
    white-space: normal;
    word-wrap: break-word;
  }

  /* FIX 7: Gelegenheden subtitles — bump from 12.8px to 14px */
  .occasion-card .occasion-subtitle,
  .occasion-card small,
  .occasion-card span:last-child {
    font-size: 0.875rem;
  }

  /* FIX 8: USP descriptions — bump from 13.6px to 14px min */
  .usp-item p,
  .usp-card p {
    font-size: 0.875rem;
  }

  /* FIX 9: Form subtitle — bump from 13.12px */
  .hero-booking-card .booking-subtitle {
    font-size: 0.875rem;
  }

  /* FIX 10: Service page hero padding (dienst pages) */
  .hero-dienst-inner {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  /* Ensure hero padding matches container on smallest screens */
  .hero-split .hero-split-inner {
    padding: 40px 16px 48px;
  }
}

/* =========================================================================== */

.btn:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-nav-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(232,160,32,0.3);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}