/*
Theme Name: FertilityCare
Theme URI: https://fertilitycare.nl
Author: Buro Keizer Karel
Author URI: https://burokeizerkareldev.nl
Description: Custom theme voor FertilityCare - Vruchtbaarheidskliniek voor natuurlijke behandeling
Version: 1.5.0
Requires at least: 6.0
Requires PHP: 8.0
License: Private
Text Domain: fertilitycare
*/

/* === RESET & BASE === */
:root {
  --fc-primary: #1a3e6f;
  --fc-primary-mid: #2d6bb5;
  --fc-primary-light: #e4eef8;
  --fc-primary-mist: #f0f5fb;
  --fc-sand: #edf2f8;
  --fc-blush: #8db4e0;
  --fc-blush-light: #f0f5fb;
  --fc-charcoal: #1e2a3a;
  --fc-slate: #546880;
  --fc-white: #ffffff;
  --fc-cream: #f8fafd;
  --fc-gold: #5a8fc4;
  --fc-mint: #98d7c2;
  --fc-mint-light: #e8f6f1;
  --fc-mint-dark: #6bc4a8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
ul, ol { list-style: none; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--fc-charcoal);
  background: var(--fc-cream);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

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

/* === TOPBAR === */
.topbar {
  background: var(--fc-primary);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
  letter-spacing: 0.02em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  transition: transform 0.25s ease;
}
.topbar .container {
  position: relative;
}
.topbar a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.topbar a:hover { color: #fff; }
.topbar-links { flex: 1; display: flex; justify-content: center; gap: 20px; }
.topbar-links li { list-style: none; }
.topbar-inner {
  display: flex;
  align-items: center;
  position: relative;
}
.topbar-lang { position: absolute; right: 0; display: flex; gap: 12px; align-items: center; }
.topbar-lang span { opacity: 0.5; }
.topbar-lang a.active { color: #fff; font-weight: 600; }

/* === HEADER === */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: fixed;
  top: 33px;
  left: 0;
  right: 0;
  z-index: 100;
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--fc-primary);
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.logo-text small {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--fc-slate);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: -2px;
}

.main-nav { flex: 1; display: flex; align-items: center; justify-content: center; gap: 32px; list-style: none; }
.main-nav li { list-style: none; display: inline; }
.main-nav a {
  text-decoration: none;
  color: var(--fc-charcoal);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--fc-primary-mid);
  transition: width 0.3s ease;
}
.main-nav a:hover { color: var(--fc-primary); }
.main-nav a:hover::after { width: 100%; }
.nav-cta {
  flex-shrink: 0;
  background: var(--fc-mint-dark);
  color: var(--fc-white) !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--fc-mint) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107,196,168,0.35);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--fc-primary);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,62,111,0.92) 0%, rgba(45,107,181,0.75) 50%, rgba(141,180,224,0.4) 100%);
  z-index: 1;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 50%, var(--fc-white) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--fc-white) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px;
  z-index: 2;
}
.hero .container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-content { color: var(--fc-white); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeInUp 0.8s ease both;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--fc-mint);
  border-radius: 50%;
  animation: dotPulse 2.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: .45; box-shadow: 0 0 0 0 rgba(152,215,194,0); }
  50%      { opacity: 1;   box-shadow: 0 0 8px 3px rgba(152,215,194,.55); }
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--fc-mint);
}
.hero-desc {
  font-size: 1.15rem;
  line-height: 1.75;
  opacity: 0.9;
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 300;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--fc-mint-dark);
  color: var(--fc-white);
}
.btn-primary:hover {
  background: var(--fc-mint);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,196,168,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--fc-white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-dark {
  background: transparent;
  color: var(--fc-primary);
  border: 1.5px solid var(--fc-primary);
}
.btn-outline-dark:hover {
  background: var(--fc-primary);
  color: var(--fc-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,62,111,0.2);
}
.btn-cta {
  background: var(--fc-primary);
  color: var(--fc-white);
  padding: 16px 40px;
  font-size: 1rem;
}
.btn-cta:hover {
  background: var(--fc-primary-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,62,111,0.3);
}

/* Hero visual */
.hero-visual {
  position: relative;
  animation: fadeIn 1s ease 0.4s both;
}
.hero-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, var(--fc-primary-light), var(--fc-mint-light));
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,62,111,0.3) 0%, transparent 50%);
}
.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--fc-white);
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: floatCard 3s ease-in-out infinite alternate;
}
.float-icon {
  width: 44px;
  height: 44px;
  background: var(--fc-primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--fc-primary);
}
.float-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--fc-charcoal);
}
.float-text span {
  font-size: 0.78rem;
  color: var(--fc-slate);
}

/* Hero Slider */
.hero-slider {
  position: relative;
}
.hero-slider-track {
  position: relative;
  aspect-ratio: 10/11;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.hero-slide .hero-img-wrapper {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
.hero-slide .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slide .hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,62,111,0.3) 0%, transparent 50%);
}
.hero-slide .hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--fc-white);
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  animation: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}
.hero-slide.active .hero-float-card {
  opacity: 1;
  transform: translateY(0);
}
.hero-slider-dots {
  display: flex;
  gap: 10px;
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 3;
}
.hero-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.hero-slider-dot:hover {
  border-color: rgba(255,255,255,0.7);
}
.hero-slider-dot.active {
  background: var(--fc-white);
  border-color: var(--fc-white);
  transform: scale(1.15);
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--fc-white);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 28px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 60px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--fc-slate);
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-icon {
  width: 36px;
  height: 36px;
  background: var(--fc-mint-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fc-mint-dark);
}

/* === SECTION SHARED === */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fc-primary-mid);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--fc-charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--fc-slate);
  line-height: 1.7;
  font-weight: 300;
}

/* === SERVICES === */
.services {
  padding: 100px 0;
  background: var(--fc-cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--fc-white);
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fc-primary-mid), var(--fc-mint));
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--fc-mint-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--fc-mint-dark);
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: var(--fc-mint-dark);
  color: var(--fc-white);
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--fc-slate);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.service-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fc-primary-mid);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.service-link:hover { gap: 10px; }

/* === ABOUT === */
.about {
  padding: 100px 0;
  background: var(--fc-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  width: 100%;
  height: 460px;
  border-radius: 20px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--fc-primary-light), var(--fc-sand));
  display: block;
}
.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: 16px;
  border: 6px solid var(--fc-white);
  background: var(--fc-mint-light);
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.about-accent-shape {
  position: absolute;
  top: -20px; left: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fc-mint-light), var(--fc-mint));
  opacity: 0.4;
  z-index: -1;
}
.about-content .section-label,
.about-content .section-title { text-align: left; }
.about-content .section-title { font-size: 2.4rem; }
.about-text {
  font-size: 1rem;
  color: var(--fc-slate);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--fc-mint-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--fc-slate);
  font-weight: 500;
}

