/* ==========================================================================
   RIJSCHOOL DE BRAS - MASTER STYLESHEET
   Bouwbedrijf / Pijnenburg Style Layout:
   - Full-bleed Immersive Dark Hero met achtergrondafbeelding
   - Transparante header die wit/blur wordt bij scrollen
   - Light mode content body (#f8f9fa & #ffffff)
   - Near Black (#111315) met Rode Accentkleur (#E63946 / #D90429)
   - Features strip, 3 gelijke dienstenkaarten, Over ons met badge, werkgebied & contact
   - Floating Contact Island & Proefles modal
   ========================================================================== */

:root {
  /* Brand Accent Tokens - Rijschool Rood */
  --primary: #E63946;
  --primary-hover: #D90429;
  --primary-dark: #B70322;
  --primary-light: rgba(230, 57, 70, 0.12);
  --primary-glow: rgba(230, 57, 70, 0.35);
  
  /* Near Black & Dark Surfaces */
  --near-black: #111315;
  --near-black-surface: #181b1f;
  --charcoal: #24292e;
  --dark: #111315;
  --dark-surface: #181b1f;
  
  /* Text Colors (Light Mode Content) */
  --text-main: #1f2428;
  --text-muted: #57606a;
  --text-light: #f8fafc;
  
  /* Background Layers */
  --bg-body: #f8f9fa;
  --bg-card: #ffffff;
  --bg-subtle: #f0f2f5;
  --bg-warm: #fffdfa;
  
  /* Borders & Shadows */
  --border-light: rgba(17, 19, 21, 0.08);
  --border-glass: rgba(255, 255, 255, 0.2);
  --shadow-sm: 0 2px 8px rgba(17, 19, 21, 0.04);
  --shadow-md: 0 10px 30px rgba(17, 19, 21, 0.08);
  --shadow-lg: 0 20px 50px rgba(17, 19, 21, 0.14);
  --shadow-red: 0 8px 24px rgba(230, 57, 70, 0.32);
  
  /* Corner Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Box-Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* Standard Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

/* Typography Hierarchy */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--near-black);
  font-weight: 800;
  line-height: 1.2;
}

.section-tag {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: var(--near-black);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto 52px;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 4px 18px var(--primary-glow);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-glass {
  background-color: rgba(255, 255, 255, 0.18);
  color: #ffffff !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-glass:hover {
  background-color: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-near-black {
  background-color: var(--near-black);
  color: #ffffff !important;
  box-shadow: 0 4px 18px rgba(17, 19, 21, 0.25);
}

.btn-near-black:hover {
  background-color: var(--charcoal);
  transform: translateY(-2px);
}

/* ==========================================================================
   TOP ANNOUNCEMENT MARQUEE BAR (BOVEN HEADER, ROOD, COMPACT)
   ========================================================================== */
.top-announcement-bar {
  background: var(--primary);
  color: #FFFFFF;
  height: 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 1005;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.top-marquee-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: scrollTopAnnouncement 28s linear infinite;
}

.top-announcement-bar:hover .top-marquee-track {
  animation-play-state: paused;
}

.top-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.top-marquee-item strong {
  font-weight: 800;
  text-decoration: underline;
}

@keyframes scrollTopAnnouncement {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   HEADER & NAVIGATION (TRANSPARENT TO BLUR ON SCROLL)
   ========================================================================== */
.header {
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, top 0.3s ease;
  background: transparent;
}

.header.scrolled {
  position: fixed;
  top: 0;
  padding: 13px 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: var(--shadow-sm);
}

.header .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1360px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1002;
  flex-shrink: 0;
}

.logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition);
  /* Helemaal wit logo bij transparante header */
  filter: brightness(0) invert(1);
}

.header.scrolled .logo-img {
  /* Originele kleuren (Near Black & Rood) zodra header wit scrolt */
  filter: none;
}

.footer .logo-img {
  height: 38px;
  /* Wit/helder in de donkere footer */
  filter: brightness(0) invert(1);
}

