/* ============================================
   CLARO CLINIC — Global Styles
   Fonts: Plus Jakarta Sans + Public Sans
   Palette: #F9F6F0 bg / #7DA08F accent / #2C302E dark
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Public+Sans:wght@400;500;600&display=swap');

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

:root {
  /* Tactile Sanctuary Design System Tokens */
  /* Brand */
  --color-sage-500: #7DA08F;
  --color-sage-600: #688C7B;

  /* Neutrals */
  --color-cream-50:       #FFF6F1;
  --color-cream-100:      #F9F6F0;
  --color-cream-white:    #FFF6F1;
  /* Secondary surface — Figma: nav-badges, footer, inactive states */
  --color-surface-secondary: #f2efe9;
  /* Modal body background — Figma: booking modal body area */
  --color-modal-body:     #f7f3ee;

  /* Accents */
  --color-peach-200: #F3DFD1;

  /* Text */
  --color-ink-900:  #2C302E;
  --color-ink-700:  #3A3D3A;
  --color-brown-700:#5D4F45;
  --color-brown-600:#6A5C51;

  /* Overlays */
  --overlay-header:   rgba(249,246,240,0.9);
  --overlay-cta-text: rgba(255,246,241,0.8);
  --overlay-brown-80: rgba(93, 79, 69, 0.8);

  /* Border Radius - Unified Scale */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Shadows — warm brown (Figma-aligned: rgba(106,92,81,x)) */
  --shadow-sm:  0 20px 50px rgba(106,92,81,0.04);
  --shadow-md:  0 20px 50px rgba(106,92,81,0.08);
  --shadow-lg:  0 20px 50px rgba(106,92,81,0.15);
  --shadow-3d:  0 30px 60px rgba(106,92,81,0.12);
  --shadow:     var(--shadow-md);

  /* Typography */
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body:    "Public Sans", sans-serif;

  /* Legacy aliases to keep existing HTML structure unbroken */
  --radius-card: var(--radius-2xl);
  --radius-pill: var(--radius-full);
  --cream:      var(--color-cream-50);
  /* --warm-gray now points to Figma secondary surface #f2efe9 */
  --warm-gray:  var(--color-surface-secondary);
  --dark:       var(--color-ink-900);
  --body:       var(--color-ink-700);
  --accent:     var(--color-sage-500);
  --accent-dark:var(--color-sage-600);
  --brown:      var(--color-brown-600);
  --white:      #FFFFFF;
  --border:     rgba(44,48,46,0.12);

  --soa-bg:     var(--color-cream-50);
  --soa-dark:   var(--color-ink-900);
  --soa-card:   var(--white);

  --vaccin-bg:  var(--color-cream-50);
  --vaccin-dark:var(--color-ink-900);
  --vaccin-mid: var(--color-ink-700);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--color-cream-white);
  color: var(--color-ink-900);
  line-height: 28px;
  -webkit-font-smoothing: antialiased;
}

/* LENIS SCROLL CSS */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── NAVIGATION ──────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--overlay-header);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 12px 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 20px;
  color: var(--accent); text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-btn {
  font-family: 'Public Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  color: var(--body); text-decoration: none;
  padding: 8px 16px; border-radius: var(--radius-full);
  background: var(--warm-gray);
  transition: background 0.2s, color 0.2s;
}
.nav-btn:hover { background: var(--accent); color: var(--white); }
.nav-btn--active { background: var(--accent); color: var(--white); }
.nav-btn--cta { background: var(--dark); color: var(--white); }
.nav-btn--cta:hover { background: var(--accent); }

/* Green nav variant (Vaccinaties page) */
.nav--green { background: rgba(238,244,240,0.9); }
.nav-logo--green { color: var(--accent-dark); }
.nav-btn--green { background: rgba(125,160,143,0.12); color: var(--vaccin-dark); }
.nav-btn--green:hover { background: var(--accent); color: var(--white); }
.nav-btn--active-green { background: var(--accent); color: var(--white); }
.nav-btn--cta-green { background: var(--vaccin-dark); color: var(--white); }