/* === APPROACH === */
.approach {
  padding: 100px 0;
  background: var(--fc-primary);
  color: var(--fc-white);
  position: relative;
  overflow: hidden;
}
.approach::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 90%, rgba(141,180,224,0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,0.05) 0%, transparent 40%);
}
.approach .container { position: relative; z-index: 1; }
.approach .section-label { color: var(--fc-mint); }
.approach .section-title { color: var(--fc-white); }
.approach .section-subtitle { color: rgba(255,255,255,0.7); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.step {
  text-align: center;
  padding: 0 12px;
}
.step-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--fc-mint);
  border: 2px solid var(--fc-mint);
  color: var(--fc-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 20px;
  transition: all 0.3s;
}
.step:hover .step-number {
  background: var(--fc-blush);
  color: var(--fc-primary);
  border-color: var(--fc-blush);
}
.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.step p {
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.75;
  font-weight: 300;
}

/* === TESTIMONIALS === */
.testimonials {
  padding: 100px 0;
  background: var(--fc-sand);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.testimonial-card {
  background: var(--fc-white);
  padding: 40px;
  border-radius: 16px;
  transition: all 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
}
.testimonial-stars {
  color: #f5b731;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-quote {
  font-size: 2.5rem;
  color: var(--fc-primary-mid);
  opacity: 0.3;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 12px;
}
.testimonial-text {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--fc-charcoal);
  margin-bottom: 24px;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fc-primary-light), var(--fc-mint-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--fc-primary);
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.92rem;
}
.testimonial-meta {
  font-size: 0.8rem;
  color: var(--fc-slate);
}

/* === EVENTS === */
.events {
  padding: 100px 0;
  background: var(--fc-cream);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.event-card {
  background: var(--fc-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}
.event-img {
  height: 200px;
  background: linear-gradient(135deg, var(--fc-primary-light), var(--fc-mint-light));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fc-primary-mid);
  opacity: 0.5;
}
.event-date-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--fc-white);
  padding: 8px 14px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.event-date-badge .weekday {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--fc-primary-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.event-date-badge .day {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fc-primary);
  line-height: 1;
}
.event-date-badge .month {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--fc-slate);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.event-content { padding: 24px; }
.event-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  background: var(--fc-primary-mist);
  color: var(--fc-primary);
}
.event-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.event-content p {
  font-size: 0.88rem;
  color: var(--fc-slate);
  line-height: 1.65;
  margin-bottom: 16px;
}
.event-meta {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--fc-slate);
}
.event-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* === CTA === */
.cta-section {
  padding: 100px 0;
  background: var(--fc-mint-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--fc-mint) 0%, transparent 70%);
  top: -200px; right: -100px;
  opacity: 0.2;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-text {
  font-size: 1.1rem;
  color: var(--fc-slate);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
  font-weight: 300;
}

/* === FOOTER === */
.site-footer {
  background: var(--fc-primary);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-text { color: var(--fc-white); }
.footer-brand .logo-text small { color: rgba(255,255,255,0.5); }
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fc-white);
  margin-bottom: 20px;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.site-footer ul a:hover { color: var(--fc-white); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.footer-contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.5;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--fc-white); }