.logo-sub {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.mobile-links-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.mobile-menu-footer {
  display: none;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.header.scrolled .nav-link {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #ffffff;
}

.header.scrolled .nav-link:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1002;
  flex-shrink: 0;
}

#header-wa-btn {
  padding: 10px 20px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.header.scrolled #header-wa-btn {
  background: var(--bg-subtle);
  color: var(--near-black) !important;
  border-color: var(--border-light);
}

.header.scrolled #header-wa-btn:hover {
  background: var(--near-black);
  color: #ffffff !important;
}

.nav-actions-desktop {
  display: inline-flex;
}

.menu-toggle {
  display: none;
  background: transparent !important;
  border: none !important;
  cursor: pointer;
  padding: 6px;
  color: #ffffff;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  z-index: 1005;
  outline: none;
  box-shadow: none !important;
}

.header.scrolled .menu-toggle {
  color: var(--near-black);
  background: transparent !important;
  border: none !important;
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle.active .icon-bars {
  display: none;
}

.menu-toggle.active .icon-close {
  display: block;
}

.menu-toggle.active,
.header.scrolled .menu-toggle.active {
  color: var(--near-black) !important;
  background: transparent !important;
  border: none !important;
}

/* Wanneer menu open is op light mode, toon het originele donkere logo */
body.menu-open .logo-img {
  filter: none !important;
}

.mobile-nav-cta {
  display: none;
}

/* ==========================================================================
   HERO SECTION (IMMERSIVE FULL-BLEED MET OVERLAY ZOALS BOUWBEDRIJVEN)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 85vh;
  min-height: 85dvh;
  display: flex;
  align-items: center;
  padding: 130px 0 65px;
  background-color: var(--near-black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: brightness(0.68) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 19, 21, 0.94) 0%,
    rgba(17, 19, 21, 0.72) 55%,
    rgba(230, 57, 70, 0.28) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 780px;
}

/* Reviews Pill (Light Mode Witte Capsule met Rode Sterren) */
.hero-review-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-full);
  padding: 6px 18px 6px 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28), 0 0 16px rgba(255, 255, 255, 0.25);
  margin-bottom: 24px;
}

.review-avatars {
  display: flex;
  align-items: center;
}

.review-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  margin-left: -8px;
  object-fit: cover;
}

.review-avatar:first-child {
  margin-left: 0;
}

.review-stars-text {
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.review-label {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.review-label strong {
  font-weight: 800;
  color: var(--primary);
}

.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  color: #ffffff;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.hero h1 span.highlight {
  color: var(--primary);
}

.hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 680px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

#hero-primary-cta {
  background-color: var(--primary);
  color: #ffffff !important;
  box-shadow: 0 4px 20px var(--primary-glow);
}

#hero-primary-cta:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--primary-glow);
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-item h3 {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-item h3 span {
  color: var(--primary);
}

.stat-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  margin: 0;
  font-weight: 500;
}

/* ==========================================================================
   FEATURE STRIP (USPS / VOORDELEN STRIP ZOALS BOUWBEDRIJVEN)
   ========================================================================== */
.feature-strip {
  background: #ffffff;
  padding: 44px 0;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.feature-info h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.feature-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   DIENSTEN SECTION & EQUAL CARD HEIGHTS
   ========================================================================== */
.services-section {
  padding: 100px 0 110px;
  background: var(--bg-body);
}

.services-carousel-wrapper {
  position: relative;
  width: 100%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: 230px;
  max-height: 230px;
  min-height: 230px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.service-img-wrap img.service-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.service-card:hover .service-img-wrap img.service-main-img {
  transform: scale(1.06);
}

.service-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  pointer-events: none;
  background: var(--near-black);
  color: #ffffff;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.service-body {
  padding: 32px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-body h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-list {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-main);
  margin-bottom: 10px;
  font-weight: 600;
}

.service-list li svg {
  color: var(--primary);
  flex-shrink: 0;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--primary);
  margin-top: auto;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.card-link:hover {
  color: var(--near-black);
  gap: 12px;
}

.carousel-dots {
  display: none;
}

/* ==========================================================================
   PRICING / TARIEVEN SECTION (3 PAKKETTEN, POPULAIR MET RODE BORDER)
   ========================================================================== */
.pricing-section {
  padding: 100px 0 110px;
  background: var(--bg-body);
  border-top: 1px solid var(--border-light);
}

.pricing-carousel-wrapper {
  position: relative;
  width: 100%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 460px));
  justify-content: center;
  gap: 32px;
  align-items: stretch;
  padding: 18px 0 28px;
}

