/* ============================================================
   Uytterhaegen Jan BV — Shared Stylesheet
   Brand: #00aeef (cerulean) · #002143 (navy) · #fbcd03 (gold)
   Font: Montserrat (headings) + Inter (body)
   ============================================================ */

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

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

body {
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #2d2d2d;
  background: #fff;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---- CSS Variables ---- */
:root {
  --blue:       #00aeef;
  --blue-dark:  #0090c9;
  --blue-deep:  #002143;
  --blue-light: #e4f6fd;
  --gold:       #fbcd03;
  --gold-dark:  #d4a900;
  --white:      #ffffff;
  --gray-50:    #f8fafb;
  --gray-100:   #eef2f5;
  --gray-300:   #c5cdd6;
  --gray-500:   #6b7280;
  --text:       #1a2332;
  --text-muted: #5a6472;

  --max-w:      1160px;
  --px:         1.5rem;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;

  --shadow-sm:  0 1px 4px rgba(0,33,67,0.08);
  --shadow-md:  0 4px 16px rgba(0,33,67,0.10);
  --shadow-lg:  0 8px 32px rgba(0,33,67,0.12);
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

p { color: var(--text-muted); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.section-title {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 0.75rem;
}
.section-title::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.section-title.center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* ---- Layout ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

/* ---- Navigation ---- */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.3s, box-shadow 0.3s;
}
#site-nav.scrolled {
  border-bottom-color: var(--gray-100);
  box-shadow: 0 2px 12px rgba(0,33,67,0.07);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--blue);
  background: var(--blue-light);
}

/* Dropdown */
.nav-item-dropdown {
  position: relative;
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  padding: 0.5rem;
  z-index: 200;
}
.nav-item-dropdown.is-open .nav-dropdown {
  display: block;
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover {
  background: var(--blue-light);
  color: var(--blue);
}
.nav-dropdown a .dd-icon {
  width: 28px;
  height: 28px;
  background: var(--blue-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.nav-dropdown a:hover .dd-icon {
  background: var(--blue);
  color: #fff;
}
.dd-icon svg { width: 14px; height: 14px; }

.nav-chevron {
  display: inline-block;
  margin-left: 3px;
  vertical-align: middle;
  transition: transform 0.2s;
}
.nav-item-dropdown.is-open .nav-chevron {
  transform: rotate(180deg);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue);
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.825rem;
  font-weight: 700;
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  margin-left: 0.75rem;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}
.nav-cta:focus-visible {
  outline: 3px solid rgba(0,174,239,0.4);
  outline-offset: 2px;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.nav-hamburger:hover { background: var(--gray-100); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Mobile menu overlay */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 99;
  overflow-y: auto;
  padding: 1.5rem var(--px);
  flex-direction: column;
  gap: 0.25rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  transition: color 0.2s;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--blue); }
.nav-mobile .mobile-sub-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  padding: 1rem 1rem 0.25rem;
}
.nav-mobile .mobile-cta {
  background: var(--blue);
  color: #fff !important;
  text-align: center;
  border-radius: 100px;
  margin-top: 1rem;
  border-bottom: none;
}

/* ---- Page Hero (sub-pages) — gradient, no image ---- */
.page-hero {
  margin-top: 72px;
  position: relative;
  padding: 3.5rem 0 3rem;
  background: linear-gradient(135deg, #001a36 0%, #003063 60%, #00406e 100%);
  overflow: hidden;
}
/* Decorative radial glows */
.page-hero::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0,174,239,0.18) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 38%;
  bottom: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(251,205,3,0.10) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
/* Gold accent bar left edge */
.page-hero-accent {
  display: block;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), rgba(251,205,3,0));
  position: absolute;
  left: 0;
  top: 0;
}
.page-hero-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  z-index: 1;
}
.page-hero-content h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
}
.page-hero-content p {
  color: rgba(255,255,255,0.68);
  margin-top: 0.5rem;
  font-size: 1.05rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.85rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { opacity: 0.35; }

/* ---- Home Hero ---- */
.home-hero {
  margin-top: 72px;
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background: var(--blue-deep);
  overflow: hidden;
}
.home-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,33,67,0.85) 0%,
    rgba(0,33,67,0.5) 60%,
    rgba(0,143,201,0.3) 100%
  );
}
.home-hero-content {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem var(--px);
  width: 100%;
}
.home-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,174,239,0.15);
  border: 1px solid rgba(0,174,239,0.3);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.home-hero-badge span {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
}
.home-hero-content h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin-bottom: 1.25rem;
}
.home-hero-content h1 em {
  color: var(--blue);
  font-style: normal;
}
.home-hero-content p {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
}
.hero-trust-item svg {
  color: var(--blue);
  flex-shrink: 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid rgba(0,174,239,0.5); outline-offset: 3px; }

.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(0,174,239,0.3);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: 0 6px 20px rgba(0,174,239,0.4);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

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

.btn-sm {
  font-size: 0.8rem;
  padding: 0.6rem 1.25rem;
}

/* ---- Cards ---- */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-img { transform: scale(1.04); }
.card-body { padding: 1.5rem; }
.card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.card-title::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 0.6rem;
  transition: width 0.25s;
}
.card:hover .card-title::before { width: 48px; }

.card-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap 0.2s, color 0.2s;
}
.card-link:hover {
  color: var(--blue-dark);
  gap: 0.6rem;
}
.card-link svg { width: 14px; height: 14px; }