.footer-social { display: flex; gap: 16px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: rgba(255,255,255,0.7);
}
.social-link:hover {
  background: var(--fc-primary-mid);
  transform: translateY(-2px);
  color: var(--fc-white);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes floatCard {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === HAMBURGER BUTTON (hidden on desktop) === */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  margin-left: auto;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--fc-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
/* Animatie naar X als menu open */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* === MOBILE MENU OVERLAY === */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

/* === MOBILE SLIDE-IN MENU === */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: var(--fc-white);
  z-index: 9999;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
  visibility: visible;
}

/* Menu header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--fc-primary-light);
}
.mobile-menu-header .logo-text {
  font-size: 1.2rem;
}
.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fc-slate);
  padding: 4px;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: var(--fc-primary);
}

/* Menu body */
.mobile-menu-body {
  flex: 1;
  padding: 24px;
}

/* Hoofdnavigatie links */
.mobile-menu-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu-nav li {
  border-bottom: 1px solid var(--fc-primary-light);
}
.mobile-menu-nav a {
  display: block;
  padding: 14px 0;
  color: var(--fc-charcoal);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  transition: color 0.2s;
}
.mobile-menu-nav a:hover {
  color: var(--fc-primary-mid);
}

/* Secundaire links (topbar items) - zelfde stijl als hoofdnav */
.mobile-menu-secondary ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu-secondary li {
  border-bottom: 1px solid var(--fc-primary-light);
}
.mobile-menu-secondary a {
  display: block;
  padding: 14px 0;
  color: var(--fc-charcoal);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  transition: color 0.2s;
}
.mobile-menu-secondary a:hover {
  color: var(--fc-primary-mid);
}

/* Contact CTA in mobiel menu */
.mobile-menu-cta {
  display: block;
  margin-top: 28px;
  padding: 14px 24px;
  background: var(--fc-primary);
  color: var(--fc-white) !important;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: background 0.25s;
}
.mobile-menu-cta:hover {
  background: var(--fc-primary-mid);
}

/* Menu footer met taalswitch */
.mobile-menu-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--fc-primary-light);
}
.mobile-menu-lang {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.mobile-menu-lang a {
  color: var(--fc-slate);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.mobile-menu-lang a.active {
  color: var(--fc-primary);
  font-weight: 700;
}
.mobile-menu-lang span {
  color: var(--fc-primary-light);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero { min-height: auto; overflow: visible; }
  .hero .container { grid-template-columns: 1fr; gap: 30px; text-align: center; padding-top: 40px; padding-bottom: 40px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-desc { margin: 0 auto 20px; }
  .hero-actions { display: none; }
  .hero-visual { max-width: 300px; margin: 0 auto; }
  .hero-img { height: 320px; }
  /* Float-card: relatief positioneren onder de foto */
  .hero-float-card {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    margin: -20px auto 0 !important;
    max-width: 260px;
    padding: 14px 18px !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10) !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    display: flex !important;
    z-index: 5;
  }
  .hero-float-card .float-icon { width: 36px; height: 36px; border-radius: 8px; font-size: 1rem; flex-shrink: 0; }
  .hero-float-card .float-text strong { font-size: 0.82rem; }
  .hero-float-card .float-text span { font-size: 0.72rem; }
  /* Slider: track uit absolute-mode halen zodat foto zichtbaar wordt */
  .hero-slider-track { aspect-ratio: auto; }
  .hero-slide { position: relative; inset: auto; opacity: 1; pointer-events: auto; }
  .hero-slide:not(.active) { display: none; }
  .hero-slide .hero-img-wrapper { position: relative; inset: auto; border-radius: 16px; }
  .hero-slide .hero-img { height: 320px; }
  .hero-slide .hero-float-card {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    margin: -20px auto 0 !important;
    max-width: 260px;
    opacity: 1 !important;
    transform: none !important;
    display: flex !important;
  }
  .hero-slider-dots { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-items { flex-wrap: wrap; gap: 24px; justify-content: center; }
  .section-title { font-size: 2rem; }

  /* Topbar verbergen op mobiel */
  .topbar { display: none; }

  /* Header: alleen logo + hamburger */
  .site-header .container { flex-wrap: nowrap; }
  .main-nav { display: none; }
  .nav-cta { display: none; }
  .mobile-menu-toggle { display: flex; }

  /* Secties verbergen op mobiel (via ACF toggle) */
  .hide-on-mobile { display: none !important; }
}

/* ===
   BEHANDELING TEMPLATE (template-behandeling.php)
   === */

/* --- Page Hero (compact) --- */
.page-hero { background: var(--fc-primary); padding: 72px 0 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,62,111,0.95) 0%, rgba(45,107,181,0.8) 50%, rgba(141,180,224,0.5) 100%); }
.page-hero::after { content: ''; position: absolute; inset: 0; opacity: 0.04; background-image: radial-gradient(circle at 20% 50%, #fff 1px, transparent 1px), radial-gradient(circle at 80% 20%, #fff 1px, transparent 1px); background-size: 60px 60px, 80px 80px; }
.page-hero .container { position: relative; z-index: 1; text-align: center; color: #fff; }
.page-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; padding: 6px 16px; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; backdrop-filter: blur(8px); }
.page-hero-badge .dot { width: 6px; height: 6px; background: var(--fc-mint); border-radius: 50%; animation: dotPulse 2.5s ease-in-out infinite; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; line-height: 1.2; margin-bottom: 16px; color: #fff; }
.page-hero h1 em { font-style: italic; color: var(--fc-mint); }
.page-hero p { font-size: 1.1rem; opacity: 0.85; max-width: 560px; margin: 0 auto; font-weight: 300; line-height: 1.7; }

/* --- Intro --- */
.beh-intro { padding: 100px 0 80px; background: var(--fc-white); }
.beh-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.beh-intro-text { font-size: 1.05rem; color: var(--fc-slate); line-height: 1.8; margin-bottom: 16px; }
.beh-intro-text p { margin-bottom: 16px; }
.beh-intro-text p:last-child { margin-bottom: 0; }
.beh-intro-text strong { color: var(--fc-charcoal); font-weight: 600; }
.beh-intro-btns { margin-top: 28px; display: flex; gap: 14px; align-items: center; }
.beh-intro-visual { position: relative; }
.beh-intro-img { width: 100%; height: 440px; border-radius: 20px; object-fit: cover; display: block; background: linear-gradient(145deg, var(--fc-primary-light), var(--fc-primary-mist)); }
.beh-intro-quote { position: absolute; bottom: -24px; left: -24px; background: var(--fc-primary); color: #fff; padding: 24px 28px; border-radius: 14px; max-width: 320px; box-shadow: 0 12px 36px rgba(26,62,111,0.2); }
.beh-intro-quote p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.92rem; line-height: 1.6; opacity: 0.95; }
.beh-intro-quote cite { display: block; margin-top: 10px; font-style: normal; font-family: 'Source Sans 3', sans-serif; font-size: 0.78rem; opacity: 0.6; }

/* --- Behandelkaarten --- */
.beh-treatments { padding: 80px 0 100px; background: var(--fc-cream); }
.beh-treat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.beh-treat-card { background: var(--fc-white); padding: 32px 24px; border-radius: 14px; border: 1px solid rgba(0,0,0,0.05); text-align: center; transition: all 0.35s; position: relative; overflow: hidden; }
.beh-treat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--fc-primary-mid), var(--fc-mint)); opacity: 0; transition: opacity 0.35s; }
.beh-treat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.07); }
.beh-treat-card:hover::before { opacity: 1; }
.beh-treat-icon { width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 16px; background: var(--fc-primary-mist); display: flex; align-items: center; justify-content: center; color: var(--fc-primary); transition: all 0.3s; }
.beh-treat-card:hover .beh-treat-icon { background: var(--fc-primary); color: #fff; }
.beh-treat-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.beh-treat-card p { font-size: 0.85rem; color: var(--fc-slate); line-height: 1.6; }

/* --- Waarom FertilityCare --- */
.beh-why { padding: 100px 0; background: var(--fc-primary); color: #fff; position: relative; overflow: hidden; }
.beh-why::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 10% 90%, rgba(141,180,224,0.1) 0%, transparent 50%), radial-gradient(circle at 90% 10%, rgba(255,255,255,0.05) 0%, transparent 40%); }
.beh-why .container { position: relative; z-index: 1; }
.beh-why .section-label { color: var(--fc-mint); }
.beh-why .section-title { color: #fff; }
.beh-why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.beh-why-item { display: flex; gap: 16px; align-items: flex-start; padding: 24px 28px; border-radius: 12px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); transition: all 0.3s; }
.beh-why-item:hover { background: rgba(255,255,255,0.1); transform: translateX(4px); }
.beh-why-check { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: rgba(152,215,194,0.25); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.beh-why-check svg { color: var(--fc-mint); }
.beh-why-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.beh-why-item p { font-size: 0.85rem; opacity: 0.7; line-height: 1.6; font-weight: 300; }

/* --- Werkwijze / Stappen --- */
.beh-process { padding: 100px 0; background: var(--fc-white); }
.beh-steps { position: relative; max-width: 800px; margin: 0 auto; }
.beh-steps-line { position: absolute; left: 32px; top: 40px; bottom: 40px; width: 2px; background: var(--fc-primary-light); }
.beh-step { display: flex; gap: 28px; margin-bottom: 48px; position: relative; align-items: flex-start; }
.beh-step:last-child { margin-bottom: 0; }
.beh-step-marker { flex-shrink: 0; width: 64px; height: 64px; border-radius: 50%; background: var(--fc-primary-mist); border: 3px solid var(--fc-primary-light); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--fc-primary); z-index: 1; transition: all 0.3s; }
.beh-step:hover .beh-step-marker { background: var(--fc-primary); color: #fff; border-color: var(--fc-primary); }
.beh-step-content { padding-top: 8px; }
.beh-step-content h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; }
.beh-step-content p { font-size: 0.95rem; color: var(--fc-slate); line-height: 1.75; max-width: 580px; }

