/* =============================================
   ADVIESKANTOOR A'DAM — DESIGN SYSTEM
   Professional Corporate / Modern
   ============================================= */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --deep-navy: #0F172A;
  --vibrant-teal: #0D9488;
  --teal-dark: #0a7a70;
  --teal-light: #14b8a6;
  --soft-sky: #F0F9FF;
  --sky-mid: #E0F2FE;

  /* Neutrals */
  --white: #ffffff;
  --surface: #fcf8fa;
  --surface-low: #f6f3f5;
  --surface-mid: #f0edef;
  --surface-high: #eae7e9;
  --navy-mid: #131b2e;
  --legal-gray: #475569;
  --on-surface: #1b1b1d;
  --on-surface-variant: #45464d;
  --outline: #76777d;
  --outline-variant: #c6c6cd;

  /* Semantic */
  --primary: var(--deep-navy);
  --secondary: var(--vibrant-teal);
  --bg: var(--surface);

  /* Typography */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --gutter: 24px;
  --section-pad: 96px;
  --section-pad-sm: 64px;

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(15,23,42,.08);
  --shadow-lg: 0 12px 40px rgba(15,23,42,.12);
  --shadow-xl: 0 24px 64px rgba(15,23,42,.16);
  --shadow-teal: 0 8px 24px rgba(13,148,136,.25);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--on-surface);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }

.display-lg { font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -0.02em; }
.headline-md { font-size: clamp(1.5rem, 3vw, 1.875rem); font-weight: 600; }
.headline-sm { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 600; }
.body-lg { font-size: 1.125rem; line-height: 1.75; }
.body-md { font-size: 1rem; line-height: 1.625; }
.label { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.05em; }

/* ---------- Material Icons ---------- */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-size: inherit;
  vertical-align: middle;
  line-height: 1;
}

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

.section {
  padding: var(--section-pad) 0;
}

/* Backgrounds */
.bg-white { background: var(--white); }
.bg-sky { background: var(--soft-sky); }
.bg-surface { background: var(--surface); }
.bg-navy { background: var(--deep-navy); }
.bg-navy-mid { background: var(--navy-mid); }

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .two-col.reverse { direction: ltr; }
}

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--on-surface-variant);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vibrant-teal);
  margin-bottom: 0.75rem;
}
.text-teal { color: var(--vibrant-teal); }

/* ---------- Navigation ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(252,248,250,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--outline-variant);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--deep-navy);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--on-surface-variant);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-link:hover, .nav-link.active {
  color: var(--vibrant-teal);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--vibrant-teal);
  border-radius: 2px;
}
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--deep-navy);
  padding: 8px;
  border-radius: var(--r-sm);
  font-size: 1.5rem;
  transition: background 0.2s;
  flex-shrink: 0;
}
.hamburger:hover { background: var(--surface-mid); }

/* ── MOBIELE NAVIGATIE ──────────────────────────────────────── */
@media (max-width: 900px) {

  /* Nav-inner: brand links, rechts lang+hamburger */
  .nav-inner {
    gap: 0;
    padding: 0 var(--gutter);
  }

  /* Desktop nav-links verdwijnen, worden fullscreen overlay */
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 32px;
    z-index: 998;
    overflow-y: auto;
    box-shadow: 0 8px 40px rgba(15,23,42,0.18);
    border-top: 2px solid var(--vibrant-teal);
    margin-left: 0;
  }
  .nav-links.open { display: flex; }

  /* Individuele nav-links op mobiel */
  .nav-link {
    font-size: 1.0625rem;
    font-weight: 600;
    padding: 15px 4px;
    border-bottom: 1px solid var(--outline-variant);
    width: 100%;
    color: var(--deep-navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-link:last-child { border-bottom: none; }
  .nav-link::after { display: none; }
  .nav-link.active {
    color: var(--vibrant-teal);
    font-weight: 700;
  }
  .nav-link.active::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 100%;
    background: var(--vibrant-teal);
    position: absolute;
    left: 0;
    border-radius: 0 4px 4px 0;
  }

  /* Verberg desktop CTA knop op mobiel */
  .nav-cta { display: none !important; }

  /* Hamburger rechts van lang-switcher */
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: 8px;
    flex-shrink: 0;
  }

  /* Mobiel menu footer: contact knop */
  .nav-links::after {
    content: '';
    display: block;
    flex: 1;
  }

  /* Mobiele CTA knop onderaan menu */
  .mobile-menu-cta {
    display: flex !important;
    margin-top: 24px;
    width: 100%;
    justify-content: center;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--vibrant-teal);
  color: var(--white);
  border-color: var(--vibrant-teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}