.pricing-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

/* Meest Gekozen - Rode Border & Glow */
.pricing-card.popular {
  background: #ffffff;
  border: 2.5px solid var(--primary);
  box-shadow: 0 12px 36px rgba(230, 57, 70, 0.18);
  transform: scale(1.02);
  z-index: 4;
}

.pricing-card.popular:hover {
  transform: scale(1.02) translateY(-8px);
  box-shadow: 0 18px 48px rgba(230, 57, 70, 0.28);
  z-index: 5;
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px var(--primary-glow);
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.pricing-category {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 8px;
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 42px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-price .currency {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--near-black);
}

.pricing-price .amount {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--near-black);
  line-height: 1;
}

.pricing-card.popular .pricing-price .amount {
  color: var(--primary);
}

.pricing-price .period {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-main);
  margin-bottom: 14px;
  font-weight: 600;
}

.pricing-features li svg {
  color: var(--primary);
  flex-shrink: 0;
}

.pricing-btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  margin-top: auto;
}

/* ==========================================================================
   OVER ONS SECTION MET HIGHLIGHT BADGE
   ========================================================================== */
.about-section {
  padding: 100px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-visual img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.highlight-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--near-black);
  color: #ffffff;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-title {
  display: block;
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--primary);
}

.badge-subtitle {
  font-size: 0.85rem;
  opacity: 0.9;
  font-weight: 600;
}

.about-content h2 {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 36px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--near-black);
}

.about-feature-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* ==========================================================================
   GESLAAGDEN GALLERY & INTERACTIVE LIGHTBOX
   ========================================================================== */
.gallery-section {
  padding: 90px 0 100px;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

/* Dual Auto-Scroll Photo Ribbons (Echt 100% Edge to Edge, Geen Witruimte, Grotere Desktop Formaten) */
.photo-ribbons-container {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 36px 0 44px;
  position: relative;
}

.photo-ribbon-row {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.photo-ribbon-track-left {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: ribbonScrollLeft 52s linear infinite;
  will-change: transform;
}

.photo-ribbon-track-right {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: ribbonScrollRight 52s linear infinite;
  will-change: transform;
}

.photo-ribbon-track-left:hover,
.photo-ribbon-track-right:hover {
  animation-play-state: paused;
}

@keyframes ribbonScrollLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes ribbonScrollRight {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.photo-ribbon-item {
  width: 290px;
  height: 225px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  background: #f8fafc;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.photo-ribbon-item:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
  border-color: var(--primary);
  z-index: 10;
}

.photo-ribbon-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-ribbon-item:hover img {
  transform: scale(1.06);
}

/* Mobiel: 100% Edge-to-Edge & Doorlopende Animatie */
@media (max-width: 768px) {
  .photo-ribbons-container {
    gap: 12px;
    margin: 24px 0 32px;
  }
  
  .photo-ribbon-row {
    width: 100%;
    overflow: hidden;
  }

  .photo-ribbon-track-left {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: ribbonScrollLeft 38s linear infinite !important;
    will-change: transform;
  }

  .photo-ribbon-track-right {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: ribbonScrollRight 38s linear infinite !important;
    margin-left: -60px; /* Baksteen verspringend effect op mobiel */
    will-change: transform;
  }

  .photo-ribbon-item {
    width: 175px;
    height: 140px;
    border-radius: 12px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
}

/* Bento Grid */
.gallery-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
}

.bento-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  background: #f1f5f9;
  transition: var(--transition);
  grid-column: span 4;
  cursor: pointer;
}

.bento-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

/* Featured Large Bento Card (Grote linker blikvanger) */
.bento-item.bento-featured {
  grid-column: span 6;
  grid-row: span 2;
}

/* Compact Bento Cards (Rechter bovenkant) */
.bento-item.bento-compact {
  grid-column: span 3;
  grid-row: span 1;
}

/* Wide Bento Card (Rechter onderkant) */
.bento-item.bento-wide {
  grid-column: span 6;
  grid-row: span 1;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.bento-item:hover img {
  transform: scale(1.06);
}

/* Hover Zoom Overlay Badge */
.gallery-zoom-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(17, 19, 21, 0.82);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bento-item:hover .gallery-zoom-badge,
.photo-ribbon-item:hover .gallery-zoom-badge,
.photo-wall-card:hover .gallery-zoom-badge {
  opacity: 1;
  transform: translateY(0);
}

/* Geslaagden 36-Photo Wall Grid (geslaagden.html) */
.photo-wall-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.photo-wall-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 270px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  background: #f8fafc;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.photo-wall-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.photo-wall-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-wall-card:hover img {
  transform: scale(1.05);
}

/* Lightbox Modal Overlay */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 15, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999999;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  padding: 20px;
}

.lightbox-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.lightbox-content {
  position: relative;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-overlay.active .lightbox-content {
  transform: scale(1);
}

.lightbox-img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
  display: block;
  user-select: none;
}

.lightbox-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.95);
  border: 2px solid #ffffff;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10000000;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  pointer-events: auto !important;
  touch-action: manipulation;
}