/* ── SECTION HELPERS ─────────────────────────── */
.section-container { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.section-header { margin-bottom: 56px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 38px; line-height: 36px;
  letter-spacing: -0.02em; color: var(--color-ink-900);
  margin-bottom: 16px;
}
.section-title--dark { color: var(--color-ink-900); }
.section-title--green { color: var(--color-ink-900); }
.section-subtitle { font-size: 18px; line-height: 28px; color: var(--color-ink-700); max-width: 580px; }
.section-subtitle--dark { color: var(--body); }
.section-subtitle--muted { color: var(--body); opacity: 0.8; }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 16px;
  text-decoration: none; border-radius: var(--radius-pill);
  padding: 16px 40px; cursor: pointer; height: 60px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn:focus-visible, a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 4px;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--color-sage-500); color: var(--color-cream-50); box-shadow: var(--shadow-button); }
.btn--primary:hover { background: var(--color-sage-600); }
.btn--outline { background: transparent; color: var(--color-ink-900); border: 1.5px solid var(--border); }
.btn--outline:hover { background: var(--color-cream-100); }
.btn--peach { background: var(--color-peach-200); color: var(--color-brown-700); box-shadow: var(--shadow-button); }
.btn--peach:hover { background: #EBD3C1; } /* Slightly darker peach */
.btn--cta-white { background: var(--color-cream-50); color: var(--color-ink-900); font-weight: 700; }
.btn--cta-white:hover { background: var(--white); }
.btn--vaccin-primary { background: var(--color-sage-500); color: var(--color-cream-50); box-shadow: var(--shadow-button); }
.btn--vaccin-primary:hover { background: var(--color-sage-600); }
.btn--vaccin-cta { background: var(--color-cream-50); color: var(--color-ink-900); font-weight: 700; }
.btn--vaccin-cta:hover { background: var(--white); }

/* ══════════════════════════════════════════════
   PAGE: HOME (index.html)
   ══════════════════════════════════════════════ */
.page-home { background: var(--cream); padding-top: 72px; }

/* HERO */
.hero { min-height: calc(100vh - 72px); display: flex; align-items: flex-start; padding: 56px 0 60px; }
.hero-content {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.hero-left { display: flex; flex-direction: column; gap: 32px; padding-top: 24px; }

/* Trust Badges */
.trust-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--warm-gray); border-radius: var(--radius-full);
  padding: 8px 16px;
  font-family: 'Public Sans', sans-serif;
  font-size: 12px; font-weight: 500; color: var(--dark);
}

/* Hero Heading */
.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 67px; line-height: 1.0;
  letter-spacing: -0.02em; color: var(--dark);
}
.hero-title--accent { color: var(--accent); }
.hero-subtitle { font-size: 18px; line-height: 1.7; color: var(--body); max-width: 460px; }



/* Hero Image */
.hero-image-wrap { display: flex; justify-content: flex-end; }
.hero-image {
  width: 100%; max-width: 540px; aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden; 
  box-shadow: var(--shadow-3d);
}
.hero-image-inner { width: 100%; height: 100%; }

