/* ═══════════════════════════════════════════
   Carte Blanche Zorg – Premium Design Layer
   Voegt goud-accenten toe bovenop het basisdesign
   ═══════════════════════════════════════════ */

/* ── Extra Google Font ────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ── Design tokens ────────────────────────── */
:root {
  --gold:       #C9A86C;
  --gold-light: #E8D5B0;
  --gold-pale:  #FBF6ED;
  --gold-dark:  #9A7A3E;
  --shadow-gold: 0 6px 32px rgba(201,168,108,0.22);
}

/* ── Serif headings ──────────────────────── */
h1, h2 { font-family: 'Playfair Display', Georgia, serif !important; }

/* ── Eyebrow label: goud ─────────────────── */
.eyebrow {
  color: var(--gold-dark) !important;
  background: var(--gold-pale) !important;
  border-color: var(--gold-light) !important;
}

/* ── Goud knop ───────────────────────────── */
.btn-gold {
  background: var(--gold);
  color: #fff;
  border: 2px solid var(--gold);
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.85rem; border-radius: 50px;
  font-size: .92rem; font-weight: 600; cursor: pointer;
  transition: all .22s; white-space: nowrap; text-decoration: none;
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* Nav CTA → goud */
.nav__cta { background: var(--gold) !important; border-color: var(--gold) !important; color: #fff !important; }
.nav__cta:hover { background: var(--gold-dark) !important; }
.nav__brand-sub { color: var(--gold-dark) !important; font-weight: 500; }

/* ── Hero ────────────────────────────────── */
.hero {
  background: linear-gradient(145deg, #2A0845 0%, #4B1878 45%, #3D1060 100%) !important;
}
.hero__badge {
  background: rgba(201,168,108,.15) !important;
  border-color: rgba(201,168,108,.35) !important;
  color: var(--gold-light) !important;
}
.hero__badge::before { content: '✦ '; font-size: .6rem; }
.hero__title span { color: var(--gold-light) !important; font-style: italic; }
.hero__trust-icon { color: var(--gold) !important; }
.hero__image-card { border-left: 3px solid var(--gold); }

/* ── Stats ───────────────────────────────── */
.stats { background: linear-gradient(90deg, #1C0B2E, #4B1878) !important; }
.stat__value { font-family: 'Playfair Display', Georgia, serif !important; color: var(--gold-light) !important; }

/* ── Cards hover: goud ───────────────────── */
.service-card:hover, .treatment-item:hover, .regio-card:hover, .testimonial:hover {
  border-color: var(--gold-light) !important;
  box-shadow: var(--shadow-gold) !important;
}

/* ── Service iconen ──────────────────────── */
.service-card__icon {
  background: var(--gold-pale) !important;
  border: 1px solid var(--gold-light);
}
.service-card__link { color: var(--gold-dark) !important; }
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0; transition: opacity .22s;
}
.service-card { position: relative; overflow: hidden; }
.service-card:hover::before { opacity: 1; }

/* ── Behandeling nummers ─────────────────── */
.treatment-item__num {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: #fff !important;
}

/* ── Tarieven ────────────────────────────── */
.tarieven__table {
  border-color: var(--gold-light) !important;
  box-shadow: var(--shadow-gold) !important;
}
.tarief-row--header {
  background: linear-gradient(135deg, #4B1878, #3D1060) !important;
}
.tarief-row--header .tarief-name,
.tarief-row--header .tarief-price,
.tarief-row--header span { color: var(--gold-light) !important; }
.tarief-price { font-family: 'Playfair Display', Georgia, serif !important; }
.tarieven__payment {
  background: var(--gold-pale) !important;
  border-color: var(--gold-light) !important;
}
.tarieven__payment-text h4 { color: var(--gold-dark) !important; }
.tarieven__payment-text p, .payment-box p { color: #6B5A2A !important; }
.payment-box { background: var(--gold-pale) !important; border-color: var(--gold-light) !important; }
.payment-box h3 { color: var(--gold-dark) !important; }
.org-box { border-color: var(--gold-light) !important; }

/* ── Why, about checks ───────────────────── */
.why-item__icon, .about__check-icon {
  background: var(--gold-pale) !important;
  color: var(--gold-dark) !important;
  border: 1px solid var(--gold-light);
}

/* ── Samenwerking checkmarks ─────────────── */
.samenwerking-item::before {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
}

/* ── Contact iconen ──────────────────────── */
.contact-detail__icon, .contact__icon {
  background: var(--gold-pale) !important;
  color: var(--gold-dark) !important;
  border: 1px solid var(--gold-light);
}

/* ── Regio pinnen ────────────────────────── */
.regio-card__pin {
  background: var(--gold-pale) !important;
  color: var(--gold-dark) !important;
  border: 1px solid var(--gold-light);
}

/* ── Testimonials ────────────────────────── */
.testimonial::before { color: var(--gold-light) !important; }
.testimonial__stars { color: var(--gold) !important; }
.testimonial__role { color: var(--gold-dark) !important; font-weight: 500; }

/* ── Form focus: goud ────────────────────── */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201,168,108,.15) !important;
}
.form-success { background: var(--gold-pale) !important; border-color: var(--gold-light) !important; }
.form-success p { color: var(--gold-dark) !important; }

/* ── Social hover ────────────────────────── */
.social-btn:hover { background: var(--gold) !important; color: #fff !important; }

/* ── Cookie banner ───────────────────────── */
.cookie-accept { background: var(--gold) !important; }
.cookie-banner { border: 1px solid rgba(201,168,108,.2); }
.cookie-banner a { color: var(--gold-light) !important; }

/* ── CTA band ────────────────────────────── */
.cta-band {
  background: linear-gradient(145deg, #1C0B2E 0%, #4B1878 60%, #3D1060 100%) !important;
}

/* ── Footer ──────────────────────────────── */
.footer { background: #140820 !important; }
.footer__heading { color: var(--gold) !important; opacity: .85; }
.footer__logo { height: 80px !important; width: auto !important; }
.footer__links a:hover, .footer__contact-item a:hover { color: var(--gold-light) !important; }
.footer__bottom { border-top-color: rgba(201,168,108,.15) !important; }
.footer__legal a:hover { color: rgba(255,255,255,.7) !important; }

/* ── Gouden accentlijn ───────────────────── */
.gold-line {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px; margin: 1rem 0 1.5rem;
}
.gold-line--center { margin-left: auto; margin-right: auto; }

/* ── Info kaarten ────────────────────────── */
.section-block { border-color: var(--border); }
.section-block h2 { color: #4B1878 !important; }
.section-block h2::before { background: var(--gold-pale) !important; color: var(--gold-dark) !important; }
.alert { background: var(--gold-pale) !important; border-color: var(--gold-light) !important; }
.alert p, .alert strong { color: var(--gold-dark) !important; }
.date-box { background: var(--gold-pale) !important; }
.date-box strong { color: var(--gold-dark) !important; }
.highlight-box, .info-box { background: var(--gold-pale) !important; border-color: var(--gold-light) !important; }

/* ── Breadcrumb nav ──────────────────────── */
.nav__back { color: var(--gold-dark) !important; }

/* ── Page hero ───────────────────────────── */
.page-hero, .hero.hero--sub {
  background: linear-gradient(145deg, #2A0845 0%, #4B1878 50%, #3D1060 100%) !important;
}

/* ── Afspraken stappen ───────────────────── */
.step-num, .step__num {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: #fff !important;
}

/* ── Sectie outline afbeeldingen ─────────── */
.treatments__image, .why__image, .samenwerking__image {
  outline: 1px solid var(--gold-light);
  outline-offset: 8px;
}
.about__img-accent {
  outline: 1px solid var(--gold-light);
}

/* ── Scroll-to-top button ────────────────────────── */
#scroll-top { outline: none; }
#scroll-top:focus-visible {
  box-shadow: 0 0 0 3px rgba(201,168,108,.5) !important;
}
@media (max-width: 768px) {
  #scroll-top { bottom: 1rem !important; left: 1rem !important; right: auto !important; width: 40px !important; height: 40px !important; }
}

/* ── Premium nav upgrade (subpages) ─────────────── */
.nav__brand-sub { color: var(--gold-dark) !important; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }
.nav .btn-gold, .nav .btn-primary {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #fff !important;
}
.nav .btn-gold:hover, .nav .btn-primary:hover {
  background: var(--gold-dark) !important;
  border-color: var(--gold-dark) !important;
}

/* ── Premium subpage hero upgrade ────────────────── */
.hero { background: linear-gradient(145deg, #2A0845 0%, #4B1878 50%, #3D1060 100%) !important; }
.hero h1 { font-family: 'Playfair Display', Georgia, serif !important; }

/* ── Footer premium (subpages) ───────────────────── */
.footer-premium {
  background: #140820;
  color: rgba(255,255,255,.55);
  padding: 2.5rem 0;
  font-size: .875rem;
}
.footer-premium__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-premium__copy { display: flex; flex-direction: column; gap: .25rem; }
.footer-premium__copy span { color: rgba(255,255,255,.55); }
.footer-premium__credit { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-premium__credit a { color: rgba(201,168,108,.7); transition: color .15s; }
.footer-premium__credit a:hover { color: var(--gold-light); }
.footer-premium__legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-premium__legal a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .15s; }
.footer-premium__legal a:hover { color: rgba(255,255,255,.85); }
@media (max-width: 640px) {
  .footer-premium__inner { flex-direction: column; text-align: center; }
  .footer-premium__legal { justify-content: center; }
}

/* Logo groter */
.nav__logo img { height: 72px !important; width: auto !important; }
@media (max-width: 640px) { .nav__logo img { height: 60px !important; } }

/* ═══════════════════════════════════════════
   Sitewide uitbreiding: navigatie, footer,
   galerij, reviews, WhatsApp
   ═══════════════════════════════════════════ */

/* ── Uniforme navigatie ───────────────────── */
.nav__links { gap: 1.15rem !important; }
.nav__links a { font-size: .85rem !important; white-space: nowrap; }
.nav__links a.active { color: #6B2D9E !important; font-weight: 600; }
.nav__toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: .5rem; color: #4B1878; align-items: center;
}
@media (max-width: 1100px) {
  .nav__links { display: none !important; }
  .nav__cta { display: none !important; }
  .nav__toggle { display: flex !important; }
}
.nav__mobile {
  display: none; list-style: none; background: #fff;
  border-top: 1px solid #EAE4F2; padding: 1.25rem 1.5rem;
  flex-direction: column; gap: .85rem;
  max-width: 1160px; margin: 0 auto;
}
.nav__mobile.open { display: flex !important; }
.nav__mobile li { list-style: none; }
.nav__mobile a {
  font-size: 1rem; font-weight: 500; color: #1C1B2E;
  padding: .45rem 0; border-bottom: 1px solid #EAE4F2; display: block;
}
.nav__mobile a.active { color: #6B2D9E; font-weight: 600; }
.nav__mobile a.btn, .nav__mobile .btn {
  display: inline-flex; align-self: flex-start; margin-top: .5rem;
  color: #fff; border-bottom: none;
}

/* ── WhatsApp knop ────────────────────────── */
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.85rem; border-radius: 50px;
  font-size: .92rem; font-weight: 600; cursor: pointer;
  background: #25D366; color: #fff !important; border: 2px solid #25D366;
  transition: all .22s; white-space: nowrap; text-decoration: none;
}
.btn-whatsapp:hover { background: #1DA851; border-color: #1DA851; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,.3); }
.btn-whatsapp svg { flex-shrink: 0; }

/* ── Gedeelde premium footer ──────────────── */
.cbz-footer { background: #140820; color: rgba(255,255,255,.7); padding: 4rem 0 0; font-size: .875rem; }
.cbz-footer .container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.cbz-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem; }
.cbz-footer__logo { height: 84px; width: auto; margin-bottom: 1rem; display: block; }
.cbz-footer__tagline { color: rgba(255,255,255,.55); max-width: 300px; line-height: 1.7; margin-bottom: .75rem; }
.cbz-footer__area { color: rgba(201,168,108,.75); font-size: .82rem; margin-bottom: 1.25rem; }
.cbz-footer__heading { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); opacity: .85; margin-bottom: 1.1rem; }
.cbz-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .6rem; }
.cbz-footer ul a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .15s; }
.cbz-footer ul a:hover { color: var(--gold-light); }
.cbz-footer__contact li { display: flex; align-items: flex-start; gap: .5rem; }
.cbz-footer__socials { display: flex; gap: .75rem; }
.cbz-footer__socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.65);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; text-decoration: none;
}
.cbz-footer__socials a:hover { background: var(--gold); color: #fff; }
.cbz-footer__bottom {
  border-top: 1px solid rgba(201,168,108,.15);
  margin-top: 3rem; padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: .78rem; color: rgba(255,255,255,.4);
}
.cbz-footer__bottom a { color: rgba(201,168,108,.7); text-decoration: none; transition: color .15s; }
.cbz-footer__bottom a:hover { color: var(--gold-light); }
.cbz-footer__legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.cbz-footer__legal a { color: rgba(255,255,255,.5); }
.cbz-footer__legal a:hover { color: rgba(255,255,255,.85); }
.cbz-footer__kvk {
  text-align: center; font-size: .72rem; color: rgba(255,255,255,.3);
  padding: .75rem 0 1.5rem; border-top: 1px solid rgba(255,255,255,.07);
}
@media (max-width: 860px) { .cbz-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px) { .cbz-footer__grid { grid-template-columns: 1fr; } .cbz-footer__bottom { flex-direction: column; text-align: center; } .cbz-footer__legal { justify-content: center; } }

/* ── Fotogalerij ──────────────────────────── */
.galerij__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.galerij__item { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; position: relative; box-shadow: 0 4px 16px rgba(75,24,120,.1); }
.galerij__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; display: block; }
.galerij__item:hover img { transform: scale(1.04); }
.galerij__item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(20,8,32,.75));
  color: #fff; font-size: .78rem; padding: 1.5rem 1rem .75rem;
}
@media (max-width: 768px) { .galerij__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .galerij__grid { grid-template-columns: 1fr; } }

/* ── Reviews ──────────────────────────────── */
.review-card {
  background: #fff; border: 1px solid #EAE4F2; border-radius: 24px;
  padding: 2rem; position: relative; transition: box-shadow .22s, border-color .22s;
}
.review-card:hover { border-color: var(--gold-light); box-shadow: var(--shadow-gold); }
.review-card__stars { color: var(--gold); font-size: 1rem; letter-spacing: .1em; margin-bottom: .85rem; }
.review-card__text { font-size: .925rem; color: #4A4568; margin-bottom: 1.25rem; font-style: italic; line-height: 1.75; }
.review-card__author { font-weight: 700; font-size: .875rem; color: #1C1B2E; }
.review-card__meta { font-size: .78rem; color: var(--gold-dark); font-weight: 500; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.review-notice {
  background: var(--gold-pale); border: 1px solid var(--gold-light);
  border-radius: 12px; padding: 1rem 1.5rem; font-size: .875rem; color: #6B5A2A;
}
.star-select { display: flex; gap: .35rem; flex-direction: row-reverse; justify-content: flex-end; }
.star-select input { display: none; }
.star-select label {
  font-size: 1.6rem; color: #DDD0EF; cursor: pointer; transition: color .15s;
  display: inline-block !important; margin: 0 !important;
}
.star-select label:hover, .star-select label:hover ~ label,
.star-select input:checked ~ label { color: var(--gold); }

/* ── Veiligheidsmelding (medisch) ─────────── */
.safety-note {
  background: #FFF8E1; border: 1px solid #F0DFA8; border-left: 4px solid var(--gold);
  border-radius: 12px; padding: 1.5rem 1.75rem; margin: 2rem 0;
}
.safety-note h4 { color: #7A6224; font-size: .95rem; margin: 0 0 .5rem; }
.safety-note p { color: #6B5A2A !important; font-size: .9rem; margin: 0; }

/* ── Behandelkaarten extra ────────────────── */
.treat-card { display: flex; flex-direction: column; }
.treat-card p { flex-grow: 0; }
.treat-card__meta { font-size: .8rem !important; color: #7A7898 !important; margin-top: .6rem; flex-grow: 1 !important; }
.treat-card__cta { display: inline-flex; margin-top: 1rem; font-size: .85rem; font-weight: 600; color: var(--gold-dark) !important; }
.treat-card__cta:hover { color: var(--gold) !important; }

/* ── Twee-regel navigatie ─────────────────── */
.cbz-nav__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .5rem 0; }
.cbz-nav__actions { display: flex; align-items: center; gap: .7rem; }
.cbz-nav__wa { padding: .55rem 1.25rem !important; font-size: .85rem !important; }
.cbz-nav__menubar { border-top: 1px solid #EAE4F2; background: rgba(250,248,253,.92); }
.cbz-nav__menubar .nav__links {
  display: flex !important; justify-content: center; align-items: center; flex-wrap: wrap;
  gap: .25rem 1.5rem !important; min-height: 48px; list-style: none; margin: 0; padding: .25rem 0;
}
.cbz-nav__menubar .nav__links li { list-style: none; }
.cbz-nav__menubar .nav__links a { font-size: .875rem !important; font-weight: 500; color: #4A4568; padding: .35rem .1rem; transition: color .15s; }
.cbz-nav__menubar .nav__links a:hover { color: #6B2D9E; }
.cbz-nav__menubar .nav__links a.active { color: #6B2D9E !important; font-weight: 600; box-shadow: inset 0 -2px 0 var(--gold); }
@media (max-width: 1100px) {
  .cbz-nav__menubar { display: none; }
  .cbz-nav__wa { display: none !important; }
  .cbz-nav .nav__cta { display: inline-flex !important; padding: .55rem 1.2rem !important; font-size: .85rem !important; }
}
@media (max-width: 560px) {
  .cbz-nav__top .nav__logo > div { display: none; }
}
/* Nav altijd op volle breedte, ook op pagina's met een smalle container */
.cbz-nav .container { max-width: 1160px !important; margin: 0 auto; padding: 0 1.5rem; }

/* ── Galerij pagina ───────────────────────── */
.galerij-sectie { margin-bottom: 4rem; }
.voorna__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
@media (max-width: 700px) { .voorna__grid { grid-template-columns: 1fr; } }
.voorna__item { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 16px rgba(75,24,120,.1); background: #fff; border: 1px solid #EAE4F2; }
.voorna__item img { width: 100%; display: block; }
.voorna__item figcaption { padding: 1rem 1.25rem; font-size: .85rem; color: #4A4568; }
