/* ==========================================================================
   BASE.CSS — UNIVERSELE WEBSITE TEMPLATE
   CSS Custom Properties + Basis Styling
   Project: verhuislifthurenamsterdam.nl
   Merk: VHL Amsterdam
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* ============================================================
     KLEUREN — verhuislifthurenamsterdam.nl
     Gebaseerd op het logo van Amsterdam:
     Rood (#da131a), Zwart (#1a1a1a) en Oranje (#fb9a17)
     ============================================================ */

  /* Primair — Rood uit logo Amsterdam (CTA knoppen, links) */
  --color-primary: #da131a;
  --color-primary-dark: #b50f15;
  --color-primary-light: #f8d1d3;
  --color-primary-bg: #fdf1f1;
  --color-primary-shadow: rgba(218, 19, 26, 0.3);
  --color-primary-rgb: 218, 19, 26;

  /* Secundair — Zwart uit logo Amsterdam (koppen, tekst) */
  --color-secondary: #1a1a1a;
  --color-secondary-dark: #000000;
  --color-secondary-light: #4a4a4a;
  --color-secondary-bg: #f2f2f2;
  --color-secondary-rgb: 26, 26, 26;

  /* Accent — Oranje van website Amsterdam (sterren, badges) */
  --color-accent: #fb9a17;
  --color-accent-dark: #db7e01;
  --color-accent-light: #fef3e0;
  --color-accent-rgb: 251, 154, 23;

  /* WhatsApp */
  --color-wa: #128C7E;
  --color-wa-hover: #0e7a6e;

  /* Sterren */
  --color-stars: #F5A623;

  /* Tekst & achtergrond */
  --color-text: #000000;
  --color-text-muted: #333333;
  --color-text-light: #666666;
  --color-border: #E2E5EA;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F5F5F5;

  /* Typografie */
  --font-heading: 'Montserrat', 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Open Sans', 'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Effects */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-sticky: 0 -2px 8px rgba(0, 0, 0, 0.1);
  --shadow-btn-primary: 0 2px 8px rgba(218, 19, 26, 0.3);
  --shadow-btn-wa: 0 2px 8px rgba(37, 211, 102, 0.3);

  /* Layout */
  --max-width: 1200px;
  --header-height: 108px;
  --sticky-height: 56px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

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

ul,
ol {
  list-style: none;
}

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

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

@media (min-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.375rem; }
}

@media (min-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }
}

p {
  margin-bottom: var(--space-md);
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

@media (min-width: 768px) {
  .container {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-btn-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  color: #fff;
  box-shadow: 0 4px 12px rgba(218, 19, 26, 0.4);
}

.btn-wa {
  background-color: var(--color-wa);
  color: #fff;
  box-shadow: var(--shadow-btn-wa);
}

.btn-wa:hover {
  background-color: var(--color-wa-hover);
  color: #fff;
}

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

.btn-outline:hover {
  background-color: var(--color-secondary);
  color: #fff;
}

.btn-black {
  background-color: #000000;
  color: #fff;
}

.btn-black:hover {
  background-color: #222222;
  color: #fff;
}

/* ---------- Section Spacing ---------- */
.section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .section {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
  }
}

.section-alt {
  background-color: var(--color-bg-alt);
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }

.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;
}

/* ---------- Mobiel body padding voor sticky CTA ---------- */
@media (max-width: 767px) {
  body {
    padding-bottom: 56px;
  }
}
/* ==========================================================================
   HEADER.CSS - UNIVERSELE WEBSITE TEMPLATE
   Tweedelige header: donkerblauw bovenstuk + witte navigatiebalk
   ========================================================================== */

/* ---------- Header wrapper ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFFFFF;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ---------- Bovenste balk: wit met logo + CTA ---------- */
.header-top {
  background: #FFFFFF;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-sm) var(--space-md);
}

@media (min-width: 768px) {
  .header-inner {
    padding: 0 var(--space-lg);
    max-width: none;
  }
}

/* ---------- Logo ---------- */
.header-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 6px;
}

.header-logo img {
  height: 40px;
  width: auto;
}

.header-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
  color: var(--color-secondary);
}

@media (min-width: 768px) {
  .header-logo img {
    height: 48px;
  }
  .header-logo-text {
    font-size: 18px;
  }
}

/* ---------- Header CTA (rechts, op donkerblauw) ---------- */
.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: flex;
    gap: var(--space-sm);
  }

  .header-cta .btn {
    font-size: 0.875rem;
    padding: 10px 20px;
    white-space: nowrap;
  }
}