/* HOW IT WORKS */
.how-it-works {
  background: var(--warm-gray);
  padding: 96px 0;
}
.steps-grid {
  display: flex; align-items: flex-start; gap: 0;
  justify-content: center;
}
.step {
  flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 24px;
}
.step-number {
  width: 72px; height: 72px; border-radius: var(--radius-full);
  background: var(--white); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.step-number-inner {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px; font-weight: 800; color: var(--accent);
}
.step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px; font-weight: 700; color: var(--dark);
  margin-bottom: 12px;
}
.step-desc { font-size: 15px; line-height: 1.6; color: var(--body); }
.step-connector {
  flex: 1; height: 2px; background: var(--border);
  margin-top: 36px; position: relative;
}
.step-connector::after {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0;
  width: 0%; background: var(--color-sage-500);
  transition: width 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.step-connector.is-active::after { width: 100%; }

/* FAQ */
.faq-section { padding: 96px 0; background: var(--cream); }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 720px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px; cursor: pointer; list-style: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px; font-weight: 600; color: var(--dark);
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-icon { flex-shrink: 0; transition: transform 0.2s; }
details[open] .faq-icon { transform: rotate(180deg); }
.faq-answer {
  padding: 0 28px 24px;
  font-size: 15px; line-height: 1.7; color: var(--body);
}

/* Dark FAQ variant */
.faq-section--dark { padding: 96px 0; background: var(--soa-bg); }
.faq-columns { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 800px; margin: 0 auto; }
.faq-col { display: flex; flex-direction: column; gap: 12px; }
.faq-item--dark { background: var(--soa-card); border-color: rgba(26,30,27,0.1); }

/* REVIEWS */
.stagger-reviews-section { padding: 96px 0; background: var(--warm-gray); overflow: hidden; }
.stagger-testimonials { position: relative; width: 100%; height: 600px; display: flex; align-items: center; justify-content: center; }
.stagger-card-wrapper { position: relative; width: 100%; height: 100%; }

.stagger-card {
  position: absolute; left: 50%; top: 50%;
  width: 365px; height: 365px; cursor: pointer;
  padding: 32px; background: var(--white);
  border: 2px solid var(--border);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  clip-path: polygon(50px 0%, calc(100% - 50px) 0%, 100% 50px, 100% 100%, calc(100% - 50px) 100%, 50px 100%, 0 100%, 0 0);
  transform: translate(-50%, -50%); /* Base transform, JS overwrites this */
}

/* Center card styles */
.stagger-card.is-center {
  z-index: 10;
  background: var(--color-sage-500);
  color: var(--white);
  border-color: var(--color-sage-500);
  box-shadow: 0px 8px 0px 4px var(--border);
}
.stagger-card:not(.is-center) {
  z-index: 0;
}
.stagger-card:not(.is-center):hover {
  border-color: rgba(125,160,143,0.5);
}

.stagger-avatar {
  margin-bottom: 16px; height: 56px; width: 48px;
  background: var(--cream); object-fit: cover; object-position: top;
  box-shadow: 3px 3px 0px var(--cream);
}
.stagger-text {
  font-size: 20px; font-weight: 500; line-height: 1.5;
  color: inherit;
}
.stagger-card:not(.is-center) .stagger-text { color: var(--dark); }

.stagger-author {
  position: absolute; bottom: 32px; left: 32px; right: 32px;
  font-size: 14px; font-style: italic; opacity: 0.8;
}
.stagger-card:not(.is-center) .stagger-author { color: var(--body); }

/* The folded corner */
.stagger-fold {
  position: absolute; top: 48px; right: -2px;
  width: 70.71px; /* sqrt(5000) */
  height: 2px;
  background: var(--border);
  transform-origin: top right;
  transform: rotate(45deg);
  display: block;
}

/* Controls */
.stagger-controls {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 20;
}
.stagger-btn {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; background: var(--cream);
  border: 2px solid var(--border);
  color: var(--dark); cursor: pointer;
  transition: all 0.2s;
}
.stagger-btn:hover { background: var(--color-sage-500); color: var(--white); border-color: var(--color-sage-500); }
@media (max-width: 640px) { .stagger-card { width: 290px; height: 290px; } }
/* FOOTER */
.footer {
  padding: 48px 0;
  background: var(--warm-gray);
  border-radius: 48px 48px 0 0;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.footer-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px; font-weight: 800; color: var(--accent);
  display: block; margin-bottom: 8px;
}
.footer-logo--light { color: var(--white); }
.footer-logo--green { color: var(--vaccin-bg); }
.footer-tagline { font-size: 13px; color: var(--body); }
.footer-tagline--light { color: rgba(255,255,255,0.6); }
.footer-tagline--muted { color: rgba(238,244,240,0.6); }
.footer-links { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-link {
  font-size: 13px; color: var(--body); text-decoration: none;
  padding: 6px 12px; border-radius: var(--radius-full);
  background: rgba(44,48,46,0.06);
  transition: background 0.2s;
}
.footer-link:hover { background: var(--accent); color: var(--white); }
.footer-link--light { color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.1); }
.footer-link--light:hover { background: rgba(255,255,255,0.2); color: var(--white); }
.footer-link--muted { color: rgba(238,244,240,0.7); background: rgba(238,244,240,0.12); }
.footer-link--muted:hover { background: rgba(238,244,240,0.2); color: var(--vaccin-bg); }
.footer--dark { background: var(--soa-dark); border-radius: 0; }
.footer--green { background: var(--vaccin-dark); border-radius: 48px 48px 0 0; }

/* ══════════════════════════════════════════════
   PAGE: SOA TESTEN (soa-testen.html)
   ══════════════════════════════════════════════ */
.page-soa { background: var(--soa-bg); padding-top: 72px; }

.soa-hero {
  background: var(--soa-bg);
  padding: 80px 0 64px;
}
.soa-hero-content {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.soa-hero-left { display: flex; flex-direction: column; gap: 32px; align-items: flex-start; padding-top: 24px; }
.soa-hero-title {
  font-family: var(--font-display);
  font-weight: 800; font-size: 67px; line-height: 60px;
  letter-spacing: -0.02em; color: var(--color-ink-900);
}
.soa-hero-title--accent { color: var(--accent); }
.soa-hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.soa-hero-image {
  width: 100%; aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-lg);
}

.services-section { padding: 80px 0; background: var(--soa-bg); }
.service-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  align-items: center; /* Center them so the featured card can be taller */
}
.service-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 32px; display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 416px; /* Force exactly the same size for L & R */
  box-shadow: var(--shadow-sm);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-3d); }