.btn-secondary {
  background: transparent;
  color: var(--deep-navy);
  border-color: var(--deep-navy);
}
.btn-secondary:hover {
  background: var(--deep-navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: var(--r-lg); }
.btn-sm { padding: 8px 18px; font-size: 0.8125rem; }

/* ---------- Chip ---------- */
.chip {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(13,148,136,0.12);
  border: 1px solid rgba(13,148,136,0.25);
  border-radius: var(--r-full);
  color: var(--vibrant-teal);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #0F172A 0%, #1e3a5f 40%, #0D9488 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  opacity: 0.3;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(13,148,136,.3) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(30,58,95,.6) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-text { max-width: 680px; color: var(--white); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.hero-services { margin-bottom: 40px; display: flex; flex-direction: column; gap: 12px; }
.hero-service-item { display: flex; align-items: center; gap: 20px; }
.hero-num {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.25s;
}
.hero-service-item:hover .hero-num { background: var(--vibrant-teal); }
.hero-service-label { font-family: var(--font-display); font-size: clamp(1.125rem, 2.5vw, 1.5rem); font-weight: 600; opacity: 0.92; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.5);
  font-size: 2rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--outline-variant);
  padding: 32px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}
.stat-item { display: flex; align-items: center; gap: 16px; }
.stat-icon {
  width: 48px; height: 48px;
  background: var(--soft-sky);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--vibrant-teal);
  font-size: 1.5rem;
}
.stat-number { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; color: var(--deep-navy); line-height: 1; }
.stat-label { font-size: 0.8125rem; color: var(--on-surface-variant); margin-top: 4px; }
.stat-divider { width: 1px; height: 56px; background: var(--outline-variant); }
@media (max-width: 700px) { .stat-divider { display: none; } .stats-grid { gap: 32px; } }

/* ---------- Text helpers ---------- */
.body-text { color: var(--on-surface-variant); font-size: 1.0625rem; line-height: 1.75; margin-bottom: 1.25rem; }

/* ---------- Image column ---------- */
.img-col { position: relative; }
.img-wrapper { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.rounded-img { width: 100%; height: 480px; object-fit: cover; transition: transform 0.4s ease; }
.rounded-img:hover { transform: scale(1.02); }
.floating-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--outline-variant);
  min-width: 180px;
}
.badge-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--vibrant-teal); display: block; line-height: 1; }
.badge-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--on-surface-variant); margin-top: 4px; }

/* ---------- Check Grid ---------- */
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.check-item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.9375rem; }
.check-icon { color: var(--vibrant-teal); font-size: 1.25rem !important; flex-shrink: 0; }

/* ---------- Services Bento Grid ---------- */
.services-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px;
  border: 1px solid var(--outline-variant);
  transition: all 0.3s ease;
  grid-column: span 4;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--vibrant-teal);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-wide {
  grid-column: span 8;
}
.service-wide .service-card-inner {
  display: flex;
  gap: 32px;
}
.service-wide .service-info { flex: 1; }
.service-wide .service-img {
  width: 240px;
  flex-shrink: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.service-wide .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3);
  transition: filter 0.4s ease;
}
.service-card:hover .service-img img { filter: grayscale(0); }
.service-dark {
  background: var(--navy-mid);
  border-color: transparent;
  grid-column: span 12;
}
.service-dark:hover { box-shadow: none; }
.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--soft-sky);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vibrant-teal);
  font-size: 1.75rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.teal-icon { background: rgba(13,148,136,0.15); color: var(--vibrant-teal); }
.service-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--deep-navy); margin-bottom: 12px; }
.service-desc { color: var(--on-surface-variant); font-size: 0.9375rem; line-height: 1.7; flex: 1; margin-bottom: 20px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--vibrant-teal);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

@media (max-width: 1024px) {
  .service-wide, .service-card, .service-dark { grid-column: span 12; }
  .service-wide .service-card-inner { flex-direction: column; }
  .service-wide .service-img { width: 100%; height: 240px; }
}
@media (max-width: 600px) {
  .services-bento { grid-template-columns: 1fr; }
  .service-card { grid-column: span 1 !important; }
}

/* ---------- Portrait ---------- */
.portrait-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.portrait-bg-decoration {
  position: absolute;
  inset: -16px;
  background: var(--vibrant-teal);
  border-radius: var(--r-xl);
  opacity: 0.08;
  transform: rotate(3deg);
  transition: opacity 0.3s;
}
.portrait-wrapper:hover .portrait-bg-decoration { opacity: 0.15; }
.portrait-img { position: relative; width: 100%; height: 480px; object-fit: cover; object-position: top; border-radius: var(--r-xl); box-shadow: var(--shadow-xl); }

