/* ================================================
   PURE HIJAMA – Stylesheet
   ================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --green:        #7a9e7e;
  --green-dark:   #5a7d5e;
  --green-light:  #a8c5ab;
  --green-pale:   #e8f0e9;
  --cream:        #f5f0e8;
  --cream-dark:   #ede5d5;
  --gold:         #b8975a;
  --text:         #3a3a3a;
  --text-light:   #7a7a7a;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --radius-pill:  50px;
  --radius-card:  16px;
  --shadow-card:  0 4px 24px rgba(90,125,94,.10);
  --shadow-hover: 0 8px 36px rgba(90,125,94,.18);
  --transition:   .25s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography helpers ---- */
.display { font-family: var(--font-display); }

h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.2; }

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p { font-family: var(--font-body); }

.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .5rem;
}

.section-title { margin-bottom: .75rem; }

.section-sub {
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}

.text-center { text-align: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .7rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
}
.btn-primary:hover { background: var(--green); border-color: var(--green); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(90,125,94,.3); }

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline:hover { background: var(--green-dark); color: #fff; transform: translateY(-1px); }

.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover { background: #a07a3e; border-color: #a07a3e; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(184,151,90,.35); }

.btn-white {
  background: #fff;
  color: var(--green-dark);
  border-color: #fff;
}
.btn-white:hover { background: var(--cream); }

.btn-lg { padding: .9rem 2.2rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.2rem; font-size: .82rem; }

/* ---- Navbar ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.navbar.scrolled {
  border-bottom-color: var(--green-pale);
  box-shadow: 0 2px 16px rgba(90,125,94,.1);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  flex-shrink: 0;
}

.nav-logo svg { width: 32px; height: 32px; }

.nav-logo span em { font-style: italic; color: var(--green-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--green-dark); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: .75rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-top: 1px solid var(--green-pale);
  padding: 1rem 1.5rem;
}

.mobile-menu.open { display: flex; }
.mobile-menu a { padding: .65rem 0; font-size: .95rem; border-bottom: 1px solid var(--green-pale); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { margin-top: .75rem; justify-content: center; }

/* ---- Container ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Section spacing ---- */
section { padding: 5rem 0; }
section.compact { padding: 3rem 0; }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: var(--cream);
  overflow: hidden;
  padding: 5rem 0 4rem;
}

.hero-blob {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--green-light) 0%, transparent 70%);
  opacity: .25;
  border-radius: 50%;
  filter: blur(60px);
  top: -100px; right: -100px;
  pointer-events: none;
}

.hero-blob-2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: .1;
  border-radius: 50%;
  filter: blur(80px);
  bottom: -80px; left: 0;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  border: 1px solid var(--green-light);
  border-radius: var(--radius-pill);
  padding: .35rem 1rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-title em { font-style: italic; color: var(--green-dark); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 440px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-trust-item {
  font-size: .82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: .3rem;
}

.hero-trust-item strong { color: var(--text); font-weight: 600; }

.hero-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 180px;
  gap: .75rem;
}

.hero-photo {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo:first-child { grid-row: 1 / 3; }

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--green-dark);
  color: #fff;
  padding: 1.5rem 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.trust-item strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}

.trust-item span { font-size: .78rem; opacity: .85; letter-spacing: .04em; }

/* ---- Cards grid ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--green-light); }

.card-icon {
  width: 48px; height: 48px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.card.featured { border-color: var(--gold); background: linear-gradient(135deg, #fff 0%, #fdf8f0 100%); }
.card.featured .card-icon { background: #fdf0da; }

.card-title { font-size: 1.15rem; margin-bottom: .5rem; }
.card-text  { font-size: .88rem; color: var(--text-light); margin-bottom: 1rem; line-height: 1.55; }

.card-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-dark);
}

.card-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 4px;
  margin-bottom: .75rem;
}

/* ---- Promo Banner ---- */
.promo-banner {
  background: linear-gradient(135deg, var(--green-pale), var(--cream-dark));
  border: 2px dashed var(--gold);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.promo-left { flex: 1; min-width: 240px; }
.promo-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .8rem;
  border-radius: var(--radius-pill);
  margin-bottom: .75rem;
}

.promo-title { font-size: 1.5rem; margin-bottom: .5rem; }
.promo-items { list-style: none; margin: .75rem 0; }
.promo-items li { font-size: .88rem; color: var(--text-light); padding: .2rem 0; }
.promo-items li::before { content: '✓ '; color: var(--green); font-weight: 700; }

