/* ==========================================================================
   FB Clinics — Stylesheet
   ========================================================================== */

:root{
  --navy:#1F3B57;
  --navy-deep:#132840;
  --sand:#F6F1E9;
  --sand-deep:#EFE7D8;
  --gold:#A98C5A;
  --rose:#B5697A;
  --ink:#2A2A28;
  --ink-light:#5b5b56;
  --line:#E4DCCB;
  --white:#FFFFFF;
  --radius:10px;
  --max:1180px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
  color:var(--ink);
  background:var(--sand);
  line-height:1.65;
}
h1,h2,h3,h4{
  font-family: Georgia, 'Times New Roman', serif;
  color:var(--navy);
  line-height:1.25;
  margin:0 0 .5em 0;
}
p{ margin:0 0 1em 0; color:var(--ink-light); }
a{ color:var(--navy); text-decoration:none; }
img{ max-width:100%; display:block; }
.wrap{ max-width:var(--max); margin:0 auto; padding:0 28px; }
section{ padding:70px 0; }
.section-tight{ padding:40px 0; }

.eyebrow{
  display:block; color:var(--gold); font-size:12.5px; letter-spacing:3px;
  font-weight:700; text-transform:uppercase; margin-bottom:14px;
}
.center{ text-align:center; }
.section-head{ max-width:640px; margin:0 auto 46px auto; text-align:center; }
.section-head p{ font-size:15.5px; }

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-block; padding:13px 26px; border-radius:28px; font-size:14.5px;
  font-weight:600; text-decoration:none; cursor:pointer; border:1.5px solid transparent;
  transition:transform .15s ease, box-shadow .15s ease;
}
.btn:hover{ transform:translateY(-1px); }
.btn-primary{ background:var(--navy); color:#fff; }
.btn-primary:hover{ box-shadow:0 6px 16px rgba(31,59,87,.25); }
.btn-secondary{ border-color:var(--navy); color:var(--navy); background:transparent; }
.btn-secondary:hover{ background:var(--navy); color:#fff; }
.btn-light{ background:#fff; color:var(--navy); }
.btn-row{ display:flex; gap:14px; flex-wrap:wrap; }

/* ---------- HEADER ---------- */
header.site-header{
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 28px; background:rgba(246,241,233,.94); backdrop-filter:blur(6px);
  border-bottom:1px solid var(--line);
}
.logo{ font-family:Georgia,serif; font-size:23px; font-weight:700; color:var(--navy); }
.logo span{ color:var(--gold); }
nav.main-nav{ display:flex; gap:30px; align-items:center; }
nav.main-nav a{
  font-size:14px; color:var(--navy); position:relative; padding:4px 0;
}
nav.main-nav a.active::after, nav.main-nav a:hover::after{
  content:""; position:absolute; left:0; right:0; bottom:-3px; height:2px; background:var(--gold);
}
.header-right{ display:flex; align-items:center; gap:18px; }
.lang-pills{
  display:flex; background:#fff; border:1px solid var(--line); border-radius:20px; overflow:hidden; font-size:12px;
}
.lang-pills span{ padding:7px 13px; color:var(--navy); cursor:default; }
.lang-pills span.active{ background:var(--navy); color:#fff; }
.menu-toggle{ display:none; background:none; border:none; font-size:24px; color:var(--navy); cursor:pointer; }

@media (max-width:900px){
  nav.main-nav{
    position:fixed; top:64px; left:0; right:0; background:var(--sand);
    flex-direction:column; align-items:flex-start; padding:20px 28px; gap:16px;
    border-bottom:1px solid var(--line); transform:translateY(-130%); transition:transform .25s ease;
  }
  nav.main-nav.open{ transform:translateY(0); }
  .menu-toggle{ display:block; }
  .lang-pills{ display:none; }
}

/* ---------- HERO ---------- */
.hero{ display:flex; align-items:center; gap:60px; padding:70px 0 90px 0; }
.hero-text{ flex:1 1 460px; }
.hero-text h1{ font-size:44px; margin-bottom:20px; }
.hero-text p.lead{ font-size:16.5px; max-width:480px; margin-bottom:28px; color:var(--ink-light); }
.trust-row{ display:flex; gap:24px; margin-top:34px; flex-wrap:wrap; }
.trust-item{ font-size:12.5px; color:var(--navy); display:flex; align-items:center; gap:7px; }
.dot{ width:6px; height:6px; border-radius:50%; background:var(--gold); flex:none; }
.hero-visual{ flex:1 1 380px; position:relative; height:420px; min-width:280px; }
.ph-block{
  position:absolute; border-radius:6px; display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:12px; text-align:center; padding:16px;
}
.hero-visual .ph1{
  width:78%; height:78%; top:0; right:0; background:linear-gradient(150deg,var(--navy),var(--navy-deep));
}
.hero-visual .ph2{
  width:46%; height:40%; bottom:0; left:0; background:linear-gradient(150deg,var(--gold),#8d7245);
  border:6px solid var(--sand);
}

/* generic page hero (subpages) */
.page-hero{ padding:56px 0 40px 0; border-bottom:1px solid var(--line); }
.page-hero h1{ font-size:34px; }
.page-hero p{ max-width:640px; font-size:15.5px; }
.breadcrumb{ font-size:12.5px; color:var(--ink-light); margin-bottom:14px; }
.breadcrumb a{ color:var(--gold); }

/* ---------- TREATMENT GRID ---------- */
.grid5{ display:grid; grid-template-columns:repeat(5,1fr); gap:20px; }
.grid3{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.grid2{ display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
@media (max-width:1000px){ .grid5{ grid-template-columns:repeat(2,1fr);} .grid3{grid-template-columns:1fr 1fr;} }
@media (max-width:640px){ .grid5,.grid3,.grid2{ grid-template-columns:1fr; } .hero{ flex-direction:column; } .about{flex-direction:column;} }

.card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:26px 22px;
  text-decoration:none; display:block; transition:box-shadow .15s ease, transform .15s ease;
}
.card:hover{ box-shadow:0 10px 24px rgba(31,59,87,.10); transform:translateY(-2px); }
.card-icon{ width:40px; height:40px; border-radius:50%; background:var(--sand); border:1.5px solid var(--gold); margin-bottom:16px; }
.card h3{ font-size:17px; margin-bottom:8px; }
.card p{ font-size:12.8px; margin-bottom:0; }
.card .price-tag{ display:inline-block; margin-top:12px; font-size:11.5px; color:var(--gold); font-weight:700; }

/* ---------- ABOUT / TRUST BAND ---------- */
.about{ background:var(--navy); color:#fff; display:flex; gap:60px; align-items:center; }
.about h2{ color:#fff; }
.about p{ color:#dbe2e9; }
.about-visual{
  flex:0 0 320px; height:340px; border-radius:6px; background:linear-gradient(150deg,#2a4a68,var(--navy-deep));
  border:1px solid rgba(255,255,255,.15); display:flex; align-items:center; justify-content:center;
  text-align:center; font-size:12px; color:#cdd8e2; padding:16px;
}
.badge-row{ display:flex; gap:14px; margin-top:22px; flex-wrap:wrap; }
.badge{ border:1px solid rgba(255,255,255,.35); border-radius:20px; padding:7px 15px; font-size:12px; }

/* ---------- REVIEWS ---------- */
.review-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:24px; }
.stars{ color:var(--gold); font-size:15px; margin-bottom:12px; letter-spacing:2px; }
.review-card p{ font-size:13.3px; font-style:italic; margin-bottom:16px; }
.reviewer{ display:flex; align-items:center; gap:10px; }
.avatar{
  width:32px; height:32px; border-radius:50%; background:var(--sand); border:1px solid var(--gold);
  display:flex; align-items:center; justify-content:center; font-size:12px; color:var(--navy); font-weight:700;
}
.reviewer span{ font-size:12.3px; color:var(--navy); font-weight:600; }

/* ---------- CTA BANNER ---------- */
.cta-banner{
  border-radius:14px; padding:50px; background:linear-gradient(120deg,var(--rose),var(--gold));
  color:#fff; display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
}
.cta-banner h2{ color:#fff; font-size:25px; margin-bottom:6px; }
.cta-banner p{ color:#fff2ea; margin-bottom:0; }

/* ---------- TREATMENT DETAIL PAGE ---------- */
.detail-block{ display:flex; gap:50px; align-items:flex-start; margin-bottom:40px; }
.detail-visual{
  flex:0 0 360px; height:280px; border-radius:8px; background:linear-gradient(150deg,var(--navy),var(--navy-deep));
  color:#fff; display:flex; align-items:center; justify-content:center; text-align:center; font-size:12px; padding:16px;
}
.detail-text{ flex:1; }
.icon-list{ list-style:none; margin:0 0 18px 0; padding:0; }
.icon-list li{ padding-left:26px; position:relative; margin-bottom:9px; font-size:14.5px; color:var(--ink);}
.icon-list li::before{ content:"✓"; position:absolute; left:0; color:var(--gold); font-weight:700; }
.info-table{ width:100%; border-collapse:collapse; margin:18px 0; font-size:13.5px; }
.info-table td{ padding:9px 12px; border-bottom:1px solid var(--line); }
.info-table td:first-child{ font-weight:700; color:var(--navy); width:38%; }

.disclaimer{
  background:#FBF3E3; border-left:4px solid var(--gold); padding:16px 20px; border-radius:4px;
  font-size:13px; color:#4a4a44; margin:30px 0;
}
.disclaimer b{ color:var(--navy); }

/* ---------- CONDITIONS (KLACHTEN) ---------- */
.condition-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:28px; margin-bottom:22px;
}
.condition-card h3{ font-size:19px; }
.symptom-tags{ margin:10px 0 14px 0; }
.tag{ display:inline-block; background:var(--sand-deep); color:var(--navy); border-radius:14px; padding:4px 12px; font-size:11.5px; margin:0 6px 6px 0; }

/* ---------- CONTACT ---------- */
.contact-grid{ display:flex; gap:50px; flex-wrap:wrap; }
.contact-form{ flex:1 1 380px; }
.contact-info{ flex:1 1 300px; }
.form-field{ margin-bottom:16px; }
.form-field label{ display:block; font-size:13px; color:var(--navy); font-weight:600; margin-bottom:6px; }
.form-field input, .form-field select, .form-field textarea{
  width:100%; padding:11px 13px; border:1px solid var(--line); border-radius:6px; font-family:inherit;
  font-size:14px; background:#fff; color:var(--ink);
}
.form-field textarea{ min-height:120px; resize:vertical; }
.form-note{ font-size:11.5px; color:var(--ink-light); margin-top:6px; }
.info-item{ margin-bottom:20px; }
.info-item h4{ font-size:13px; text-transform:uppercase; letter-spacing:1px; color:var(--gold); margin-bottom:6px; }
.info-item p{ margin-bottom:0; color:var(--ink); }
.map-block{
  height:220px; border-radius:8px; background:linear-gradient(150deg,var(--sand-deep),var(--line));
  display:flex; align-items:center; justify-content:center; color:var(--navy); font-size:12.5px; margin-top:22px;
}

/* ---------- FOOTER ---------- */
footer.site-footer{ background:var(--navy-deep); color:#b9c4cd; padding:54px 0 26px 0; margin-top:60px; }
.footer-top{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:30px; margin-bottom:36px; }
.footer-logo{ color:#fff; font-family:Georgia,serif; font-size:21px; font-weight:700; margin-bottom:10px; }
.footer-logo span{ color:var(--gold); }
.footer-tag{ font-size:12.5px; max-width:260px; color:#93a4b3; }
.footer-cols{ display:flex; gap:56px; flex-wrap:wrap; }
.footer-col h4{ font-size:11.5px; color:#8fa2b3; letter-spacing:1px; margin-bottom:12px; text-transform:uppercase; }
.footer-col a{ display:block; color:#cfd8de; font-size:13px; text-decoration:none; margin-bottom:9px; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1); padding-top:18px; font-size:11px; color:#7d8f9f;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px;
}

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float{
  position:fixed; bottom:24px; right:24px; background:#25D366; color:#fff; width:56px; height:56px;
  border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:26px;
  box-shadow:0 8px 20px rgba(0,0,0,.2); z-index:60; text-decoration:none;
}

/* ---------- MISC ---------- */
.two-col-text{ display:flex; gap:50px; flex-wrap:wrap; }
.two-col-text > div{ flex:1 1 320px; }
.small-caps{ text-transform:uppercase; letter-spacing:1px; font-size:11.5px; color:var(--gold); font-weight:700; }
hr.rule{ border:none; border-top:1px solid var(--line); margin:40px 0; }