/* ---- Services Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ---- USP / Features ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.feature-item {
  padding: 1.75rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 1rem;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.feature-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--blue-deep);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(0,174,239,0.12), transparent);
}
.cta-banner h2 {
  color: #fff;
  margin-bottom: 0.75rem;
  position: relative;
}
.cta-banner p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  position: relative;
}
.cta-banner .btn-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--blue);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-num sup {
  font-size: 1.2rem;
  color: var(--gold);
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
}

/* ---- Contact Form ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.form-group { margin-bottom: 1.25rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
  font-family: 'Montserrat', sans-serif;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  font: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-500); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,174,239,0.15);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-select-wrapper { position: relative; }
.form-select-wrapper::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--gray-500);
  pointer-events: none;
}

/* Contact info sidebar */
.contact-info {
  background: var(--blue-deep);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: rgba(255,255,255,0.85);
}
.contact-info h3 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-info-item:last-child { border-bottom: none; }
.ci-icon {
  width: 40px;
  height: 40px;
  background: rgba(0,174,239,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.ci-icon svg { width: 18px; height: 18px; }
.ci-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.2rem;
}
.ci-value {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 500;
}
.ci-value a { color: inherit; transition: color 0.2s; }
.ci-value a:hover { color: var(--blue); }

/* Opening hours */
.hours-list { font-size: 0.82rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hours-row:last-child { border-bottom: none; }
.hours-day {
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  flex-shrink: 0;
  min-width: 50px;
}
.hours-time {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  text-align: right;
  font-size: 0.78rem;
  line-height: 1.5;
}

/* Contact page hours table */
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.hours-table tr td { padding: 0.45rem 0; vertical-align: top; }
.hours-table tr td:first-child {
  font-weight: 600;
  padding-right: 1rem;
  white-space: nowrap;
  width: 80px;
}
.hours-table tr + tr td { border-top: 1px solid rgba(255,255,255,0.07); }

/* Hours table on dark background (contact info sidebar) */
.contact-info .hours-table td { color: rgba(255,255,255,0.88) !important; }
.contact-info .hours-table td:first-child { color: rgba(255,255,255,0.5) !important; }
.contact-info .hours-table tr + tr td { border-top-color: rgba(255,255,255,0.08); }

/* ---- Service page detail ---- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prose h2 {
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--gray-100);
}
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 1.1rem; }
.prose ul { list-style: none; padding: 0; margin-bottom: 1.25rem; }
.prose ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.prose ul li::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  margin-top: 0.45rem;
  flex-shrink: 0;
}
.prose strong { color: var(--text); font-weight: 600; }

/* Sticky sidebar card */
.sidebar-card {
  background: var(--blue-light);
  border: 1.5px solid rgba(0,174,239,0.2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky;
  top: 90px;
}
.sidebar-card h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1rem;
}
.sidebar-card p {
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}
.sidebar-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  transition: background 0.2s;
}
.sidebar-phone:hover { background: var(--blue-dark); }
.sidebar-phone svg { flex-shrink: 0; }
.sidebar-contact-link {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  padding: 0.6rem;
  border-radius: var(--radius-md);
  transition: background 0.2s;
}
.sidebar-contact-link:hover { background: rgba(0,174,239,0.1); }

/* Related services */
.related-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.related-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--gray-100);
  background: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.related-item:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
}
.related-item svg { color: var(--blue); flex-shrink: 0; width: 16px; height: 16px; }

/* ---- Footer ---- */
#site-footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}
/* Footer logo: SVG has true transparency — display directly on dark navy */
.footer-logo-wrap {
  display: inline-block;
  margin-bottom: 1.25rem;
}
.footer-logo { height: 64px; width: auto; display: block; }
.footer-tagline { font-size: 0.875rem; line-height: 1.6; }
.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  padding: 0.15rem 0;
}
.footer-links a:hover { color: var(--blue); }
.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.footer-contact-line svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; width: 15px; height: 15px; }
.footer-contact-line a { color: rgba(255,255,255,0.65); }
.footer-contact-line a:hover { color: var(--blue); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--blue); }

/* ---- Utilities ---- */
.text-center { text-align: center; }
.text-center .section-title::after { left: 50%; transform: translateX(-50%); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

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

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { order: -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --px: 1.25rem; }
  .section { padding: 3.5rem 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .home-hero { min-height: 80vh; }
  .service-detail { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .related-services { grid-template-columns: 1fr 1fr; }
  .page-hero { height: 260px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .related-services { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}

/* ---- Voorwaarden page ---- */
.voorwaarden-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.voorwaarden-list {
  counter-reset: article;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.voorwaarden-list > li {
  position: relative;
  padding: 1.75rem 1.75rem 1.75rem 5rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  counter-increment: article;
}
.voorwaarden-list > li::before {
  content: counter(article);
  position: absolute;
  left: 1.5rem;
  top: 1.75rem;
  width: 2rem;
  height: 2rem;
  background: var(--blue);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.voorwaarden-list h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.voorwaarden-list p { font-size: 0.925rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.voorwaarden-list p:last-child { margin-bottom: 0; }
.voorwaarden-list ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.voorwaarden-list ul li { font-size: 0.925rem; color: var(--text-muted); }
.voorwaarden-contact {
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--blue-deep) 0%, #003063 100%);
  border-radius: var(--radius-lg);
  text-align: center;
  color: rgba(255,255,255,0.85);
}
.voorwaarden-contact p { margin-bottom: 1.25rem; font-size: 1rem; }

/* ---- Fade-up animation ---- */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.in { opacity: 1; transform: translateY(0); }