.lightbox-close-btn:hover {
  background: var(--primary);
  transform: scale(1.1) rotate(90deg);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(20, 24, 30, 0.85);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10000000;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  pointer-events: auto !important;
  touch-action: manipulation;
}

.lightbox-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev-btn {
  left: 20px;
}

.lightbox-next-btn {
  right: 20px;
}

@media (max-width: 768px) {
  .lightbox-close-btn {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
  .lightbox-nav-btn {
    width: 44px;
    height: 44px;
  }
  .lightbox-prev-btn {
    left: 10px;
  }
  .lightbox-next-btn {
    right: 10px;
  }
}

.lightbox-caption-bar {
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1024px) {
  .gallery-bento-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
  }
  .bento-item.bento-featured {
    grid-column: span 6;
    grid-row: span 2;
  }
  .bento-item.bento-compact,
  .bento-item.bento-wide,
  .bento-item {
    grid-column: span 3;
    grid-row: span 1;
  }
  .photo-wall-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .photo-wall-card {
    height: 240px;
  }
}

/* 2 Naast elkaar op telefoon met stijlvolle asymmetrie */
@media (max-width: 680px) {
  .gallery-section {
    padding: 60px 0 70px;
  }
  .gallery-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
    gap: 12px;
  }
  .bento-item.bento-featured {
    grid-column: span 2;
    grid-row: span 2;
  }
  .bento-item.bento-compact,
  .bento-item.bento-wide,
  .bento-item {
    grid-column: span 1;
    grid-row: span 1;
  }
  .photo-ribbon-item {
    width: 170px;
    height: 160px;
  }
  .photo-wall-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .photo-wall-card {
    height: 180px;
  }
  .lightbox-nav-btn {
    width: 40px;
    height: 40px;
  }
  .lightbox-prev-btn { left: 10px; }
  .lightbox-next-btn { right: 10px; }
  .lightbox-close-btn { top: 12px; right: 12px; width: 38px; height: 38px; }
}

/* ==========================================================================
   PROMO BANNER / PROEFLES BOEKEN (DONKER BANNER ZOALS DYNO)
   ========================================================================== */
.promo-section {
  padding: 90px 0;
  background: var(--bg-body);
}

.promo-card {
  background: linear-gradient(135deg, #111315 0%, #181b1f 60%, rgba(230, 57, 70, 0.3) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.promo-text h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  margin-bottom: 16px;
}

.promo-text p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 32px;
}

.promo-action {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
}