/* ---------- Quote ---------- */
.quote {
  border-left: 4px solid var(--vibrant-teal);
  padding: 16px 24px;
  margin: 24px 0;
  font-style: italic;
  color: var(--deep-navy);
  font-size: 1.0625rem;
  line-height: 1.7;
  background: var(--soft-sky);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

/* ---------- Trust Grid ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  transition: background 0.3s;
}
.trust-card:hover { background: rgba(255,255,255,0.08); }
.trust-icon {
  width: 56px; height: 56px;
  background: rgba(13,148,136,0.15);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--vibrant-teal);
  font-size: 1.75rem;
  margin: 0 auto 16px;
}
.trust-card h3 { color: var(--white); font-size: 1.0625rem; font-family: var(--font-display); margin-bottom: 10px; }
.trust-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.65; }
@media (max-width: 900px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .trust-grid { grid-template-columns: 1fr; } }

/* ---------- CTA Box ---------- */
.cta-box {
  background: var(--deep-navy);
  border-radius: var(--r-xl);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(13,148,136,.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.cta-sub { color: rgba(255,255,255,0.7); font-size: 1.0625rem; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
.contact-cards { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 32px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  color: var(--white);
  transition: all 0.25s;
  min-width: 280px;
}
.contact-card:hover { background: rgba(255,255,255,0.1); border-color: var(--vibrant-teal); transform: translateY(-2px); }
.contact-card .material-symbols-outlined { font-size: 2rem; color: var(--vibrant-teal); }
.contact-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 2px; }
.contact-value { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; }
.social-links { display: flex; gap: 12px; justify-content: center; }
.social-link {
  width: 44px; height: 44px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.25s;
}
.social-link:hover { background: var(--vibrant-teal); border-color: var(--vibrant-teal); color: var(--white); }

/* ---------- Page Hereos (sub-pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy-mid) 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(13,148,136,0.15) 0%, transparent 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .chip { margin-bottom: 16px; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.125rem; max-width: 620px; line-height: 1.7; margin-bottom: 32px; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.page-hero-img {
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

/* ---------- Card Grids ---------- */
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

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

/* ---------- Feature Card ---------- */
.feature-card {
  background: var(--white);
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all 0.3s ease;
}
.feature-card:hover {
  border-color: var(--vibrant-teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feature-card .icon-wrap {
  width: 52px; height: 52px;
  background: var(--soft-sky);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--vibrant-teal);
  font-size: 1.625rem;
  margin-bottom: 20px;
  transition: background 0.25s;
}
.feature-card:hover .icon-wrap { background: var(--vibrant-teal); color: var(--white); }
.feature-card h3 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--deep-navy); margin-bottom: 10px; }
.feature-card p { font-size: 0.9375rem; color: var(--on-surface-variant); line-height: 1.65; }

/* ---------- Pricing Cards ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  background: var(--white);
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-xl);
  padding: 36px;
  transition: box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border: 2px solid var(--vibrant-teal);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Meest Gekozen';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--vibrant-teal);
  color: white;
  padding: 4px 18px;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.plan-tag { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--vibrant-teal); margin-bottom: 8px; }
.plan-name { font-family: var(--font-display); font-size: 1.375rem; font-weight: 700; color: var(--deep-navy); margin-bottom: 12px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 24px; }
.plan-price .amount { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--deep-navy); }
.plan-price .period { color: var(--on-surface-variant); font-size: 0.9375rem; }
.plan-features { list-style: none; margin-bottom: 32px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; color: var(--on-surface-variant); font-size: 0.9375rem; }
.plan-features li .material-symbols-outlined { color: var(--vibrant-teal); font-size: 1.125rem; flex-shrink: 0; margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
@media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-item { border-bottom: 1px solid var(--outline-variant); padding: 20px 0; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--deep-navy);
  gap: 16px;
  padding: 0;
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--vibrant-teal); }
.faq-question .material-symbols-outlined { transition: transform 0.3s; flex-shrink: 0; color: var(--vibrant-teal); }
.faq-item.open .faq-question .material-symbols-outlined { transform: rotate(180deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-answer p { color: var(--on-surface-variant); font-size: 0.9375rem; line-height: 1.7; padding-top: 12px; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ---------- List with checks ---------- */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.check-list li { display: flex; align-items: flex-start; gap: 14px; }
.check-list .check-dot {
  width: 24px; height: 24px;
  background: var(--vibrant-teal);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-list .check-dot .material-symbols-outlined { font-size: 0.875rem; color: white; }
.check-list h4 { font-family: var(--font-display); font-size: 0.9375rem; font-weight: 700; color: var(--deep-navy); margin-bottom: 4px; }
.check-list p { font-size: 0.875rem; color: var(--on-surface-variant); line-height: 1.6; }

/* ---------- Aanbod cards ---------- */
.aanbod-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--outline-variant);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.aanbod-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.aanbod-img { height: 220px; overflow: hidden; }
.aanbod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.aanbod-card:hover .aanbod-img img { transform: scale(1.04); }
.aanbod-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.aanbod-tag { display: inline-block; padding: 4px 12px; background: var(--soft-sky); color: var(--vibrant-teal); border-radius: var(--r-full); font-size: 0.75rem; font-weight: 700; margin-bottom: 12px; }
.aanbod-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--deep-navy); margin-bottom: 8px; }
.aanbod-desc { font-size: 0.9rem; color: var(--on-surface-variant); line-height: 1.6; flex: 1; margin-bottom: 20px; }
.aanbod-price { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: var(--deep-navy); }
.aanbod-footer { display: flex; align-items: center; justify-content: space-between; }