/* ---------- Hamburger (op donkerblauw) ---------- */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #222;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

/* ---------- Navigatiebalk: wit ---------- */
.header-subnav {
  display: none;
  background-color: #FFFFFF;
  border-bottom: 1px solid #e5e5e5;
}

@media (min-width: 1024px) {
  .header-subnav {
    display: block;
  }
}

.header-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 46px;
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
  }
}

.header-nav a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.header-nav a:hover {
  color: var(--color-primary);
  background-color: rgba(0, 0, 0, 0.05);
}

.header-nav a.active {
  color: var(--color-primary);
  background-color: rgba(0, 0, 0, 0.05);
}

/* Icoontjes kleur */
.header-nav a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.25s ease;
}

.header-nav a:hover svg {
  opacity: 1;
}

/* Contact link: opvallende kleur */
.header-nav a.nav-contact {
  color: var(--color-primary);
}
.header-nav a.nav-contact:hover {
  color: var(--color-primary-dark);
}
.header-nav a.nav-contact svg {
  opacity: 1;
}

/* ---------- Diensten dropdown (desktop) ---------- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  cursor: pointer;
}

.nav-dropdown > a .nav-chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.25s ease;
}

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

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 8px 0;
  z-index: 110;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-radius: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

.nav-dropdown-menu a svg {
  width: 16px;
  height: 16px;
  opacity: 0.5;
}

.nav-dropdown-menu a:hover svg {
  opacity: 1;
}

/* ---------- Diensten dropdown (mobiel) ---------- */
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px var(--space-md);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  border-radius: var(--radius-md);
  transition: background-color 0.2s ease;
}

.mobile-dropdown-toggle:hover {
  background-color: var(--color-accent-light);
}

.mobile-dropdown-toggle svg:first-child {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  margin-right: 12px;
}

.mobile-dropdown-toggle .mobile-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
  margin-left: auto;
}

.mobile-dropdown-toggle.open .mobile-chevron {
  transform: rotate(180deg);
}

.mobile-dropdown-submenu {
  display: none;
  padding-left: var(--space-lg);
}

.mobile-dropdown-submenu.open {
  display: block;
}

.mobile-dropdown-submenu a {
  padding: 10px var(--space-md);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ---------- Mobiel menu ---------- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-bg);
  z-index: 99;
  overflow-y: auto;
  padding: var(--space-md);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px var(--space-md);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-menu a:hover {
  background-color: var(--color-accent-light);
  color: var(--color-accent);
}

.mobile-menu a svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.mobile-menu .mobile-cta {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 2px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mobile-menu .mobile-cta .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}
/* ==========================================================================
   HERO.CSS — UNIVERSELE WEBSITE TEMPLATE
   Hero section template
   ========================================================================== */

.hero {
  position: relative;
  padding: var(--space-xl) 0;
  background-color: var(--color-secondary-bg);
  overflow: hidden;
  /* Vangnet: !important voorkomt dat inline background-shorthand
     de size/position reset bij navigatie (bfcache shift bug) */
  background-size: cover !important;
  background-position: center 75% !important;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .hero {
    padding: var(--space-2xl) 0;
    min-height: 450px;
    display: flex;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 550px;
  }
}

/* ---------- Achtergrondafbeelding ---------- */
.hero--image {
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 1fr;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.hero--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.55) 35%,
    rgba(0, 0, 0, 0.30) 65%,
    rgba(0, 0, 0, 0.10) 100%
  );
  z-index: 1;
}

.hero--image .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero--image .hero-content h1,
.hero--image .hero-content .hero-subtitle {
  color: #fff;
}