.promo-action h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.promo-action p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* ==========================================================================
   WERKGEBIED TICKER / MARQUEE
   ========================================================================== */
.marquee-section {
  padding: 28px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.marquee-container {
  display: flex;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  padding: 2px 0;
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollMarquee 34s linear infinite;
}

.marquee-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  color: var(--near-black);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: var(--transition);
}

.marquee-pill svg {
  color: var(--primary);
}

.marquee-pill:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.marquee-pill:hover svg {
  color: #ffffff;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  padding: 100px 0;
  background: var(--bg-body);
}

.contact-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.contact-text h2 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  margin-bottom: 18px;
}

.contact-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--near-black);
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-detail-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.contact-detail-item a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 700;
  transition: var(--transition);
}

.contact-detail-item a:hover {
  color: var(--near-black);
}

.contact-cta-card {
  background: var(--bg-body);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-cta-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.contact-cta-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.contact-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #0D1017;
  color: rgba(255, 255, 255, 0.65);
  padding: 80px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.3fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  color: #ffffff;
}

.footer-brand p {
  margin-top: 18px;
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  background: #E63946;
  border-color: #E63946;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(230, 57, 70, 0.35);
}

.footer-social-link svg {
  display: block;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-links a {
  transition: var(--transition);
}

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

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

/* ==========================================================================
   FLOATING CONTACT ISLAND (ORIGINEEL MASTER DESIGN)
   ========================================================================== */
.floating-contact-island {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  background: rgba(17, 19, 21, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.35s ease, 
              visibility 0.35s ease;
}

.floating-contact-island.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.floating-whatsapp-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  background: #20ba5a;
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.floating-whatsapp-btn svg {
  width: 22px;
  height: 22px;
}

.floating-offerte-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px 0 16px;
  background: linear-gradient(135deg, #E63946 0%, #D90429 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  border-radius: var(--radius-full);
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-red);
  white-space: nowrap;
  text-decoration: none;
}

.floating-offerte-btn:hover {
  background: linear-gradient(135deg, #F04856 0%, #E63946 100%);
  color: #FFFFFF;
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.55);
}

.floating-offerte-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.floating-offerte-btn svg path {
  fill: #FFFFFF;
}

/* ==========================================================================
   PROEFLES MODAL POPUP
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(17, 19, 21, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 540px;
  padding: 36px;
  position: relative;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
  color: var(--near-black);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--near-black);
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

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

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
  background: #ffffff;
  color: var(--near-black);
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.18);
}

.form-status-msg {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  margin-top: 14px;
  display: none;
  line-height: 1.5;
}

.form-status-msg.success {
  display: block;
  background: #E8F5E9;
  color: #1B5E20;
  border: 1px solid #A5D6A7;
}

.form-status-msg.error {
  display: block;
  background: #FFEBEE;
  color: #B71C1C;
  border: 1px solid #FFCDD2;
}

button:disabled {
  opacity: 0.65;
  cursor: not-allowed !important;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (BOUW STIJL)
   ========================================================================== */
@media (max-width: 1180px) {
  .nav-menu {
    gap: 20px;
  }
  .nav-link {
    font-size: 0.9rem;
  }
}

@media (max-width: 960px) {
  .header {
    padding: 14px 0;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-actions-desktop {
    display: none;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 100px 24px 36px;
    overflow-y: auto;
  }
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-links-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin: 10px 0 30px;
    list-style: none;
  }
  .mobile-links-list li {
    width: 100%;
  }
  .nav-link {
    color: var(--near-black) !important;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    padding: 12px 0;
    display: block;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-light);
    border-radius: 0;
    transition: var(--transition);
  }
  .nav-link::after {
    display: none;
  }
  .nav-link:hover,
  .nav-link:active {
    color: var(--primary) !important;
    background: transparent;
    padding-left: 8px;
  }

  .mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
  }
  .mobile-app-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    background: var(--bg-subtle);
    color: var(--near-black) !important;
    border: 1px solid var(--border-light);
  }
  .mobile-offerte-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    background: var(--primary);
    color: #FFFFFF !important;
  }
  .mobile-contact-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 6px;
  }
  .mobile-contact-row a {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
    transition: var(--transition);
  }
  .mobile-contact-row a:hover {
    color: var(--primary);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .promo-card {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-box {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .hero-bg,
  .page-hero-bg {
    object-position: 85% center !important;
  }
}

@media (max-width: 480px) {
  .hero-bg,
  .page-hero-bg {
    object-position: 90% center !important;
  }
}

@media (max-width: 820px) {
  /* Edge to Edge Carousel on Mobile for Services & Pricing */
  .services-section,
  .pricing-section {
    padding: 70px 0 80px;
    overflow: hidden;
  }
  .services-section .container,
  .pricing-section .container,
  .reviews-section .container {
    padding: 0;
  }
  .services-section .text-center,
  .pricing-section .text-center,
  .reviews-section .text-center {
    padding: 0 24px;
  }
  .services-carousel-wrapper,
  .pricing-carousel-wrapper,
  .reviews-carousel-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
  .services-grid,
  .pricing-grid,
  .reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 24px 24px 32px;
    margin-top: -6px;
    scrollbar-width: none;
    scroll-padding: 0 24px;
  }
  .services-grid::-webkit-scrollbar,
  .pricing-grid::-webkit-scrollbar,
  .reviews-grid::-webkit-scrollbar {
    display: none;
  }
  .service-card,
  .pricing-card,
  .review-card {
    min-width: 84vw;
    max-width: 84vw;
    flex: 0 0 84vw;
    scroll-snap-align: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .pricing-card.popular {
    transform: none;
    z-index: 3;
  }
  .pricing-card.popular:hover {
    transform: translateY(-4px);
  }
  .carousel-dots,
  .reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    padding: 0 24px;
  }
  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
  }
  .carousel-dot.active {
    width: 28px;
    border-radius: 4px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
  }

  #hero-secondary-cta {
    display: none !important;
  }

  .about-visual img {
    height: 320px;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .stat-item h3 {
    font-size: 1.1rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .floating-contact-island {
    bottom: 18px;
    padding: 5px 6px;
    gap: 6px;
  }
  .floating-whatsapp-btn {
    width: 40px;
    height: 40px;
  }
  .floating-offerte-btn {
    height: 40px;
    padding: 0 16px 0 12px;
    font-size: 0.85rem;
  }
  .highlight-badge {
    bottom: 12px;
    right: 12px;
    padding: 12px 16px;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SUBPAGE MASTER STYLES (Consistency across 5 pages)
   ========================================================================== */

/* Active Nav Link Highlight */
.nav-link.active {
  color: var(--primary) !important;
  font-weight: 700;
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

/* Subpage Hero Header (Matching Home Hero Style - Compact Height, Immersive & Transparent Header) */
.page-hero {
  position: relative;
  min-height: 38vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 135px 0 45px;
  background-color: var(--near-black);
  overflow: hidden;
  text-align: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: brightness(0.68) contrast(1.1);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 19, 21, 0.92) 0%,
    rgba(17, 19, 21, 0.72) 55%,
    rgba(230, 57, 70, 0.28) 100%
  );
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  color: #ffffff !important;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.page-hero h1 span.highlight {
  color: var(--primary);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 14px !important;
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 32vh;
    padding: 115px 0 35px;
  }
}

/* Subpage Section Spacing */
.subpage-section {
  padding: 90px 0;
  background: var(--bg-body);
}

.subpage-section.bg-white {
  background: #ffffff;
}

.subpage-section.bg-dark {
  background: var(--near-black);
  color: #ffffff;
}

/* FAQ Accordion Component */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 850px;
  margin: 40px auto 0;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(230, 57, 70, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  gap: 16px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: var(--primary);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 28px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.open .faq-answer {
  padding-bottom: 24px;
}

/* Car Showcase Cards */
.car-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.car-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.car-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(230, 57, 70, 0.3);
}

.car-img-wrap {
  position: relative;
  height: 310px;
  background: #111315;
  overflow: hidden;
}

.car-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

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

.car-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
}