.promo-right { text-align: center; flex-shrink: 0; }
.promo-price-old { font-size: .9rem; color: var(--text-light); text-decoration: line-through; }
.promo-price-new { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; }
.promo-price-new small { font-size: 1.2rem; }

/* ---- Reviews ---- */
.review-card {
  background: #fff;
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

.review-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}

.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-dark);
  flex-shrink: 0;
}

.review-meta { flex: 1; }
.review-name { font-weight: 600; font-size: .9rem; }
.review-date { font-size: .75rem; color: var(--text-light); }

.stars { color: #f5a623; font-size: .9rem; letter-spacing: .05em; }

.review-text { font-size: .88rem; color: var(--text-light); line-height: 1.6; font-style: italic; }

/* ---- Rating summary ---- */
.rating-summary {
  background: var(--green-pale);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.rating-big {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}

.rating-stars { font-size: 1.5rem; margin: .5rem 0; }
.rating-count { font-size: .88rem; color: var(--text-light); }

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  text-align: center;
  padding: 5rem 0;
}

.cta-section h2 { color: #fff; margin-bottom: .75rem; }
.cta-section p  { color: rgba(255,255,255,.8); margin-bottom: 2rem; }

.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- Footer ---- */
.footer {
  background: #2a3d2c;
  color: rgba(255,255,255,.8);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .nav-logo { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: .85rem; line-height: 1.6; opacity: .7; max-width: 240px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1rem;
}

.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul a { font-size: .85rem; opacity: .7; transition: opacity var(--transition); }
.footer-col ul a:hover { opacity: 1; }
.footer-col p { font-size: .85rem; opacity: .7; margin-bottom: .4rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem;
  opacity: .5;
}

/* ---- Form ---- */
.form-section {
  background: var(--cream);
  min-height: calc(100vh - 68px);
  padding: 4rem 0;
}

.form-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 48px rgba(90,125,94,.12);
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
}

.form-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  padding: 2.5rem;
  text-align: center;
}

.form-header h1 { color: #fff; font-size: 1.8rem; margin-bottom: .4rem; }
.form-header p  { opacity: .85; font-size: .9rem; }

/* Step indicator */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 2rem;
  gap: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--green-pale);
  overflow-x: auto;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  min-width: 80px;
  position: relative;
  z-index: 1;
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 16px;
  left: calc(50% + 16px);
  width: calc(100% - 32px);
  height: 2px;
  background: var(--green-pale);
  z-index: 0;
}

.step-item.done::after,
.step-item.active::after { background: var(--green-light); }

.step-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 600;
  transition: all var(--transition);
  position: relative;
  z-index: 2;
}

.step-item.active .step-dot { background: var(--green-dark); color: #fff; }
.step-item.done .step-dot   { background: var(--green-light); color: var(--green-dark); }

.step-label {
  font-size: .7rem;
  color: var(--text-light);
  text-align: center;
  max-width: 70px;
  line-height: 1.2;
}

.step-item.active .step-label { color: var(--green-dark); font-weight: 600; }

/* Form body */
.form-body { padding: 2rem 2.5rem 2.5rem; }

.form-step { display: none; animation: fadeUp .35s ease; }
.form-step.active { display: block; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(122,158,126,.12); }

.form-group textarea { resize: vertical; min-height: 90px; }

.form-group .required-star { color: var(--gold); }

/* Checkbox cards */
.checkbox-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .75rem;
}

.checkbox-card input { display: none; }

.checkbox-card label {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: .9rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition);
  background: #fff;
}

.checkbox-card label:hover { border-color: var(--green-light); background: var(--green-pale); }
.checkbox-card input:checked + label { border-color: var(--green); background: var(--green-pale); }

.checkbox-card .cb-title { font-size: .88rem; font-weight: 600; }
.checkbox-card .cb-desc  { font-size: .75rem; color: var(--text-light); line-height: 1.3; }

.checkbox-card input:checked + label .cb-title { color: var(--green-dark); }

/* Radio group */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.radio-pill input { display: none; }

.radio-pill label {
  display: inline-flex;
  padding: .5rem 1.1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-pill);
  font-size: .85rem;
  cursor: pointer;
  transition: all var(--transition);
}

.radio-pill label:hover { border-color: var(--green-light); }
.radio-pill input:checked + label { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }

/* Form nav */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--green-pale);
}

.form-step-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--green-pale);
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success.show { display: block; }
.form-success .success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.form-success h2 { margin-bottom: .75rem; }
.form-success p { color: var(--text-light); margin-bottom: 1.5rem; }