/* Split layout (legacy, niet gebruikt op homepage) */
.hero--split {
  background: var(--color-secondary-dark);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  min-height: auto;
}
.hero--split .hero-content {
  padding: var(--space-2xl) var(--space-lg);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero--split .hero-content h1,
.hero--split .hero-content .hero-subtitle {
  color: #fff;
}
.hero--split .hero-image {
  width: 100%;
  max-height: 350px;
  overflow: hidden;
}
.hero--split .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
@media (min-width: 768px) {
  .hero--split {
    grid-template-columns: 1fr 1fr;
    min-height: 380px;
  }
  .hero--split .hero-content {
    padding: var(--space-3xl) var(--space-2xl);
  }
  .hero--split .hero-image {
    max-height: none;
    height: 100%;
  }
}
@media (min-width: 1024px) {
  .hero--split {
    grid-template-columns: 45% 55%;
    min-height: 420px;
  }
}

/* ---------- Floating review kaart ---------- */
.hero-review-card {
  display: none;
  position: absolute;
  bottom: 24px;
  right: 32px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px 24px 16px;
  max-width: 300px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.hero-review-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.hero-review-card:hover .hero-review-card__arrow {
  transform: translate(2px, -2px);
}

@media (min-width: 768px) {
  .hero-review-card {
    display: block;
  }
}

@media (min-width: 1024px) {
  .hero-review-card {
    bottom: 32px;
    right: 48px;
  }
}

/* Quote icoon linksboven */
.hero-review-card__quoteicon {
  position: absolute;
  top: 12px;
  left: 16px;
}

/* Grote ronde foto met verified badge */
.hero-review-card__photo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

.hero-review-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  border: 3px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.hero-review-card__verified {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 22px;
  height: 22px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

/* Sterren */
.hero-review-card__stars {
  color: var(--color-stars);
  font-size: 1.125rem;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

/* Quote tekst */
.hero-review-card__quote {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 10px 0;
  font-style: italic;
}

/* Auteur */
.hero-review-card__author {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 14px;
}

/* Google badge met arrow onderaan */
.hero-review-card__google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-heading);
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-review-card__arrow {
  transition: transform 0.25s ease;
  color: rgba(255, 255, 255, 0.8);
}

/* Driehoek-pointer onderaan de kaart */
.hero-review-card__pointer {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 8px;
  overflow: hidden;
}

.hero-review-card__pointer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: none;
  border-left: none;
}

/* ---------- Floating prijs badge ---------- */
.hero-badge {
  display: none;
  position: absolute;
  top: 20px;
  right: 32px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 50px;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .hero-badge {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .hero-badge {
    right: 48px;
    top: 28px;
  }
}

/* ---------- Floating truck cutout ---------- */
.hero-truck-cutout {
  display: none;
  position: absolute;
  bottom: -10px;
  right: 30%;
  z-index: 2;
  width: 200px;
  height: auto;
  opacity: 0.13;
  filter: brightness(0) invert(1);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .hero-truck-cutout {
    display: block;
  }
}

/* ---------- Content ---------- */
.hero-content {
  max-width: 720px;
}

.hero-content h1 {
  margin-bottom: var(--space-md);
}

/* Wanneer hero-content een inline color heeft (bv. color:#fff op donkere
   achtergrond), moeten h1, subtitle en review-text die kleur erven.
   Zonder deze regels wint de globale h1{color:var(--color-secondary)} */
.hero-content[style] h1,
.hero-content[style] .hero-subtitle,
.hero-content[style] .hero-review-text {
  color: inherit;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

/* ---------- CTA knoppen ---------- */
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

@media (min-width: 480px) {
  .hero-cta {
    flex-direction: row;
    gap: var(--space-md);
  }
}

.hero-cta .btn {
  font-size: 1rem;
  padding: 14px 28px;
}

/* ---------- Hero review badge ---------- */
.hero-review {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.hero-review-stars {
  color: var(--color-stars);
  font-size: 1.125rem;
  letter-spacing: 2px;
}

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

.hero--image .hero-review-text {
  color: rgba(255, 255, 255, 0.85);
}
/* ==========================================================================
   PAGE.CSS - UNIVERSELE WEBSITE TEMPLATE
   Gedeelde page-level styles voor alle pagina's
   ========================================================================== */

/* ========== KEYFRAME ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--color-primary-rgb), 0.4); }
  50% { box-shadow: 0 0 0 14px rgba(var(--color-primary-rgb), 0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.active > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.active > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.active > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.active > *:nth-child(6) { transition-delay: 0.3s; }

/* ========== BREADCRUMB ========== */
.breadcrumb {
  padding: var(--space-md) 0;
  font-size: 0.875rem;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  color: var(--color-text-light);
}
.breadcrumb li + li::before {
  content: '\203A';
  margin: 0 var(--space-sm);
  color: var(--color-text-light);
  font-size: 1rem;
}
.breadcrumb a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}
.breadcrumb [aria-current="page"] {
  color: var(--color-text-light);
  pointer-events: none;
}

/* ========== SECTION HEADER ========== */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.section-header h2 {
  margin-bottom: var(--space-sm);
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: var(--color-accent);
  margin: var(--space-sm) auto 0;
  border-radius: 2px;
  transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.reveal.active .section-header h2::after,
.section-header h2::after {
  width: 60px;
}
.reveal.active .section-header h2::after {
  width: 60px;
}
.section-header p {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ========== CONTENT SECTION (sub-pages) ========== */
.content-section {
  padding: var(--space-2xl) 0;
}
.content-section:nth-child(even) {
  background: var(--color-bg-alt);
}
.content-section h2 {
  margin-bottom: var(--space-md);
}
.content-section h3 {
  margin-bottom: var(--space-sm);
  margin-top: var(--space-lg);
}
.content-section p,
.content-section li {
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}
.content-section ul,
.content-section ol {
  padding-left: 1.5rem;
  margin-bottom: var(--space-md);
}
.content-section li {
  margin-bottom: var(--space-xs);
}
.content-section blockquote {
  border-left: 4px solid var(--color-primary);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  background: var(--color-primary-bg);
  border-radius: var(--radius-md);
  font-style: italic;
}
.content-section blockquote p {
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

/* ========== CONTENT IMAGE (portrait-bescherming) ========== */
/* Voorkomt dat staande foto's de volledige breedte vullen en daardoor
   onnodig groot worden. max-height + object-fit: cover zorgt ervoor
   dat portrait foto's netjes gecropped worden. */
.content-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

/* Breed vangnet: alle lazy-loaded content-afbeeldingen binnen <main>
   krijgen een max-height zodat staande foto's nooit te groot worden.
   Galerij-items (260px), dienst-cards (220px) en photo-strips (16/9)
   hebben al hun eigen vaste hoogte en worden niet beïnvloed. */
main img[loading="lazy"] {
  max-height: 400px;
  object-fit: cover;
}

/* ========== CONTENT BLOCK (tekst + kleine foto naast elkaar) ========== */
/* Herbruikbaar component: foto klein naast tekst, afwisselend links/rechts.
   Standaard: tekst links, foto rechts. Met --img-left: foto links, tekst rechts. */
.content-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
  margin-bottom: var(--space-lg);
}
@media (min-width: 768px) {
  .content-block {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
  }
  .content-block--img-left {
    grid-template-columns: 1fr 1fr;
  }
}
.content-block__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.content-block__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.content-block__img figcaption {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  padding: var(--space-xs) var(--space-sm);
  text-align: center;
  background: var(--color-bg);
}

/* ========== PRICE BADGE (prijsoverzicht in content-block) ========== */
.price-badge {
  margin-top: var(--space-lg);
  padding: var(--space-lg);
  background: linear-gradient(135deg, #f0faf1 0%, #e8f5e9 100%);
  border-left: 5px solid var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 2px 12px rgba(var(--color-primary-rgb), 0.1);
}
.price-badge__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: var(--space-sm);
}
.price-badge__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.15);
}
.price-badge__row:last-of-type {
  border-bottom: none;
}
.price-badge__label {
  font-size: 0.9375rem;
  color: #333;
}
.price-badge__price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  white-space: nowrap;
}
.price-badge__link {
  display: inline-block;
  margin-top: var(--space-md);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-secondary);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}
.price-badge__link:hover {
  background: var(--color-secondary-dark, #000000);
}

/* ========== USP BALK ========== */
.usp-balk {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 768px) {
  .usp-balk {
    grid-template-columns: repeat(3, 1fr);
  }
}
.usp-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  transition: transform 0.3s ease;
}
.usp-item:hover {
  transform: translateY(-3px);
}
.usp-item-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-accent-light) 0%, #fff 100%);
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.usp-item:hover .usp-item-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(var(--color-accent-rgb), 0.25);
}
.usp-item-icon svg {
  width: 24px;
  height: 24px;
}
.usp-item h3,
.usp-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
  color: #1a1a1a;
}
.usp-item p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ========== DIENSTEN GRID ========== */
.diensten-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 768px) {
  .diensten-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .diensten-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.dienst-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s, transform 0.3s;
  text-decoration: none;
  color: inherit;
}
.dienst-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transform: translateY(-6px);
}
.dienst-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--color-bg-alt);
}
.dienst-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(1.05) contrast(1.08) saturate(1.15);
  transition: transform 0.4s ease, filter 0.4s ease;
}
.dienst-card:hover .dienst-card-image img {
  transform: scale(1.08);
  filter: brightness(1.1) contrast(1.1) saturate(1.2);
}
.dienst-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 100%);
  pointer-events: none;
}
.dienst-card-image::before {
  content: 'Bekijk \2192';
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: rgba(255,255,255,0.95);
  color: #1a1a1a;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  z-index: 2;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.dienst-card:hover .dienst-card-image::before {
  opacity: 1;
  transform: translateX(0);
}
.dienst-card-content {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dienst-card-content h3 {
  font-size: 1.125rem;
  color: #1a1a1a;
  margin-bottom: var(--space-xs);
}
.dienst-card-content p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 0;
  flex: 1;
}