/* --- FAQ Accordeons --- */
.beh-faq { padding: 80px 0 100px; background: var(--fc-sand); }
.beh-accordion { max-width: 800px; margin: 0 auto; }
.beh-accordion-item { background: var(--fc-white); border-radius: 12px; margin-bottom: 12px; border: 1px solid rgba(0,0,0,0.06); overflow: hidden; transition: box-shadow 0.3s; }
.beh-accordion-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.beh-accordion-trigger { width: 100%; padding: 22px 28px; display: flex; justify-content: space-between; align-items: center; background: none; border: none; cursor: pointer; font-family: 'Source Sans 3', sans-serif; font-size: 1.02rem; font-weight: 600; color: var(--fc-charcoal); text-align: left; gap: 16px; transition: color 0.2s; }
.beh-accordion-trigger:hover { color: var(--fc-primary); }
.beh-accordion-icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--fc-primary-mist); display: flex; align-items: center; justify-content: center; transition: all 0.35s; }
.beh-accordion-icon svg { transition: transform 0.35s; color: var(--fc-primary); }
.beh-accordion-item.open .beh-accordion-icon { background: var(--fc-primary); }
.beh-accordion-item.open .beh-accordion-icon svg { transform: rotate(180deg); color: #fff; }
.beh-accordion-item.open .beh-accordion-trigger { color: var(--fc-primary); }
.beh-accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 28px; }
.beh-accordion-item.open .beh-accordion-body { max-height: 600px; padding: 0 28px 24px; }
.beh-accordion-body p { font-size: 0.95rem; color: var(--fc-slate); line-height: 1.8; margin-bottom: 12px; }
.beh-accordion-body ul { list-style: none; margin: 8px 0 12px; padding: 0; }
.beh-accordion-body ul li { font-size: 0.92rem; color: var(--fc-slate); line-height: 1.7; padding: 6px 0 6px 24px; position: relative; }
.beh-accordion-body ul li::before { content: ''; position: absolute; left: 0; top: 14px; width: 8px; height: 8px; border-radius: 50%; background: var(--fc-primary-light); border: 2px solid var(--fc-primary-mid); }

/* --- Testimonials (behandeling) --- */
.beh-testimonials { padding: 80px 0; background: var(--fc-white); }
.beh-testimonials .container { max-width: 900px; }
.beh-testi-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.beh-testi-card { background: var(--fc-primary-mist); border-radius: 14px; padding: 32px; border: 1px solid var(--fc-primary-light); }
.beh-testi-mark { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--fc-primary-mid); opacity: 0.3; line-height: 1; margin-bottom: 8px; }
.beh-testi-card p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.95rem; line-height: 1.7; color: var(--fc-charcoal); margin-bottom: 16px; }
.beh-testi-card cite { font-style: normal; font-family: 'Source Sans 3', sans-serif; font-size: 0.82rem; color: var(--fc-slate); }

/* === WERKWIJZE PAGINA === */

/* Intro USPs */
.werkwijze-usps { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 28px; }
.werkwijze-usp { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--fc-charcoal); font-weight: 500; }
.werkwijze-usp svg { color: var(--fc-mint-dark); flex-shrink: 0; }

/* Stappen overrides for werkwijze (6 steps, sand bg) */
.werkwijze-stappen { background: var(--fc-sand); }
.werkwijze-stappen .beh-steps-line { background: var(--fc-primary-light); }

/* Kliniek sectie */
.werkwijze-kliniek { padding: 80px 0 100px; background: var(--fc-white); }
.werkwijze-kliniek-grid { display: grid; grid-template-columns: 1fr 380px; gap: 36px; align-items: flex-start; }

/* Kliniek - main (links) */
.werkwijze-kliniek-card { background: var(--fc-white); border-radius: 16px; overflow: hidden; border: 1px solid rgba(0,0,0,0.06); margin-bottom: 24px; }
.werkwijze-kliniek-img { aspect-ratio: 16/9; overflow: hidden; background: linear-gradient(135deg, var(--fc-primary-light), var(--fc-primary-mist)); }
.werkwijze-kliniek-img img { width: 100%; height: 100%; object-fit: cover; }
.werkwijze-kliniek-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--fc-primary-light), var(--fc-primary-mist)); }
.werkwijze-kliniek-card-body { padding: 28px 32px; }
.werkwijze-kliniek-card-body p { font-size: 0.95rem; color: var(--fc-slate); line-height: 1.8; margin-bottom: 12px; }
.werkwijze-kliniek-card-body p:last-child { margin-bottom: 0; }

/* Arts card */
.werkwijze-arts-card { display: flex; gap: 20px; align-items: center; padding: 24px 28px; background: var(--fc-cream); border-radius: 14px; border: 1px solid rgba(0,0,0,0.04); }
.werkwijze-arts-photo { flex-shrink: 0; width: 72px; height: 72px; border-radius: 50%; overflow: hidden; background: var(--fc-primary-mist); }
.werkwijze-arts-photo img { width: 100%; height: 100%; object-fit: cover; }
.werkwijze-arts-naam { font-weight: 700; font-size: 1rem; color: var(--fc-charcoal); margin-bottom: 2px; }
.werkwijze-arts-functie { font-size: 0.82rem; color: var(--fc-primary-mid); font-weight: 600; margin-bottom: 4px; }
.werkwijze-arts-bio { font-size: 0.82rem; color: var(--fc-slate); line-height: 1.5; }

/* Kliniek - sidebar (rechts) */
.werkwijze-contact-card {
  background: var(--fc-primary); color: #fff; border-radius: 16px;
  padding: 32px; margin-bottom: 20px;
}
.werkwijze-contact-card h4 {
  font-family: 'Playfair Display', serif; font-size: 1.15rem;
  font-weight: 600; margin-bottom: 24px;
}
.werkwijze-contact-item {
  display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px;
}
.werkwijze-contact-item svg { flex-shrink: 0; margin-top: 2px; opacity: 0.7; }
.werkwijze-contact-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.5; margin-bottom: 2px; }
.werkwijze-contact-value { font-size: 0.9rem; font-weight: 500; line-height: 1.5; }
.werkwijze-contact-value a { color: #fff; text-decoration: none; }
.werkwijze-contact-value a:hover { text-decoration: underline; }
.werkwijze-contact-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px; margin-top: 24px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px; color: #fff; text-decoration: none;
  font-weight: 600; font-size: 0.92rem; transition: all 0.3s;
}
.werkwijze-contact-btn:hover { background: rgba(255,255,255,0.25); }