/* ---------- Contact Page ---------- */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--deep-navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--outline-variant);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--on-surface);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--vibrant-teal);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* ---------- Info Boxes ---------- */
.info-box {
  background: var(--soft-sky);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  border-left: 4px solid var(--vibrant-teal);
}
.info-box h3 { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700; color: var(--deep-navy); margin-bottom: 8px; }
.info-box p, .info-box a { font-size: 0.9375rem; color: var(--on-surface-variant); line-height: 1.65; }
.info-box a { color: var(--vibrant-teal); font-weight: 600; display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.info-box a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-mid);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-desc { color: rgba(255,255,255,0.55); font-size: 0.9375rem; line-height: 1.65; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-heading {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.9375rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--vibrant-teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.875rem; text-align: center; }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-fab:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
}
.fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--deep-navy);
  padding: 8px 14px;
  border-radius: var(--r-md);
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-fab:hover .fab-tooltip { opacity: 1; }

/* ---------- Divider ---------- */
.divider { height: 1px; background: var(--outline-variant); margin: 0; }

/* ---------- Dark Section headings ---------- */
.section.bg-navy .section-title { color: var(--white); }
.section.bg-navy .section-subtitle { color: rgba(255,255,255,0.6); }

/* ---------- Scroll Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Mobile Nav Overlay ---------- */
@media (max-width: 900px) {
  .hero { min-height: 100svh; }
  .section { padding: var(--section-pad-sm) 0; }
  .cta-box { padding: 40px 24px; }
  .floating-badge { left: 0; }
  .portrait-img, .rounded-img { height: 360px; }
}

/* ---------- Responsive Utilities ---------- */
@media (max-width: 600px) {
  :root { --gutter: 16px; }
  .hero-title { font-size: 1.75rem; }
  .check-grid { grid-template-columns: 1fr; }
}

/* ---------- Trust bar on sub-pages ---------- */
.trust-bar {
  border-bottom: 1px solid var(--outline-variant);
  padding: 20px 0;
  background: var(--white);
}
.trust-bar-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 32px; }
.trust-bar-item { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; font-weight: 600; color: var(--deep-navy); }
.trust-bar-item .material-symbols-outlined { color: var(--vibrant-teal); font-size: 1.375rem; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { padding: 16px 0; }
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; color: var(--on-surface-variant); font-size: 0.875rem; }
.breadcrumb-inner a { color: var(--vibrant-teal); }
.breadcrumb-inner .material-symbols-outlined { font-size: 1rem; }

/* ---------- Aanbod filter tabs ---------- */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  padding: 8px 20px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--outline-variant);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--on-surface-variant);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab:hover, .filter-tab.active {
  border-color: var(--vibrant-teal);
  background: var(--vibrant-teal);
  color: white;
}