/* ========== HUB GRID & CARDS ========== */
.hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 768px) {
  .hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .hub-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.hub-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.hub-card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--color-primary-light);
  transform: translateY(-3px);
}
.hub-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  color: #1a1a1a;
}
.hub-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ========== WHY SECTION ========== */
.why-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 768px) {
  .why-section {
    grid-template-columns: 1fr 1fr;
  }
}
.why-section-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.why-section-image::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  border: 3px solid var(--color-accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.why-section img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  filter: brightness(1.05) contrast(1.05) saturate(1.1);
}
.why-list {
  list-style: none;
  padding: 0;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.why-list li svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ========== WERKWIJZE STAPPEN ========== */
.werkwijze-stappen {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  counter-reset: stap;
}
@media (min-width: 768px) {
  .werkwijze-stappen {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .werkwijze-stappen {
    grid-template-columns: repeat(3, 1fr);
    position: relative;
  }
  .werkwijze-stappen::before {
    content: '';
    position: absolute;
    top: 24px;
    left: calc(16.67% + 24px);
    right: calc(16.67% + 24px);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--color-accent) 0, var(--color-accent) 8px, transparent 8px, transparent 16px);
    z-index: 0;
  }
}
.werkwijze-stap {
  text-align: center;
  counter-increment: stap;
  position: relative;
  z-index: 1;
}
.werkwijze-stap-nummer {
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.werkwijze-stap:hover .werkwijze-stap-nummer {
  transform: scale(1.15);
  box-shadow: 0 6px 24px rgba(var(--color-accent-rgb), 0.4);
}
.werkwijze-stap h3 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}
.werkwijze-stap p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ========== PRIJZEN CARDS ========== */
.prijzen-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .prijzen-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.prijs-card {
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-top: 4px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  position: relative;
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.prijs-card .btn {
  margin-top: auto;
}
.prijs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.prijs-card h3 {
  margin-bottom: var(--space-md);
}
.prijs-card .prijs-bedrag {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 6px;
}
.prijs-card .prijs-per {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}
.prijs-card .prijs-extra {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}
.prijs-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}
.prijs-card li {
  padding: var(--space-xs) 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}