/* Vergoeding card */
.werkwijze-vergoeding-card {
  background: var(--fc-white); border-radius: 16px; padding: 28px;
  border: 1px solid rgba(0,0,0,0.06);
}
.werkwijze-vergoeding-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.werkwijze-vergoeding-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--fc-primary-mist); display: flex; align-items: center;
  justify-content: center; color: var(--fc-primary);
}
.werkwijze-vergoeding-card h4 {
  font-family: 'Playfair Display', serif; font-size: 1.05rem;
  font-weight: 600; color: var(--fc-charcoal);
}
.werkwijze-vergoeding-text { font-size: 0.85rem; color: var(--fc-slate); line-height: 1.6; margin-bottom: 16px; }
.werkwijze-vergoeding-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--fc-charcoal); margin-bottom: 10px;
}
.werkwijze-vergoeding-item svg { flex-shrink: 0; color: var(--fc-mint-dark); margin-top: 2px; }
.werkwijze-vergoeding-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  font-size: 0.88rem; font-weight: 600; color: var(--fc-primary-mid);
  text-decoration: none; transition: color 0.2s;
}
.werkwijze-vergoeding-link:hover { color: var(--fc-primary); }

/* FAQ link */
.werkwijze-faq { background: var(--fc-sand); }
.werkwijze-faq-link { text-align: center; margin-top: 32px; }
.werkwijze-faq-link a {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.95rem; color: var(--fc-primary-mid);
  text-decoration: none; transition: color 0.2s;
}
.werkwijze-faq-link a:hover { color: var(--fc-primary); }

/* Werkwijze responsive */
@media (max-width: 1024px) {
  .werkwijze-kliniek-grid { grid-template-columns: 1fr; }
  .werkwijze-kliniek-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 768px) {
  .werkwijze-kliniek-sidebar { grid-template-columns: 1fr; }
  .werkwijze-arts-card { flex-direction: column; text-align: center; gap: 14px; }
  .werkwijze-kliniek-card-body { padding: 20px 24px; }
  .werkwijze-usps { gap: 8px; }
}

/* === TEAM PAGINA === */
.team-section { padding: 48px 0 80px; background: var(--fc-white); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card {
  background: var(--fc-white); border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05); transition: all 0.35s;
  text-decoration: none; color: inherit; display: block;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }
.team-card-photo {
  aspect-ratio: 4/3; overflow: hidden; background: linear-gradient(135deg, var(--fc-primary-light), var(--fc-primary-mist));
  position: relative;
}
.team-photo { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.team-card:hover .team-photo { transform: scale(1.03); }
.team-card-photo-link {
  display: block; width: 100%; height: 100%;
}
.team-photo-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  color: var(--fc-primary-mid); opacity: 0.4;
}
.team-card-badge {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(26,62,111,0.85); color: #fff;
  font-size: 0.7rem; font-weight: 600; padding: 4px 10px;
  border-radius: 100px; letter-spacing: 0.03em;
  backdrop-filter: blur(4px);
}
.team-card-info { padding: 16px 16px 18px; }
.team-card-info h3 { font-family: 'Playfair Display', serif; font-size: 0.98rem; font-weight: 600; margin-bottom: 4px; color: var(--fc-charcoal); }
.team-spec { font-size: 0.78rem; color: var(--fc-slate); line-height: 1.55; margin-bottom: 10px; font-style: italic; }
.team-location {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.75rem; color: var(--fc-primary-mid); font-weight: 500;
  margin-bottom: 2px;
}
.team-card-link {
  margin-top: 12px; padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600; color: var(--fc-primary-mid);
  text-decoration: none; position: relative;
}
.team-card-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--fc-primary-mid);
  transition: width 0.3s ease;
}
.team-card-link:hover::after { width: calc(100% - 20px); }
.team-maps { padding: 60px 0 80px; background: var(--fc-cream); }
.team-maps-header { text-align: center; max-width: 640px; margin: 0 auto 40px; }

/* FAQ filter buttons (used by template-faq.php) */
.faq-nav-items { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.faq-nav-btn {
  padding: 10px 22px; border-radius: 100px; border: 1px solid rgba(0,0,0,0.1);
  background: var(--fc-white); font-family: 'Source Sans 3', sans-serif; font-size: 0.88rem;
  font-weight: 500; color: var(--fc-slate); cursor: pointer; transition: all 0.25s;
}
.faq-nav-btn:hover { border-color: var(--fc-primary-mid); color: var(--fc-primary); }
.faq-nav-btn.active {
  background: var(--fc-primary); color: #fff; border-color: var(--fc-primary);
}

/* === FAQ OVERZICHT === */
.faq-nav { padding: 32px 0 0; background: var(--fc-white); }
.faq-search-wrap {
  position: relative; max-width: 600px; margin: 0 auto 20px;
}
.faq-search-icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--fc-slate); opacity: 0.5; pointer-events: none;
}
.faq-search {
  width: 100%; padding: 14px 80px 14px 48px; border-radius: 12px;
  border: 2px solid rgba(0,0,0,0.08); background: var(--fc-cream);
  font-family: 'Source Sans 3', sans-serif; font-size: 1rem; color: var(--fc-charcoal);
  transition: all 0.3s; outline: none;
}
.faq-search:focus { border-color: var(--fc-primary-mid); background: var(--fc-white); box-shadow: 0 4px 20px rgba(26,62,111,0.08); }
.faq-search::placeholder { color: var(--fc-slate); opacity: 0.6; }
.faq-search-count {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  font-size: 0.82rem; color: var(--fc-slate); opacity: 0.6;
}
.faq-no-results {
  text-align: center; padding: 60px 20px; color: var(--fc-slate);
}
.faq-no-results svg { margin-bottom: 16px; opacity: 0.3; }
.faq-no-results p { font-size: 1.05rem; }
.faq-no-results #faqSearchTerm { font-weight: 600; color: var(--fc-charcoal); }

/* FAQ link button */
.beh-accordion-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.faq-link-btn {
  width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--fc-slate); opacity: 0; transition: all 0.25s; text-decoration: none;
}
.beh-accordion-item:hover .faq-link-btn { opacity: 0.5; }
.faq-link-btn:hover { opacity: 1 !important; color: var(--fc-primary); background: var(--fc-primary-mist); }

/* FAQ search highlight */
.beh-accordion-item[data-search-hidden="true"] { display: none; }
.faq-category-group[data-search-empty="true"] { display: none; }

/* FAQ Modal */
.faq-modal-overlay {
  position: fixed; inset: 0; z-index: 9999; background: rgba(15,43,76,0.6);
  backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; transition: opacity 0.3s;
}
.faq-modal-overlay.active { display: flex; opacity: 1; }
.faq-modal {
  background: var(--fc-white); border-radius: 20px; padding: 40px;
  max-width: 680px; width: 100%; max-height: 80vh; overflow-y: auto;
  position: relative; box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  transform: translateY(20px); transition: transform 0.3s;
}
.faq-modal-overlay.active .faq-modal { transform: translateY(0); }
.faq-modal-close {
  position: absolute; top: 16px; right: 16px; width: 40px; height: 40px;
  border-radius: 50%; border: none; background: var(--fc-cream); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--fc-slate); transition: all 0.2s;
}
.faq-modal-close:hover { background: var(--fc-primary-light); color: var(--fc-primary); }
.faq-modal-question {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 600;
  color: var(--fc-primary); margin-bottom: 20px; padding-right: 40px; line-height: 1.4;
}
.faq-modal-answer { font-size: 1rem; color: var(--fc-slate); line-height: 1.8; }
.faq-modal-answer p { margin-bottom: 12px; }
.faq-modal-link {
  display: inline-block; margin-top: 24px; padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06); font-size: 0.9rem;
  color: var(--fc-primary-mid); text-decoration: none; font-weight: 500;
}
.faq-modal-link:hover { color: var(--fc-primary); }