.service-card--featured {
  background: var(--color-sage-500); color: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-3d);
  height: 460px; /* Force larger size */
  transform: scale(1.03) translateY(-8px);
  z-index: 2;
}
.service-card--featured:hover { transform: scale(1.03) translateY(-12px); box-shadow: var(--shadow-3d); }
.service-card-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--color-sage-500); color: var(--color-cream-white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 6px 16px; border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}
.service-card-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: flex-start;
}
.service-card-icon--teal { }
.service-card-icon--green { }
.service-card-icon--brown { }
.service-card-title {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 700; color: var(--color-ink-900); line-height: 36px;
}
.service-card--featured .service-card-title { color: var(--white); }
.service-card-desc { font-size: 16px; line-height: 28px; color: var(--color-ink-700); flex: 1; }
.service-card--featured .service-card-desc { color: rgba(255,255,255,0.85); }
.service-card-price { display: flex; flex-direction: column; gap: 2px; }
.price-label { font-size: 12px; font-weight: 500; color: var(--color-ink-700); }
.service-card--featured .price-label { color: rgba(255,255,255,0.7); }
.price-value {
  font-family: var(--font-display);
  font-size: 21.33px; font-weight: 700; color: var(--color-sage-500); line-height: 28px;
}
.service-card--featured .price-value { color: var(--white); }
.service-card-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  text-decoration: none; width: fit-content;
  transition: gap 0.2s;
}
.service-card--featured .service-card-link { color: var(--white); }
.service-card-link:hover { gap: 10px; }

/* CTA Block (Shadcn cta-4 layout) */
.cta-block { padding: 96px 48px; }
.cta-block-inner {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 48px;
  background: linear-gradient(158deg, var(--color-sage-500) 0%, var(--color-sage-600) 100%);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  max-width: 1024px; margin: 0 auto;
  box-shadow: var(--shadow-3d);
}
@media(min-width: 768px) { .cta-block-inner { flex-direction: row; padding: 64px 80px; } }
.cta-block-left { flex: 1; max-width: 100%; }
@media(min-width: 768px) { .cta-block-left { max-width: 50%; } }
.cta-block-title {
  font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--color-cream-white);
  line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 8px;
}
@media(min-width: 768px) { .cta-block-title { font-size: 38px; } }
.cta-block-desc { font-size: 16px; line-height: 1.6; color: var(--overlay-cta-text); margin-bottom: 24px; }
.cta-block-right { flex: 1; max-width: 100%; }
@media(min-width: 768px) { .cta-block-right { max-width: 33%; } }
.cta-block-list { display: flex; flex-direction: column; gap: 12px; list-style: none; padding: 0; margin: 0; }
.cta-block-item { display: flex; align-items: center; gap: 16px; font-size: 15px; font-weight: 500; color: var(--color-cream-white); }
.cta-block-item i { color: var(--color-cream-white); opacity: 0.9; flex-shrink: 0; }

/* ══════════════════════════════════════════════
   PAGE: VACCINATIES (vaccinaties.html)
   ══════════════════════════════════════════════ */
.page-vaccin { background: var(--vaccin-bg); padding-top: 72px; }

.vaccin-hero {
  background: var(--vaccin-bg); padding: 56px 0 64px;
  display: flex; align-items: flex-start;
}
.vaccin-hero-content {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.vaccin-hero-left { display: flex; flex-direction: column; gap: 32px; align-items: flex-start; padding-top: 24px; }
.vaccin-hero-title {
  font-family: var(--font-display);
  font-weight: 800; font-size: 67px; line-height: 60px;
  letter-spacing: -0.02em; color: var(--color-ink-900);
}
.vaccin-hero-title--italic { font-style: italic; color: var(--color-sage-500); }
.vaccin-hero-subtitle { font-size: 21px; line-height: 28px; color: var(--color-ink-700); max-width: 440px; }
.vaccin-hero-image {
  width: 100%; aspect-ratio: 4/5; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-lg);
}