.prijs-card li:last-child {
  border-bottom: none;
}
.prijs-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary-dark) 100%);
  color: #1a1a1a;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(var(--color-accent-rgb), 0.35);
}
.prijs-card--popular {
  border-color: var(--color-accent);
}
.prijs-card--popular::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(var(--color-accent-rgb), 0.06), transparent);
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
}
.prijzen-cta {
  text-align: center;
  margin-top: var(--space-xl);
}
.prijzen-cta p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

/* ========== STEDEN GRID ========== */
.steden-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}
@media (min-width: 768px) {
  .steden-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .steden-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.stad-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s, box-shadow 0.2s;
}
.stad-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.stad-link svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ========== OBJECTEN GRID ========== */
.objecten-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}
@media (min-width: 768px) {
  .objecten-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .objecten-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.object-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s, box-shadow 0.2s;
}
.object-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ========== GALERIJ GRID ========== */
.galerij-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 768px) {
  .galerij-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .galerij-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.galerij-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.galerij-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.2);
}
.galerij-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(1.02) contrast(1.05) saturate(1.12);
  transition: transform 0.5s ease, filter 0.4s ease;
}
.galerij-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.08) contrast(1.08) saturate(1.2);
}
.galerij-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.25) 60%, transparent 100%);
  text-align: left;
}