.faq-overview { padding: 48px 0 80px; background: var(--fc-white); }
.faq-category-group { margin-bottom: 48px; }
.faq-category-group[data-hidden="true"] { display: none; }
.faq-category-title {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600;
  color: var(--fc-primary); margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--fc-primary-light);
}
.faq-overview .beh-accordion { max-width: 100%; }

/* === RESPONSIVE (team + faq) === */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .faq-nav-items { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .faq-nav-btn { white-space: nowrap; flex-shrink: 0; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* === RESPONSIVE (behandeling) === */
@media (max-width: 1024px) {
  .beh-treat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .beh-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .beh-intro-visual { order: -1; }
  .beh-intro-quote { position: relative; bottom: auto; left: auto; margin-top: 16px; }
  .beh-treat-grid { grid-template-columns: 1fr 1fr; }
  .beh-why-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 2.2rem; }
  .beh-testi-cards { grid-template-columns: 1fr; }
  .beh-steps-line { display: none; }
}


/* ===
   CONTACT TEMPLATE (template-contact.php)
   === */

.contact-section {
  padding: 80px 0 100px;
  background: var(--fc-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: start;
}

/* — Formulier kolom — */
.contact-form-col {
  background: var(--fc-cream);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.04);
}
.contact-form-col h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-form-col > p {
  font-size: 0.95rem;
  color: var(--fc-slate);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* — Contact Form 7 velden — */
.contact-form-col input[type="text"],
.contact-form-col input[type="email"],
.contact-form-col textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--fc-primary-light);
  border-radius: 10px;
  background: var(--fc-white);
  font-size: 0.95rem;
  color: var(--fc-charcoal);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.contact-form-col input[type="text"]:focus,
.contact-form-col input[type="email"]:focus,
.contact-form-col textarea:focus {
  outline: none;
  border-color: var(--fc-primary-mid);
  box-shadow: 0 0 0 3px rgba(45, 107, 181, 0.12);
}
.contact-form-col textarea {
  min-height: 140px;
  resize: vertical;
}

/* — Verzendknop — */
.contact-form-col input[type="submit"],
.contact-form-col .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background: var(--fc-mint-dark);
  color: var(--fc-white);
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
  margin-top: 8px;
}
.contact-form-col input[type="submit"]:hover,
.contact-form-col .wpcf7-submit:hover {
  background: var(--fc-mint);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(107,196,168,0.35);
}

/* -- Info kolom -- */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-card {
  background: var(--fc-cream);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.04);
}
.contact-info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--fc-primary-mist);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fc-primary);
}
.contact-info-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fc-slate);
  margin-bottom: 2px;
}
.contact-info-value {
  font-size: 0.95rem;
  color: var(--fc-charcoal);
  line-height: 1.6;
}
.contact-info-value a {
  color: var(--fc-primary-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-info-value a:hover { color: var(--fc-primary); }

/* -- Maps -- */
.contact-map-card {
  background: var(--fc-cream);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
}
.contact-map-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 24px 32px 16px;
}
.contact-map-embed {
  width: 100%;
  height: 260px;
  background: var(--fc-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fc-primary-mid);
  opacity: 0.5;
}
.contact-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 1;
}

/* -- Contact responsive -- */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info-col { order: -1; }
}

/* ===
   AGENDA TEMPLATE (template-agenda.php)
   === */

/* --- Event Type Tags --- */
.agenda-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.agenda-tag--workshop { background: var(--fc-primary-mist); color: var(--fc-primary); }
.agenda-tag--webinar { background: #eff6ff; color: #2563eb; }
.agenda-tag--info { background: #f0fdf4; color: #16a34a; }
.agenda-tag--lezing { background: #fefce8; color: #ca8a04; }

.agenda-cost {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fc-primary);
}

/* --- Featured Event (eerstvolgende) --- */
.agenda-featured {
  padding: 60px 0 0;
  background: var(--fc-white);
}
.agenda-featured-card {
  display: flex;
  gap: 0;
  background: var(--fc-white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transition: all 0.4s;
}
.agenda-featured-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.agenda-featured-date {
  flex-shrink: 0;
  width: 160px;
  background: var(--fc-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  color: var(--fc-white);
  position: relative;
}
.agenda-featured-date::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(141,180,224,0.15) 0%, transparent 60%);
}
.agenda-featured-weekday {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}
.agenda-featured-day {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.agenda-featured-month {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}
.agenda-featured-year {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}
.agenda-featured-content {
  flex: 1;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.agenda-featured-top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.agenda-featured-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--fc-charcoal);
  margin: 0;
}
.agenda-featured-desc {
  font-size: 0.95rem;
  color: var(--fc-slate);
  line-height: 1.75;
  margin: 0;
}
.agenda-featured-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.agenda-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--fc-slate);
  font-weight: 500;
}
.agenda-meta-item svg { color: var(--fc-primary-mid); flex-shrink: 0; }
.agenda-featured-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* --- Organizer (shared) --- */
.agenda-organizer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.agenda-organizer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fc-primary-light), var(--fc-mint-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--fc-primary);
  flex-shrink: 0;
}
.agenda-organizer-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.agenda-organizer-info {
  display: flex;
  flex-direction: column;
}
.agenda-organizer-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--fc-charcoal);
}
.agenda-organizer-function {
  font-size: 0.78rem;
  color: var(--fc-slate);
}

/* --- Upcoming Events List --- */
.agenda-upcoming {
  padding: 60px 0 80px;
  background: var(--fc-white);
}
.agenda-upcoming-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--fc-primary-light);
}
.agenda-upcoming-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fc-charcoal);
  margin: 0;
}
.agenda-upcoming-count {
  font-size: 0.85rem;
  color: var(--fc-slate);
  font-weight: 500;
}