/* ---------- Blockquote fancy ---------- */
.fancy-quote {
  position: relative;
  padding: 32px 36px;
}
.fancy-quote::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 16px;
  font-size: 8rem;
  color: rgba(13,148,136,0.08);
  font-family: var(--font-display);
  line-height: 1;
  pointer-events: none;
}
.fancy-quote p { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-family: var(--font-display); color: var(--deep-navy); font-style: italic; line-height: 1.4; margin-bottom: 24px; }
.fancy-quote cite { display: flex; align-items: center; gap: 12px; color: var(--on-surface-variant); font-style: normal; font-size: 0.9375rem; }
.fancy-quote cite::before { content: ''; display: block; width: 32px; height: 2px; background: var(--vibrant-teal); }

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--vibrant-teal);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* =============================================
   LANGUAGE SWITCHER
   ============================================= */
.lang-switcher {
  position: relative;
  flex-shrink: 0;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(13,148,136,0.08);
  border: 1.5px solid rgba(13,148,136,0.2);
  border-radius: var(--r-md);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--deep-navy);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lang-btn:hover {
  background: rgba(13,148,136,0.15);
  border-color: var(--vibrant-teal);
}

.lang-chevron {
  font-size: 1.1rem !important;
  color: var(--vibrant-teal);
  transition: transform 0.25s ease;
}

.lang-btn[aria-expanded="true"] .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  background: var(--white);
  border: 1px solid var(--outline-variant);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: 6px;
  display: none;
  z-index: 2000;
  animation: dropdownSlide 0.2s ease;
}

.lang-dropdown.open {
  display: block;
}

@keyframes dropdownSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: none;
  background: transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--on-surface-variant);
  transition: all 0.15s ease;
  text-align: left;
}

.lang-option:hover {
  background: var(--soft-sky);
  color: var(--deep-navy);
}

.lang-option.active {
  background: rgba(13,148,136,0.08);
  color: var(--vibrant-teal);
  font-weight: 600;
}

.lang-flag {
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
}

.lang-name {
  flex: 1;
  font-weight: 500;
}

.lang-check {
  font-size: 1rem !important;
  color: var(--vibrant-teal);
  margin-left: auto;
}

/* Mobile: lang switcher zit rechts van logo, links van hamburger */
@media (max-width: 900px) {
  .lang-switcher {
    margin-left: auto;   /* duwt lang+hamburger naar rechts */
    margin-right: 0;
    flex-shrink: 0;
  }
  .lang-btn {
    padding: 6px 10px;
    font-size: 0.8rem;
    gap: 4px;
  }
  .lang-btn .lang-chevron {
    font-size: 0.95rem !important;
  }
  .lang-dropdown {
    right: 0;
    left: auto;
    min-width: 160px;
    /* zorg dat dropdown BOVEN het hamburger-menu uitkomt */
    z-index: 1001;
  }
}


/* =============================================
   RTL SUPPORT (Arabic)
   ============================================= */
html[dir="rtl"] body {
  font-family: 'Noto Sans Arabic', 'Inter', sans-serif;
}

html[dir="rtl"] .nav-links {
  margin-left: 0;
  margin-right: auto;
}

html[dir="rtl"] .two-col {
  direction: rtl;
}

html[dir="rtl"] .two-col.reverse {
  direction: ltr;
}

html[dir="rtl"] .two-col > * {
  direction: rtl;
}

html[dir="rtl"] .check-item,
html[dir="rtl"] .hero-service-item,
html[dir="rtl"] .trust-bar-item,
html[dir="rtl"] .stat-item {
  flex-direction: row-reverse;
}

html[dir="rtl"] .nav-cta {
  margin-left: 0;
  margin-right: 8px;
}

html[dir="rtl"] .quote {
  border-left: none;
  border-right: 4px solid var(--vibrant-teal);
  border-radius: var(--r-md) 0 0 var(--r-md);
}

html[dir="rtl"] .info-box {
  border-left: none;
  border-right: 4px solid var(--vibrant-teal);
}

html[dir="rtl"] .lang-dropdown {
  right: auto;
  left: 0;
}

html[dir="rtl"] .whatsapp-fab {
  right: auto;
  left: 28px;
}

html[dir="rtl"] .fab-tooltip {
  right: auto;
  left: calc(100% + 12px);
}

html[dir="rtl"] .footer-social {
  flex-direction: row-reverse;
}

html[dir="rtl"] .page-hero::before {
  right: auto;
  left: 0;
  background: linear-gradient(to right, rgba(13,148,136,0.15) 0%, transparent 100%);
}

html[dir="rtl"] .page-hero-img {
  right: auto;
  left: 0;
}

html[dir="rtl"] .floating-badge {
  left: auto;
  right: -24px;
}

html[dir="rtl"] .nav-link.active::after {
  left: 0;
  right: 0;
}

/* Arabic font import */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@400;600;700;800&display=swap');