.car-body {
  padding: 28px;
}

.car-body h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.car-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.55;
}

.car-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.car-spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 600;
}

.car-spec-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Contact Page Split Layout & Responsive Optimization */
.subpage-section {
  padding: 70px 0;
  background: var(--bg-body);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 36px;
  margin-top: 24px;
  align-items: start;
}

.contact-info-panel,
.contact-form-panel {
  background: #ffffff;
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.contact-form-panel {
  box-shadow: var(--shadow-md);
}

.contact-panel-title {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--near-black);
}

.contact-panel-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--near-black);
}

.contact-info-content p,
.contact-info-content a {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

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

.contact-wa-box {
  background: rgba(230, 57, 70, 0.04);
  border: 1px dashed rgba(230, 57, 70, 0.35);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-top: 12px;
}

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

@media (max-width: 900px) {
  .subpage-section {
    padding: 45px 0;
  }
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 10px;
  }
  .contact-info-panel,
  .contact-form-panel {
    padding: 28px 22px;
  }
}

@media (max-width: 600px) {
  .subpage-section {
    padding: 32px 0;
  }
  .contact-page-grid {
    gap: 20px;
  }
  .contact-info-panel,
  .contact-form-panel {
    padding: 22px 16px;
    border-radius: var(--radius-md);
  }
  .contact-panel-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
  }
  .contact-panel-desc {
    font-size: 0.88rem;
    margin-bottom: 18px;
  }
  .contact-info-item {
    gap: 12px;
    margin-bottom: 16px;
  }
  .contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  .contact-info-icon svg {
    width: 18px;
    height: 18px;
  }
  .contact-info-content h4 {
    font-size: 0.98rem;
  }
  .contact-info-content p,
  .contact-info-content a {
    font-size: 0.88rem;
  }
  .contact-wa-box {
    padding: 16px 14px;
  }
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-group {
    margin-bottom: 12px;
  }
  .form-group label {
    font-size: 0.82rem;
    margin-bottom: 4px;
  }
  .form-input {
    padding: 12px 14px;
    font-size: 16px; /* Prevents auto zoom on iOS */
    border-radius: var(--radius-sm);
  }
  .contact-form-panel button[type="submit"] {
    padding: 14px 18px;
    font-size: 0.95rem;
  }
}