/* Gallery6 Component */
.gallery-section { padding: 96px 0; background: var(--warm-gray); overflow: hidden; }
.gallery-container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.gallery-header { display: flex; flex-direction: column; justify-content: space-between; margin-bottom: 32px; gap: 24px; }
@media (min-width: 768px) { .gallery-header { flex-direction: row; align-items: flex-end; margin-bottom: 48px; } }
.gallery-title { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.gallery-subtitle { font-size: 16px; color: var(--body); margin-bottom: 16px; max-width: 480px; }
.gallery-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 16px; color: var(--accent-dark); text-decoration: none; transition: opacity 0.3s; }
.gallery-link:hover { opacity: 0.8; }
.gallery-link i { transition: transform 0.3s; }
.gallery-link:hover i { transform: translate(4px, -4px); }

.gallery-nav { display: flex; gap: 8px; }
.gallery-btn { 
  display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; 
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); 
  cursor: pointer; transition: background 0.3s, color 0.3s; color: var(--dark); 
}
.gallery-btn:hover:not(:disabled) { background: var(--cream); }
.gallery-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.gallery-carousel-wrapper { width: 100%; position: relative; }
.gallery-carousel {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; 
  padding: 0 48px 48px; scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  max-width: 1200px; margin: 0 auto;
}
@media (min-width: 1200px) {
  .gallery-carousel { padding: 0; overflow: visible; }
}
.gallery-carousel::-webkit-scrollbar { display: none; } /* Chrome */
.gallery-card {
  flex: 0 0 calc(85vw); max-width: 450px; scroll-snap-align: start;
  text-decoration: none; display: flex; flex-direction: column; gap: 16px;
}
@media (min-width: 768px) { .gallery-card { flex: 0 0 400px; } }

.gallery-img-wrapper { aspect-ratio: 3/2; overflow: hidden; border-radius: var(--radius-xl); background: var(--border); }
.gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); transform-origin: bottom; }
.gallery-card:hover .gallery-img { transform: scale(1.05); }

.gallery-card-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--dark); }
.gallery-card-desc { font-size: 15px; color: var(--body); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gallery-readmore { display: inline-flex; align-items: center; font-size: 15px; font-weight: 600; color: var(--dark); margin-top: 8px; }
.gallery-readmore i { margin-left: 8px; transition: transform 0.3s; }
.gallery-card:hover .gallery-readmore i { transform: translateX(6px); }

/* Process Section */
.vaccin-process { padding: 80px 0; }
.vaccin-process-inner {
  background: transparent;
  padding: 0;
  max-width: 1100px; margin: 0 auto;
}
.vaccin-process-header { margin-bottom: 48px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.vaccin-steps { display: flex; align-items: flex-start; gap: 0; }
.vaccin-step { flex: 1; display: flex; flex-direction: column; gap: 16px; padding: 0 24px; }
.vaccin-step-icon { display: flex; justify-content: center; }
.vaccin-step-circle {
  width: 48px; height: 48px;
  background: var(--white); border-radius: var(--radius-full);
  box-shadow: var(--shadow-md); border: 1px solid rgba(44, 48, 46, 0.08);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}
.vaccin-step-content { text-align: center; }
.vaccin-step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--vaccin-dark);
  margin-bottom: 8px;
}
.vaccin-step-desc { font-size: 14px; line-height: 1.6; color: var(--body); }
.vaccin-step-line {
  width: 60px; height: 2px; background: var(--border);
  flex-shrink: 0; margin-top: 32px; position: relative;
}
.vaccin-step-line::after {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0;
  width: 0%; background: var(--color-sage-500);
  transition: width 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.vaccin-step-line.is-active::after { width: 100%; }

/* Vaccin CTA */
.vaccin-cta { padding: 80px 0; }
.vaccin-cta-inner {
  background: var(--vaccin-dark); border-radius: var(--radius-lg);
  padding: 64px; display: flex; align-items: center; justify-content: space-between; gap: 48px;
  flex-wrap: wrap; box-shadow: var(--shadow-3d);
}
.vaccin-cta-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px; font-weight: 800; color: var(--vaccin-bg);
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.vaccin-cta-desc { font-size: 16px; color: rgba(238,244,240,0.7); max-width: 400px; }

/* ── ANIMATIONS ──────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeUp 0.6s cubic-bezier(0.22,1,0.36,1) both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