/* ========== SPEC GRID ========== */
.spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 768px) {
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .spec-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.spec-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.spec-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.spec-card-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1a1a1a;
}
.spec-card-icon svg {
  width: 20px;
  height: 20px;
}
.spec-card h3 {
  font-size: 0.9375rem;
  margin-bottom: 2px;
}
.spec-card p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ========== DIENSTEN LAYOUT (homepage spec-cards als links) ========== */
.diensten-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
  margin-top: var(--space-lg);
}
.diensten-layout > p {
  grid-column: 1 / -1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-md);
}
.diensten-layout a.spec-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.diensten-layout a.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.spec-card__link {
  margin-top: var(--space-sm);
  font-size: 0.85em;
  color: var(--color-primary);
  font-weight: 600;
}
@media (max-width: 767px) {
  .diensten-layout {
    grid-template-columns: 1fr;
  }
}

/* ========== STATS COUNTER BAR ========== */
.stats-bar {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  position: relative;
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-xs);
}
@media (min-width: 768px) {
  .stat-number {
    font-size: 3rem;
  }
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

/* ========== WAVE SEPARATOR ========== */
.wave-separator {
  display: block;
  width: 100%;
  line-height: 0;
  margin: 0;
}
.wave-separator svg {
  display: block;
  width: 100%;
  height: 50px;
}
@media (min-width: 768px) {
  .wave-separator svg {
    height: 70px;
  }
}

/* ========== FAQ SECTION ========== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-category {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin: var(--space-lg) 0 var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-primary);
}
.faq-category:first-child {
  margin-top: 0;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-md) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: left;
  gap: var(--space-md);
}
.faq-question:hover {
  color: var(--color-primary);
}
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  padding-bottom: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  display: block;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: var(--space-md);
}

/* ========== CONTENT TABLE ========== */
.content-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0 var(--space-lg);
}
.content-table th,
.content-table td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.content-table th {
  background: var(--color-bg-alt);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
}
.content-table td {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* ========== CONTACT BLOCK ========== */
.contact-block {
  background: var(--color-primary-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  margin: var(--space-lg) 0;
}
.contact-block h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}
.contact-block .phone {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-primary);
  text-decoration: none;
  display: inline-block;
  margin-bottom: var(--space-md);
}

/* ========== REVIEW CARD ========== */
.review-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
}
.review-card p {
  font-style: italic;
  margin-bottom: var(--space-sm);
}
.review-card cite {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* ========== HERO ENHANCEMENTS ========== */
.hero-content {
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.hero-cta .btn-primary {
  animation: pulse 3s ease-in-out 2.5s infinite;
}
.hero-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}
.hero-deco--1 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(var(--color-accent-rgb), 0.12) 0%, transparent 70%);
  top: -100px;
  right: -50px;
  animation: float 7s ease-in-out infinite;
}
.hero-deco--2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(var(--color-primary-rgb),0.1) 0%, transparent 70%);
  bottom: -60px;
  left: 5%;
  animation: float 9s ease-in-out infinite reverse;
}
.hero-deco--3 {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255,255,255,0.12);
  top: 25%;
  right: 12%;
  animation: float 5s ease-in-out infinite 1s;
}

/* ========== ENHANCED CTA END ========== */
.cta-section--end {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #da131a 0%, #e84249 50%, #da131a 100%);
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
}
.cta-section--end::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-section--end .container {
  position: relative;
  z-index: 1;
}
.cta-section--end::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(var(--color-accent-rgb), 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ========== CONTENT SECTION ALT ========== */
.content-section--alt {
  background: var(--color-bg-alt);
}

/* ========== USP GRID (alias) ========== */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 768px) {
  .usp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========== STAT SUFFIX ========== */
.stat-suffix {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}
@media (min-width: 768px) {
  .stat-suffix {
    font-size: 3rem;
  }
}

/* ========== DIENST CARD PRICE + LINK ========== */
.dienst-card-price {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: var(--space-sm);
}
.dienst-card-link {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: var(--space-xs);
}
.dienst-card:hover .dienst-card-link {
  color: var(--color-primary);
}

/* ========== REVIEW CARDS GRID ========== */
.review-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 768px) {
  .review-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .review-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.review-card-stars {
  color: var(--color-stars);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  display: block;
}
.review-card-title {
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: var(--space-sm);
}
.review-card-quote {
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
  border: none;
  padding: 0;
  background: none;
}
.review-card-author {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-weight: 600;
}

/* ========== GALLERY GRID (alias for galerij) ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 220px;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.2);
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-caption {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding: var(--space-sm);
  margin: 0;
}

/* ========== WHY IMAGE (alias) ========== */
.why-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.why-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}
.why-content h2 {
  margin-bottom: var(--space-md);
}