/* Steps Grid & Faalangst Banner Layouts */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.step-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step-number {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.faalangst-banner {
  background: var(--bg-body);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}

.faalangst-img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 320px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .faalangst-banner {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    gap: 24px;
  }
  .faalangst-img {
    height: 240px;
  }
}

@media (max-width: 600px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }
  .step-card {
    padding: 22px 18px;
  }
  .faalangst-banner {
    padding: 22px 16px;
  }
}

/* ==========================================================================
   REVIEWS CAROUSEL COMPONENT (Homepage & Geslaagden)
   ========================================================================== */
.reviews-section {
  padding: 90px 0 100px;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  position: relative;
}

.reviews-carousel-wrapper {
  position: relative;
  margin-top: 42px;
  display: flex;
  align-items: center;
}

.reviews-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding: 16px 8px 24px;
  width: 100%;
}

.reviews-grid::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 320px;
  max-width: 420px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 30px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: rgba(230, 57, 70, 0.35);
}

.review-card-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}

.review-card-text {
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 22px;
  flex-grow: 1;
}

.review-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.review-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(230, 57, 70, 0.15);
}

.review-card-name {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--near-black);
}

.reviews-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  color: var(--near-black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.reviews-nav-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.28);
}

.reviews-prev {
  left: -22px;
}

.reviews-next {
  right: -22px;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding: 0 16px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .review-card {
    flex: 0 0 calc(50% - 12px);
    min-width: 290px;
  }
  .reviews-prev { left: -10px; }
  .reviews-next { right: -10px; }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 0 70px;
  }
  .reviews-nav-btn {
    display: none;
  }
}