/* ---- Cyclus Kalender ---- */
.kalender-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  text-align: center;
  padding: 3.5rem 0 2.5rem;
}

.kalender-hero h1 { color: #fff; margin-bottom: .5rem; }
.kalender-hero p  { opacity: .85; font-size: 1rem; }

.kalender-invoer {
  background: var(--cream);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.invoer-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  align-items: end;
  max-width: 900px;
  margin: 0 auto;
}

.invoer-card .form-group { margin-bottom: 0; }

/* Legend */
.legenda-balk {
  background: #fff;
  border-bottom: 1px solid var(--green-pale);
  padding: 1rem 0;
}

.legenda-inner {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  align-items: center;
  justify-content: center;
}

.legenda-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: var(--text-light);
}

.legenda-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legenda-dot.menstruatie { background: #f9c0d0; }
.legenda-dot.vruchtbaar  { background: var(--green-light); }
.legenda-dot.ovulatie    { background: var(--green-dark); }
.legenda-dot.hijama      { background: #fff; border: 2.5px solid #8e44ad; }
.legenda-dot.fertiliteit { background: #fff; border: 2.5px solid var(--gold); }
.legenda-dot.vandaag     { background: #fff; border: 2.5px solid var(--green-dark); }

/* Info blokken */
.cyclus-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.info-blok {
  background: #fff;
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.info-blok .info-icon { font-size: 1.5rem; margin-bottom: .4rem; }
.info-blok .info-label { font-size: .72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .25rem; }
.info-blok .info-value { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--green-dark); }
.info-blok .info-sub   { font-size: .75rem; color: var(--text-light); margin-top: .15rem; }

/* Kalender maand */
.kalender-wrap {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--green-pale);
  overflow: hidden;
  margin-bottom: 2rem;
}

.kalender-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--green-pale);
  border-bottom: 1px solid var(--green-light);
}

.kalender-nav h3 { font-size: 1.1rem; }
.kalender-nav button {
  background: #fff;
  border: 1px solid var(--green-light);
  border-radius: 8px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--green-dark);
  transition: all var(--transition);
}
.kalender-nav button:hover { background: var(--green-dark); color: #fff; }

.dag-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--green-pale);
  padding: .5rem .5rem 0;
}

.dag-header span {
  text-align: center;
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .3rem 0 .5rem;
}

.dag-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .3rem;
  padding: .5rem;
}

.dag-cel {
  aspect-ratio: 1;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 500;
  cursor: default;
  position: relative;
  transition: all var(--transition);
  min-height: 44px;
}

.dag-cel.leeg { cursor: default; }

.dag-cel.menstruatie { background: #fce8ef; color: #c0506a; }
.dag-cel.vruchtbaar  { background: #d8eeda; color: var(--green-dark); }
.dag-cel.ovulatie    { background: var(--green-dark); color: #fff; box-shadow: 0 3px 12px rgba(90,125,94,.35); }
.dag-cel.hijama-aanbevolen { border: 2.5px solid #8e44ad; }
.dag-cel.fertiliteit-aanbevolen { border: 2.5px solid var(--gold); }
.dag-cel.vandaag { outline: 2.5px solid var(--green); outline-offset: 2px; }

.dag-cel .dag-nr { font-size: .85rem; font-weight: 600; line-height: 1; }
.dag-cel .dag-label { font-size: .55rem; opacity: .7; text-align: center; line-height: 1.1; margin-top: .1rem; }

/* Tooltip */
.dag-cel[data-tip] { cursor: pointer; }
.dag-cel[data-tip]:hover::before {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: #fff;
  font-size: .7rem;
  padding: .3rem .6rem;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 10;
  pointer-events: none;
}

/* Advies box */
.advies-box {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.advies-box h3 { font-size: 1.1rem; margin-bottom: 1rem; }

.advies-list { list-style: none; }
.advies-list li { padding: .5rem 0; font-size: .88rem; border-bottom: 1px solid var(--cream-dark); }
.advies-list li:last-child { border-bottom: none; }

.disclaimer {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: .8rem;
  color: #7a6000;
  margin-bottom: 2rem;
}

/* ---- Informatie pagina ---- */
.info-hero {
  background: var(--cream);
  padding: 4rem 0;
  text-align: center;
}

.info-section {
  padding: 4rem 0;
}

.info-section:nth-child(even) { background: var(--cream); }

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.info-grid.reverse { direction: rtl; }
.info-grid.reverse > * { direction: ltr; }

.info-img {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  height: 360px;
}

.info-img img { width: 100%; height: 100%; object-fit: cover; }

.info-content h2 { margin-bottom: 1rem; }
.info-content p  { color: var(--text-light); margin-bottom: 1rem; line-height: 1.7; }

.info-bullets { list-style: none; margin: 1rem 0; }
.info-bullets li {
  padding: .4rem 0 .4rem 1.5rem;
  position: relative;
  font-size: .9rem;
  color: var(--text-light);
}
.info-bullets li::before { content: '•'; position: absolute; left: 0; color: var(--green); font-weight: 700; font-size: 1.2rem; line-height: 1.2; }

/* Therapeute */
.therapeute-card {
  background: var(--green-pale);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.therapeute-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--green-dark);
  flex-shrink: 0;
  font-weight: 600;
}

.therapeute-info { flex: 1; }
.therapeute-info h3 { margin-bottom: .25rem; }
.therapeute-info .title { color: var(--green); font-size: .88rem; margin-bottom: .75rem; }
.therapeute-info p { color: var(--text-light); font-size: .9rem; line-height: 1.7; }

/* ---- Diensten ---- */
.dienst-card {
  background: #fff;
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.dienst-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.dienst-img {
  height: 200px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  overflow: hidden;
}

.dienst-img img { width: 100%; height: 100%; object-fit: cover; }

.dienst-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dienst-body h3 { margin-bottom: .5rem; }
.dienst-body p  { color: var(--text-light); font-size: .88rem; line-height: 1.6; margin-bottom: 1rem; flex: 1; }

.dienst-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--green-pale);
}

/* ---- Hero photo fit (alias) ---- */
.hig-item img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  display: block;
}

/* ---- Dienst card animated icon header ---- */
.dienst-card-header {
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 0;
  flex-shrink: 0;
}

.dienst-icon-groot {
  font-size: 4rem;
  display: inline-block;
  animation: floatIcon 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.10));
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-10px) rotate(3deg); }
}