/* ========== VERGELIJKINGSTABEL ========== */
.vergelijk-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.vergelijk-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg);
  font-size: 0.9375rem;
}
.vergelijk-table thead {
  background: var(--color-secondary);
}
.vergelijk-table th {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  white-space: nowrap;
}
.vergelijk-table th:first-child {
  border-radius: var(--radius-lg) 0 0 0;
}
.vergelijk-table th:last-child {
  border-radius: 0 var(--radius-lg) 0 0;
}
.vergelijk-table td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}
.vergelijk-table tr:last-child td {
  border-bottom: none;
}
.vergelijk-table tbody tr:hover {
  background: var(--color-bg-alt);
}
.vergelijk-table td:first-child {
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
}
.vergelijk-table td strong {
  color: #1a1a1a;
}
@media (max-width: 767px) {
  .vergelijk-table th,
  .vergelijk-table td {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.8125rem;
  }
}

/* ========== RESPONSIVE: text+image two-column → stacked on mobile ========== */
@media (max-width: 767px) {
  .content-section .reveal[style*="1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}
/* ==========================================================================
   CTA-SECTION.CSS — UNIVERSELE WEBSITE TEMPLATE
   Mid-page + einde CTA section
   ========================================================================== */

/* ---------- Basis CTA section ---------- */
.cta-section {
  padding: var(--space-2xl) 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: var(--space-sm);
}

.cta-section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- CTA knoppen ---------- */
.cta-section-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

@media (min-width: 480px) {
  .cta-section-buttons {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-md);
  }
}

.cta-section-buttons .btn {
  padding: 14px 28px;
  font-size: 1rem;
  min-width: 220px;
}

/* ---------- Trust elementen ---------- */
.cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md) var(--space-lg);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.cta-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cta-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ---------- Mid-page variant (subtiel) ---------- */
.cta-section--mid {
  background-color: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* ---------- Einde variant (prominent, rood) ---------- */
.cta-section--end {
  background-color: #da131a;
  color: #fff;
  padding: var(--space-3xl) 0;
}

.cta-section--end h2 {
  color: #fff;
}

.cta-section--end .cta-section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.cta-section--end .cta-trust {
  color: rgba(255, 255, 255, 0.75);
}

.cta-section--end .cta-trust-item svg {
  color: #fff;
}
/* ==========================================================================
   FOOTER.CSS — UNIVERSELE WEBSITE TEMPLATE
   ========================================================================== */

.site-footer {
  background-color: #1A1A1A;
  color: #ffffff;
  padding: var(--space-3xl) 0 var(--space-lg);
  border-top: 3px solid var(--color-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* ---------- Footer kolommen ---------- */
.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-md);
}

.footer-col p,
.footer-col a {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

/* ---------- Bedrijfsinfo ---------- */
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-sm);
}

.footer-brand-sub {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-md);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-contact-list svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* ---------- Link lijsten ---------- */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  padding: 2px 0;
}

/* ---------- Review badge in footer ---------- */
.footer-review-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.footer-review-badge:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.footer-review-stars {
  color: var(--color-stars);
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.footer-review-text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- Social links ---------- */
.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* ---------- Footer bottom ---------- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: var(--space-lg);
  text-align: center;
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.footer-legal span {
  margin: 0 var(--space-sm);
}
/* ==========================================================================
   STICKY-CTA.CSS — UNIVERSELE WEBSITE TEMPLATE
   Mobiele sticky balk — alleen zichtbaar op mobiel (max-width: 768px)
   Conform BRANDING.md v1.0
   ========================================================================== */

.sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    display: flex;
    z-index: 999;
    background: #FFFFFF;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  }

  .sticky-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 15px;
    gap: 8px;
  }

  .sticky-cta .btn-call {
    background: var(--color-secondary);
    color: #fff;
  }

  .sticky-cta .btn-call:active {
    background: var(--color-secondary-dark);
  }

  .sticky-cta .btn-wa {
    background: #128C7E;
    color: #fff;
  }

  .sticky-cta .btn-wa:active {
    background: #0e7a6e;
  }

  .sticky-cta svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
}
/* ==========================================================================
   WHATSAPP-FLOAT.CSS — Verhuislifthuren.nl
   Zwevende WhatsApp-knop rechtsonder op alle pagina's
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #128C7E;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 998;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

.whatsapp-float svg {
  width: 38px;
  height: 38px;
  fill: #fff;
}

/* Subtiele pulse animatie om aandacht te trekken */
.whatsapp-float::after {
  content: '';
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #128C7E;
  z-index: -1;
  animation: whatsapp-pulse 2s ease-out infinite;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
    will-change: transform, opacity;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Tooltip bij hover */
.whatsapp-float-tooltip {
  position: absolute;
  right: 84px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #333;
  font-family: var(--font-body, 'Open Sans', sans-serif);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

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

/* Tooltip pijltje */
.whatsapp-float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #fff;
}

/* Mobiel: verbergen — sticky CTA balk heeft al WhatsApp knop */
@media (max-width: 768px) {
  .whatsapp-float {
    display: none;
  }
}
/* ==========================================================================
   COOKIE-BANNER.CSS — UNIVERSELE WEBSITE TEMPLATE
   Cookie consent banner (Google Consent Mode v2 / AVG compliant)
   ========================================================================== */

/* ---------- Overlay ---------- */
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ---------- Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  border-top: 3px solid var(--color-primary);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
}