/* Event Row */
.agenda-event-row {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.agenda-event-row:hover {
  background: var(--fc-cream);
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 12px;
  border-color: transparent;
}
.agenda-event-row:last-child { border-bottom: none; }

.agenda-event-date {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: var(--fc-primary-mist);
  border: 2px solid var(--fc-primary-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.agenda-event-row:hover .agenda-event-date {
  background: var(--fc-primary);
  border-color: var(--fc-primary);
}
.agenda-event-weekday {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--fc-primary-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1px;
  transition: color 0.3s;
}
.agenda-event-row:hover .agenda-event-weekday { color: rgba(255,255,255,0.7); }
.agenda-event-day {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fc-primary);
  line-height: 1;
  transition: color 0.3s;
}
.agenda-event-row:hover .agenda-event-day { color: var(--fc-white); }
.agenda-event-month {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--fc-primary-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.3s;
}
.agenda-event-row:hover .agenda-event-month { color: rgba(255,255,255,0.8); }

.agenda-event-content {
  flex: 1;
  min-width: 0;
}
.agenda-event-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.agenda-event-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fc-charcoal);
  margin: 0 0 6px;
  line-height: 1.35;
}
.agenda-event-content p {
  font-size: 0.88rem;
  color: var(--fc-slate);
  line-height: 1.65;
  margin: 0 0 10px;
}
.agenda-event-meta {
  display: flex;
  gap: 20px;
}

/* Event Side (organizer + link) */
.agenda-event-side {
  flex-shrink: 0;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  padding-top: 4px;
}
.agenda-organizer-compact {
  display: flex;
  align-items: center;
  gap: 8px;
}
.agenda-organizer-avatar-sm {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fc-primary-light), var(--fc-mint-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.65rem;
  color: var(--fc-primary);
  flex-shrink: 0;
}
.agenda-organizer-avatar-sm img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.agenda-organizer-compact span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fc-charcoal);
  white-space: nowrap;
}
.agenda-event-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fc-primary-mid);
  text-decoration: none;
  transition: gap 0.3s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.agenda-event-link:hover {
  color: var(--fc-primary);
  gap: 8px;
}

/* --- Empty State --- */
.agenda-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--fc-slate);
}
.agenda-empty svg { margin-bottom: 16px; opacity: 0.3; }
.agenda-empty p { font-size: 1.05rem; max-width: 400px; margin: 0 auto; }

/* --- Responsive (agenda) --- */
@media (max-width: 768px) {
  .agenda-featured-card { flex-direction: column; }
  .agenda-featured-date {
    width: 100%;
    flex-direction: row;
    gap: 12px;
    padding: 20px 28px;
  }
  .agenda-featured-day { font-size: 2.2rem; }
  .agenda-featured-content { padding: 24px; }
  .agenda-featured-content h2 { font-size: 1.3rem; }
  .agenda-featured-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .agenda-event-row { flex-wrap: wrap; gap: 16px; }
  .agenda-event-side {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 100px;
  }
  .agenda-event-date { width: 60px; height: 60px; }
  .agenda-event-day { font-size: 1.3rem; }
}

/* ===
   EVENT DETAIL (single-event.php)
   === */
.page-hero--compact { padding: 48px 0 56px; }

.event-detail { padding: 60px 0 100px; background: var(--fc-white); }
.event-detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }

/* Breadcrumb */
.event-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--fc-slate); margin-bottom: 28px; flex-wrap: wrap; }
.event-breadcrumb a { color: var(--fc-primary-mid); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.event-breadcrumb a:hover { color: var(--fc-primary); }
.event-breadcrumb svg { opacity: 0.4; flex-shrink: 0; }

/* Main content */
.event-detail-tag-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.event-detail-main h1 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; line-height: 1.25; color: var(--fc-charcoal); margin: 0 0 32px; }
.event-detail-body { font-size: 1rem; color: var(--fc-slate); line-height: 1.85; }
.event-detail-body p { margin-bottom: 16px; }
.event-detail-body h2, .event-detail-body h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; color: var(--fc-charcoal); margin: 32px 0 12px; }
.event-detail-body ul { list-style: none; margin: 12px 0 20px; padding: 0; }
.event-detail-body ul li { padding: 6px 0 6px 24px; position: relative; line-height: 1.7; }
.event-detail-body ul li::before { content: ''; position: absolute; left: 0; top: 14px; width: 8px; height: 8px; border-radius: 50%; background: var(--fc-primary-light); border: 2px solid var(--fc-primary-mid); }
.event-detail-body ol { margin: 12px 0 20px; padding-left: 24px; }
.event-detail-body ol li { padding: 4px 0; line-height: 1.7; }

/* Back link */
.event-back-link { margin-top: 48px; padding-top: 28px; border-top: 1px solid rgba(0,0,0,0.06); }
.event-back-link a { display: inline-flex; align-items: center; gap: 8px; font-size: 0.92rem; font-weight: 600; color: var(--fc-primary-mid); text-decoration: none; transition: gap 0.3s, color 0.2s; }
.event-back-link a:hover { gap: 12px; color: var(--fc-primary); }

/* Sidebar */
.event-detail-sidebar { position: sticky; top: 100px; }
.event-info-card { background: var(--fc-cream); border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; overflow: hidden; }
.event-info-header { background: var(--fc-primary); color: var(--fc-white); padding: 24px 28px; text-align: center; position: relative; }
.event-info-header::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 70%, rgba(141,180,224,0.15) 0%, transparent 60%); }
.event-info-day { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; line-height: 1; position: relative; z-index: 1; }
.event-info-monthyear { font-size: 1rem; font-weight: 500; opacity: 0.85; margin-top: 4px; position: relative; z-index: 1; }
.event-info-body { padding: 28px; }
.event-info-row { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.event-info-row:last-child { border-bottom: none; }
.event-info-icon { flex-shrink: 0; width: 36px; height: 36px; border-radius: 8px; background: var(--fc-primary-mist); display: flex; align-items: center; justify-content: center; color: var(--fc-primary); }
.event-info-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--fc-slate); margin-bottom: 2px; }
.event-info-value { font-size: 0.95rem; font-weight: 500; color: var(--fc-charcoal); }

/* Organizer card */
.event-organizer-card { background: var(--fc-cream); border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; padding: 28px; margin-top: 20px; }
.event-organizer-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fc-slate); margin-bottom: 16px; }
.event-organizer-profile { display: flex; gap: 16px; align-items: center; margin-bottom: 16px; }
.event-organizer-photo { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--fc-primary-light), var(--fc-mint-light)); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 1rem; color: var(--fc-primary); flex-shrink: 0; overflow: hidden; }
.event-organizer-photo img { width: 100%; height: 100%; object-fit: cover; }
.event-organizer-details h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; color: var(--fc-charcoal); margin: 0 0 2px; }
.event-organizer-function { font-size: 0.82rem; color: var(--fc-primary-mid); font-weight: 500; }
.event-organizer-spec { font-size: 0.82rem; color: var(--fc-slate); font-style: italic; }
.event-organizer-bio { font-size: 0.88rem; color: var(--fc-slate); line-height: 1.7; margin: 0; }