.dienst-card:nth-child(1) .dienst-icon-groot { animation-delay: 0s; }
.dienst-card:nth-child(2) .dienst-icon-groot { animation-delay: 0.4s; }
.dienst-card:nth-child(3) .dienst-icon-groot { animation-delay: 0.8s; }
.dienst-card:nth-child(4) .dienst-icon-groot { animation-delay: 1.2s; }
.dienst-card:nth-child(5) .dienst-icon-groot { animation-delay: 1.6s; }
.dienst-card:nth-child(6) .dienst-icon-groot { animation-delay: 2.0s; }
.dienst-card:nth-child(7) .dienst-icon-groot { animation-delay: 2.4s; }

/* ---- Card icon float animation (index.html preview) ---- */
.card-icon {
  animation: floatIcon 3s ease-in-out infinite;
}

.card:nth-child(1) .card-icon { animation-delay: 0s; }
.card:nth-child(2) .card-icon { animation-delay: 0.4s; }
.card:nth-child(3) .card-icon { animation-delay: 0.8s; }
.card:nth-child(4) .card-icon { animation-delay: 1.2s; }
.card:nth-child(5) .card-icon { animation-delay: 1.6s; }
.card:nth-child(6) .card-icon { animation-delay: 2.0s; }

.dienst-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green-dark);
}

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---- Page header ---- */
.page-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}

.page-header h1 { color: #fff; margin-bottom: .5rem; }
.page-header p  { opacity: .85; max-width: 500px; margin: 0 auto; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .nav-links, .nav-actions .btn { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-photos { grid-template-rows: 200px 160px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .info-grid { grid-template-columns: 1fr; }
  .info-grid.reverse { direction: ltr; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 3.5rem 0; }

  .hero { padding: 3rem 0 2.5rem; }
  .hero-photos { display: none; }
  .hero-title { font-size: 2.4rem; }

  .trust-bar-inner { gap: .75rem; }
  .trust-item strong { font-size: 1.4rem; }

  .promo-banner { flex-direction: column; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .form-body { padding: 1.5rem; }
  .step-indicator { padding: 1.25rem 1rem; gap: 0; }
  .step-label { display: none; }

  .checkbox-cards { grid-template-columns: 1fr; }

  .dag-cel { font-size: .7rem; min-height: 36px; }
  .dag-cel .dag-label { display: none; }

  .kalender-hero h1 { font-size: 1.8rem; }

  .invoer-card { grid-template-columns: 1fr; }

  .cyclus-info-grid { grid-template-columns: 1fr 1fr; }

  .therapeute-card { flex-direction: column; align-items: center; text-align: center; }

  .rating-big { font-size: 3.5rem; }
}