@media (min-width: 768px) {
  .cookie-banner__inner {
    padding: var(--space-xl) var(--space-lg);
  }
}

/* ---------- Header ---------- */
.cookie-banner__header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.cookie-banner__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: var(--color-secondary);
}

.cookie-banner__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
}

.cookie-banner__text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-lg) 0;
}

.cookie-banner__text a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.cookie-banner__text a:hover {
  color: var(--color-secondary-dark);
}

/* ---------- Buttons ---------- */
.cookie-banner__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 480px) {
  .cookie-banner__buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-md);
  }
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  border: none;
  text-align: center;
}

.cookie-btn:active {
  transform: scale(0.98);
}

.cookie-btn--accept {
  background-color: var(--color-primary);
  color: #1a1a1a;
  box-shadow: var(--shadow-btn-primary);
}

.cookie-btn--accept:hover {
  background-color: var(--color-primary-dark);
}

.cookie-btn--reject {
  background-color: #f0f0f0;
  color: #1a1a1a;
}

.cookie-btn--reject:hover {
  background-color: #e0e0e0;
}

.cookie-btn--settings {
  background: none;
  color: var(--color-secondary);
  padding: 12px 16px;
  font-weight: 600;
  text-decoration: underline;
}

.cookie-btn--settings:hover {
  color: var(--color-secondary-dark);
}

/* ---------- Settings panel ---------- */
.cookie-settings {
  display: none;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.cookie-settings.active {
  display: block;
}

.cookie-settings__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 var(--space-md) 0;
}

/* ---------- Category items ---------- */
.cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
}

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

.cookie-category__info {
  flex: 1;
}

.cookie-category__name {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px 0;
}

.cookie-category__desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-text-light);
  margin: 0;
}

.cookie-category__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-light);
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 4px;
}

/* ---------- Toggle switch ---------- */
.cookie-toggle {
  flex-shrink: 0;
  position: relative;
  width: 48px;
  height: 26px;
  margin-top: 2px;
}

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

.cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 26px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

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

.cookie-toggle input:checked + .cookie-toggle__slider {
  background: var(--color-primary);
}

.cookie-toggle input:checked + .cookie-toggle__slider::before {
  transform: translateX(22px);
}

.cookie-toggle input:disabled + .cookie-toggle__slider {
  background: var(--color-primary);
  opacity: 0.7;
  cursor: not-allowed;
}

.cookie-toggle input:disabled:checked + .cookie-toggle__slider::before {
  transform: translateX(22px);
}

.cookie-toggle input:focus-visible + .cookie-toggle__slider {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* ---------- Save button in settings ---------- */
.cookie-settings__save {
  margin-top: var(--space-lg);
  display: flex;
  gap: var(--space-md);
}

/* ---------- Mobile spacing (above sticky CTA) ---------- */
@media (max-width: 767px) {
  .cookie-banner {
    bottom: 56px;
  }
}

/* ==========================================================================
   SPEC CARDS — Kleine feature/stat kaartjes met icoon
   ========================================================================== */
.spec-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

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

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

.spec-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.spec-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.spec-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-sm);
}

.spec-card__icon svg {
  width: 36px;
  height: 36px;
  color: var(--color-secondary);
  stroke: var(--color-secondary);
}

.spec-card__value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.spec-card__label {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

/* 4-koloms variant */
.spec-cards--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
  .spec-cards--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Op donkere achtergrond */
.section-alt .spec-card {
  background: #fff;
}

/* Gekleurde rand accent */
.spec-card--accent {
  border-color: var(--color-primary);
  border-width: 2px;
}