/* Event detail responsive */
@media (max-width: 1024px) {
  .event-detail-grid { grid-template-columns: 1fr 320px; gap: 32px; }
}
@media (max-width: 768px) {
  .event-detail-grid { grid-template-columns: 1fr; }
  .event-detail-sidebar { position: static; order: -1; }
  .event-detail-main h1 { font-size: 1.8rem; }
}

/* ═══════════════════════════════════════════════
   SINGLE MEDEWERKER (single-medewerker.php)
   ═══════════════════════════════════════════════ */

/* Breadcrumb */
.medewerker-breadcrumb { background: var(--fc-white); border-bottom: 1px solid rgba(0,0,0,0.04); padding: 14px 0; }
.medewerker-breadcrumb .container { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--fc-slate); flex-wrap: wrap; }
.medewerker-breadcrumb a { color: var(--fc-primary-mid); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.medewerker-breadcrumb a:hover { color: var(--fc-primary); }
.medewerker-breadcrumb svg { opacity: 0.4; flex-shrink: 0; }

/* Profile header */
.medewerker-header { background: var(--fc-white); padding: 48px 0 56px; border-bottom: 1px solid rgba(0,0,0,0.04); }
.medewerker-header-grid { display: flex; gap: 40px; align-items: flex-start; }
.medewerker-header-photo {
  width: 220px; min-width: 220px; border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, var(--fc-primary-light), var(--fc-primary-mist));
  aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center;
}
.medewerker-header-photo img { width: 100%; height: 100%; object-fit: cover; }
.medewerker-header-photo .team-photo-placeholder { width: 100%; height: 100%; }
.medewerker-header-info { flex: 1; padding-top: 8px; }
.medewerker-functie-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--fc-primary-light); border-radius: 100px;
  padding: 6px 16px; font-size: 0.78rem; font-weight: 600;
  color: var(--fc-primary-mid); letter-spacing: 0.04em; margin-bottom: 16px;
}
.medewerker-functie-badge .dot { width: 6px; height: 6px; background: var(--fc-mint); border-radius: 50%; animation: dotPulse 2.5s ease-in-out infinite; }
.medewerker-header-info h1 {
  font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700;
  line-height: 1.2; color: var(--fc-charcoal); margin-bottom: 8px;
}
.medewerker-specialisatie { font-size: 1.05rem; color: var(--fc-slate); font-style: italic; margin-bottom: 24px; line-height: 1.6; }
.medewerker-contact-items { display: flex; gap: 24px; flex-wrap: wrap; }
.medewerker-contact-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 18px;
  background: var(--fc-cream); border-radius: 10px; border: 1px solid rgba(0,0,0,0.04);
}
.medewerker-contact-item svg { color: var(--fc-primary-mid); flex-shrink: 0; }
.medewerker-contact-label { font-size: 0.75rem; color: var(--fc-slate); margin-bottom: 1px; }
.medewerker-contact-value { font-size: 0.88rem; font-weight: 600; color: var(--fc-charcoal); }
.medewerker-contact-value a { color: var(--fc-primary-mid); text-decoration: none; }
.medewerker-contact-value a:hover { color: var(--fc-primary); }

/* Content grid */
.medewerker-content { padding: 56px 0 80px; }
.medewerker-content-grid { display: flex; gap: 48px; align-items: flex-start; }
.medewerker-bio { flex: 1; }
.medewerker-bio h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 600; color: var(--fc-charcoal); margin-bottom: 20px; }
.medewerker-bio-text { font-size: 1rem; line-height: 1.8; color: var(--fc-slate); }
.medewerker-bio-text p { margin-bottom: 20px; }

/* Sidebar */
.medewerker-sidebar { width: 340px; min-width: 340px; }
.medewerker-map-card {
  background: var(--fc-white); border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06); margin-bottom: 24px;
}
.medewerker-map-embed {
  display: block; height: 200px; overflow: hidden;
  background: linear-gradient(135deg, var(--fc-primary-light), var(--fc-primary-mist));
}
.medewerker-map-img {
  width: 100%; height: 100%; object-fit: cover;
}
.medewerker-map-info { padding: 16px 20px; }
.medewerker-map-name { font-size: 0.92rem; font-weight: 600; color: var(--fc-charcoal); margin-bottom: 4px; }
.medewerker-map-address { font-size: 0.85rem; color: var(--fc-slate); }

.medewerker-others {
  background: var(--fc-white); border-radius: 16px; padding: 24px;
  border: 1px solid rgba(0,0,0,0.06);
}
.medewerker-others h3 {
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600;
  color: var(--fc-charcoal); margin-bottom: 20px;
}
.medewerker-other-link {
  text-decoration: none; color: inherit;
  display: flex; gap: 14px; align-items: center;
  padding: 12px 14px; border-radius: 12px;
  background: var(--fc-cream); border: 1px solid rgba(0,0,0,0.03);
  transition: all 0.25s; margin-bottom: 12px;
}
.medewerker-other-link:last-of-type { margin-bottom: 0; }
.medewerker-other-link:hover { background: var(--fc-primary-light); }
.medewerker-other-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; overflow: hidden;
  background: linear-gradient(135deg, var(--fc-primary-light), var(--fc-primary-mid));
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.75rem; color: var(--fc-primary);
}
.medewerker-other-avatar img { width: 100%; height: 100%; object-fit: cover; }
.medewerker-other-info { flex: 1; min-width: 0; }
.medewerker-other-name { font-size: 0.88rem; font-weight: 600; color: var(--fc-charcoal); margin-bottom: 2px; }
.medewerker-other-meta { font-size: 0.78rem; color: var(--fc-slate); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.medewerker-back-btn {
  display: block; text-align: center; margin-top: 20px;
  padding: 12px; border-radius: 10px;
  border: 1px solid var(--fc-primary-mid);
  color: var(--fc-primary-mid); font-size: 0.88rem; font-weight: 600;
  text-decoration: none; transition: all 0.25s;
}
.medewerker-back-btn:hover { background: var(--fc-primary-mist); color: var(--fc-primary); }

/* Medewerker responsive */
@media (max-width: 1024px) {
  .medewerker-sidebar { width: 300px; min-width: 300px; }
  .medewerker-header-photo { width: 180px; min-width: 180px; }
}
@media (max-width: 768px) {
  .medewerker-header-grid { flex-direction: column; gap: 24px; }
  .medewerker-header-photo { width: 160px; min-width: 160px; margin: 0 auto; }
  .medewerker-header-info { text-align: center; }
  .medewerker-contact-items { justify-content: center; }
  .medewerker-header-info h1 { font-size: 1.8rem; }
  .medewerker-content-grid { flex-direction: column; }
  .medewerker-sidebar { width: 100%; min-width: 100%; }
}

/* ===
   GOOGLE MAPS (fc-maps.php shortcode)
   === */
.fc-team-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.fc-team-map .gm-style-iw { padding: 4px !important; }
.fc-team-map .gm-style-iw-d { overflow: hidden !important; }