/* ═══════════════════════════════════════════════════════════════════════════
   Prof. Aesthetics v4 — Complete Redesign
   Inspired by Bey Clinics: luxurious, spacious, editorial
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────────────────────── */
:root {
  --bg:          #FAFAFA;
  --white:       #FFFFFF;
  --surface:     #FFFFFF;
  --card:        #FFFFFF;
  --section-alt: #F3EEF5;
  --border:      #E8E0E8;
  --divider:     rgba(119,79,135,.12);
  --purple:      #774F87;
  --purple-light:#9B7AAC;
  --purple-dark: #5C3A6B;
  --orange:      #FD6933;
  --gold:        #C9A96E;
  --text:        #4A4A4A;
  --text-dark:   #1A1A1A;
  --text-light:  #8A8A8A;
  --heading:     #1A1A1A;
  --accent:      #774F87;
  --accent-bg:   #F3EEF5;

  --ff-heading: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-body:    'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w:      1280px;
  --nav-h:      80px;
  --top-h:      40px;
  --radius:     16px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(0,0,0,.06);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.1);
  --transition: .4s cubic-bezier(.4, 0, .2, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:          #0F0F0F;
    --white:       #1A1A1A;
    --surface:     #1E1E1E;
    --card:        #242424;
    --section-alt: #1C1820;
    --border:      #333;
    --divider:     rgba(255,255,255,.08);
    --text:        #B8B8B8;
    --text-dark:   #E8E8E8;
    --text-light:  #777;
    --heading:     #F0F0F0;
    --accent-bg:   #221D26;
    --shadow:      0 4px 24px rgba(0,0,0,.3);
    --shadow-lg:   0 12px 48px rgba(0,0,0,.4);
  }
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + var(--top-h) + 20px); overflow-x: hidden; }
body {
  font-family: var(--ff-body);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--purple); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--ff-heading); color: var(--heading); font-weight: 600; line-height: 1.2; }

/* ── Container ──────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

/* ── Animations ─────────────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s ease, transform .9s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity .9s ease, transform .9s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity .9s ease, transform .9s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; border-radius: 50px; font-family: var(--ff-body);
  font-size: .95rem; font-weight: 500; letter-spacing: .3px;
  transition: all var(--transition); border: 2px solid transparent; cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--purple); color: #fff; border-color: var(--purple);
}
.btn-primary:hover {
  background: var(--purple-dark); border-color: var(--purple-dark); color: #fff;
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(119,79,135,.3);
}
.btn-outline {
  background: transparent; color: var(--purple); border-color: var(--purple);
}
.btn-outline:hover {
  background: var(--purple); color: #fff;
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(119,79,135,.3);
}
.btn-white {
  background: #fff; color: var(--purple); border-color: #fff;
}
.btn-white:hover {
  background: var(--purple); color: #fff; border-color: var(--purple);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 24px; font-size: .85rem; }

/* ════════════════════════════════════════════════════════════════════════════
   TOP BAR
   ════════════════════════════════════════════════════════════════════════════ */
.top-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  height: var(--top-h); background: var(--purple);
  color: #fff; font-size: .8rem; display: flex; align-items: center;
  transition: transform .3s ease;
}
.top-bar.hidden { transform: translateY(-100%); }
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; }
.top-bar-text { color: rgba(255,255,255,.8); font-size: .78rem; letter-spacing: .5px; }
.top-bar-contact { display: flex; gap: 24px; }
.top-bar-contact a { color: #fff; font-weight: 400; transition: opacity var(--transition); }
.top-bar-contact a:hover { opacity: .8; color: #fff; }
.top-bar-hours { opacity: .7; }

/* ════════════════════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: var(--top-h); left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
@media (prefers-color-scheme: dark) {
  .navbar { background: rgba(15,15,15,.92); }
  .blog-main table, .treatment-content table { color: var(--text); }
  .blog-main table th, .treatment-content table th { color: var(--heading); }
  .blog-main blockquote { background: var(--accent-bg) !important; color: var(--text) !important; }
  .blog-main h2, .blog-main h3, .blog-main h4 { color: var(--heading); }
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links > li > a {
  padding: 10px 18px; font-size: .9rem; font-weight: 400;
  color: var(--text-dark); border-radius: 8px;
  transition: all var(--transition); display: flex; align-items: center; gap: 4px;
}
.nav-links > li > a:hover { color: var(--purple); background: var(--accent-bg); }
.nav-cta {
  background: var(--purple) !important; color: #fff !important;
  border-radius: 50px !important; padding: 10px 28px !important; font-weight: 500 !important;
}
.nav-cta:hover { background: var(--purple-dark) !important; transform: translateY(-1px); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-arrow { transition: transform var(--transition); margin-left: 2px; }
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 260px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .3s ease; z-index: 100;
}
.nav-dropdown:hover > .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a {
  display: block; padding: 10px 16px; font-size: .88rem; color: var(--text);
  border-radius: var(--radius-sm); transition: all var(--transition);
}
.dropdown-menu li a:hover { background: var(--accent-bg); color: var(--purple); }

/* Submenu */
.nav-dropdown-submenu { position: relative; }
.dropdown-menu-sub {
  position: absolute; left: 100%; top: -12px; min-width: 220px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateX(8px);
  transition: all .3s ease; z-index: 101;
}
.nav-dropdown-submenu:hover > .dropdown-menu-sub { opacity: 1; visibility: visible; transform: translateX(0); }
.nav-dropdown-toggle-sub { font-weight: 500 !important; }

/* Mobile toggle */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px; background: var(--text-dark);
  position: absolute; left: 0; transition: all .3s;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }
.nav-toggle.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ════════════════════════════════════════════════════════════════════════════
   HERO — Full viewport cinematic
   ════════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + var(--top-h));
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(26,26,26,.65) 0%, rgba(119,79,135,.35) 100%);
}
.hero-content {
  position: relative; z-index: 2; display: flex; flex-direction: column;
  align-items: flex-start; max-width: 680px; padding: 80px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 50px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(10px);
  color: #fff; font-size: .78rem; font-weight: 500; letter-spacing: .5px;
  margin-bottom: 24px;
}
.hero-badge .badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.hero-title {
  font-size: 4rem; font-weight: 700; color: #fff;
  line-height: 1.08; margin-bottom: 20px; letter-spacing: -.02em;
}
.hero-title .hero-prof { display: block; font-weight: 300; font-size: .85em; }
.hero-title .hero-aesthetics { display: block; font-style: italic; font-weight: 200; }
.hero-description {
  font-size: 1.15rem; color: rgba(255,255,255,.85);
  line-height: 1.8; margin-bottom: 36px; max-width: 520px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════════════════════════════
   TRUST BAR
   ════════════════════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-items {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  font-size: .9rem; color: var(--text); font-weight: 400;
}
.trust-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-bg); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.trust-item strong { color: var(--heading); font-weight: 600; }

/* ════════════════════════════════════════════════════════════════════════════
   SECTIONS — General
   ════════════════════════════════════════════════════════════════════════════ */
.section {
  padding: 100px 0;
}
.section-alt { background: var(--section-alt); }
.section-white { background: var(--white); }
.section-subtitle {
  font-size: .78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--purple); margin-bottom: 12px;
}
.section-title {
  font-size: 2.8rem; font-weight: 600; color: var(--heading);
  margin-bottom: 20px; max-width: 700px; line-height: 1.15;
}
.section-intro {
  font-size: 1.05rem; color: var(--text); max-width: 640px;
  line-height: 1.9; margin-bottom: 48px;
}
.section-center { text-align: center; }
.section-center .section-title,
.section-center .section-intro { margin-left: auto; margin-right: auto; }

/* ════════════════════════════════════════════════════════════════════════════
   TREATMENTS — Large card grid
   ════════════════════════════════════════════════════════════════════════════ */
.treatments-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.treatment-card {
  background: var(--card); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  transition: all var(--transition); cursor: pointer;
  position: relative;
}
.treatment-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: var(--purple);
}
.treatment-card-img {
  position: relative; overflow: hidden; height: 320px;
}
.treatment-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.treatment-card:hover .treatment-card-img img { transform: scale(1.05); }
.treatment-card-body {
  padding: 32px;
}
.treatment-card-body h3 {
  font-size: 1.4rem; font-weight: 600; margin-bottom: 12px;
  color: var(--heading);
}
.treatment-card-body p {
  font-size: .95rem; color: var(--text); line-height: 1.8;
  margin-bottom: 16px;
}
.treatment-price {
  display: inline-block; font-size: .85rem; font-weight: 600;
  color: var(--purple); background: var(--accent-bg);
  padding: 6px 16px; border-radius: 50px;
}
.treatment-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .9rem; font-weight: 500; color: var(--purple);
  margin-top: 12px; transition: all var(--transition);
}
.treatment-link:hover { gap: 10px; color: var(--orange); }

/* ════════════════════════════════════════════════════════════════════════════
   ABOUT / VISION
   ════════════════════════════════════════════════════════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img-stack { position: relative; height: 560px; }
.about-img {
  position: absolute; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img-1 { width: 65%; height: 55%; top: 0; left: 0; z-index: 1; }
.about-img-2 { width: 50%; height: 45%; bottom: 0; right: 0; z-index: 2; }
.about-img-3 { width: 40%; height: 35%; bottom: 10%; left: 15%; z-index: 3; border: 4px solid var(--white); }
.about-text { }
.about-text p { font-size: 1.05rem; color: var(--text); line-height: 1.9; margin-bottom: 20px; }

/* ════════════════════════════════════════════════════════════════════════════
   MEET THE DOCTOR
   ════════════════════════════════════════════════════════════════════════════ */
.meet-doctor-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: center;
}
.meet-doctor-text p {
  font-size: 1.05rem; color: var(--text); line-height: 1.9;
  margin-bottom: 24px;
}
.doctor-quote {
  border-left: 3px solid var(--purple);
  padding: 24px 32px; margin: 32px 0;
  background: var(--accent-bg); border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.1rem; font-style: italic; color: var(--text-dark);
  line-height: 1.8;
}
.doctor-quote cite {
  display: block; margin-top: 16px;
  font-style: normal; font-size: .85rem; font-weight: 600;
  color: var(--purple);
}
.meet-doctor-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.meet-doctor-image img { width: 100%; height: auto; }

/* ════════════════════════════════════════════════════════════════════════════
   BEFORE / AFTER
   ════════════════════════════════════════════════════════════════════════════ */
.results-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.ba-card {
  background: var(--card); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  transition: all var(--transition);
}
.ba-card:hover { box-shadow: var(--shadow); }
.ba-slider {
  position: relative; overflow: hidden; height: 320px;
  cursor: col-resize;
}
.ba-image { position: absolute; inset: 0; }
.ba-image img { width: 100%; height: 100%; object-fit: cover; }
.ba-before { z-index: 1; clip-path: inset(0 50% 0 0); }
.ba-after { z-index: 0; }
.ba-range {
  position: absolute; inset: 0; z-index: 3;
  width: 100%; height: 100%; opacity: 0; cursor: col-resize;
  -webkit-appearance: none; appearance: none;
}
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: #fff; z-index: 2;
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(0,0,0,.3);
  pointer-events: none;
}
.ba-handle::before, .ba-handle::after {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px; border-radius: 50%; background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  display: flex; align-items: center; justify-content: center;
}
.ba-handle::before { top: 50%; margin-top: -18px; }
.ba-slider::before {
  content: attr(data-label-before); position: absolute; top: 12px; left: 12px;
  z-index: 4; padding: 4px 12px; border-radius: 50px;
  background: rgba(0,0,0,.5); color: #fff; font-size: .72rem;
  font-weight: 600; letter-spacing: .5px;
}
.ba-slider::after {
  content: attr(data-label-after); position: absolute; top: 12px; right: 12px;
  z-index: 4; padding: 4px 12px; border-radius: 50px;
  background: rgba(0,0,0,.5); color: #fff; font-size: .72rem;
  font-weight: 600; letter-spacing: .5px;
}
.ba-caption {
  padding: 20px 24px; font-size: .9rem; font-weight: 500;
  color: var(--heading); text-align: center;
}

/* ════════════════════════════════════════════════════════════════════════════
   BLOG
   ════════════════════════════════════════════════════════════════════════════ */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  background: var(--card); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.blog-img { overflow: hidden; height: 220px; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 28px; }
.blog-body time {
  font-size: .75rem; color: var(--text-light); text-transform: uppercase;
  letter-spacing: 1px; font-weight: 500;
}
.blog-body h3 {
  font-size: 1.15rem; font-weight: 600; color: var(--heading);
  margin: 10px 0 12px; line-height: 1.4;
}
.blog-body p { font-size: .88rem; color: var(--text); line-height: 1.7; margin-bottom: 16px; }
.blog-link {
  font-size: .88rem; font-weight: 500; color: var(--purple);
  display: inline-flex; align-items: center; gap: 4px;
}
.blog-link:hover { gap: 8px; color: var(--orange); }
.blog-cta { text-align: center; margin-top: 48px; }

/* ════════════════════════════════════════════════════════════════════════════
   REVIEWS
   ════════════════════════════════════════════════════════════════════════════ */
.reviews-carousel { position: relative; overflow: hidden; margin-bottom: 48px; }
.review-track {
  display: flex; gap: 24px;
  transition: transform .5s ease;
}
.review-card {
  min-width: 340px; flex-shrink: 0;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  transition: all var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); }
.review-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 16px; }
.review-card p {
  font-size: 1rem; font-style: italic; color: var(--text-dark);
  line-height: 1.8; margin-bottom: 20px;
}
.review-author { display: flex; align-items: center; gap: 8px; }
.review-author strong { font-size: .9rem; color: var(--heading); }
.review-author span { font-size: .8rem; color: var(--text-light); }
.carousel-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 24px;
}
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--white);
  color: var(--text-dark); font-size: 1.3rem; cursor: pointer;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.carousel-btn:hover { background: var(--purple); color: #fff; border-color: var(--purple); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border); cursor: pointer;
  transition: all var(--transition);
}
.carousel-dot.active { background: var(--purple); width: 28px; border-radius: 5px; }

/* Review score */
.review-score { text-align: center; }
.kliniek-widget {
  display: inline-flex; flex-direction: column; align-items: center;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 60px;
}
.kliniek-stars { color: var(--gold); font-size: 1.4rem; letter-spacing: 3px; margin-bottom: 8px; }
.kliniek-score {
  font-size: 3.5rem; font-weight: 700; color: var(--heading);
  font-family: var(--ff-heading); line-height: 1;
}
.kliniek-description {
  font-size: .88rem; color: var(--text); max-width: 400px;
  line-height: 1.7; margin: 12px 0 20px;
}
.kliniek-links { display: flex; flex-direction: column; gap: 6px; }
.kliniek-links a { font-size: .82rem; color: var(--purple); font-weight: 500; }
.kliniek-badge {
  margin-top: 16px; font-size: .72rem; font-weight: 600;
  color: var(--text-light); text-transform: uppercase; letter-spacing: 1px;
}

/* ════════════════════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.contact-details { margin: 32px 0; }
.contact-item {
  display: flex; gap: 16px; margin-bottom: 28px;
}
.contact-icon {
  font-size: 1.5rem; width: 52px; height: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-bg); border-radius: 50%;
}
.contact-item strong { display: block; color: var(--heading); font-size: .95rem; margin-bottom: 4px; }
.contact-item a { color: var(--purple); font-weight: 500; }
.contact-item small { font-size: .8rem; color: var(--text-light); display: block; margin-top: 2px; }
.contact-item p { font-size: .9rem; line-height: 1.7; }
.contact-building {
  margin-top: 32px; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.contact-map { border-radius: var(--radius); overflow: hidden; min-height: 480px; box-shadow: var(--shadow); }
.contact-map iframe { border-radius: var(--radius); }

/* ════════════════════════════════════════════════════════════════════════════
   STICKY CTA BAR (Bey-style)
   ════════════════════════════════════════════════════════════════════════════ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 16px 0; box-shadow: 0 -4px 24px rgba(0,0,0,.08);
  transform: translateY(100%); transition: transform .5s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap;
}
.sticky-cta-text {
  font-size: .95rem; color: var(--text); font-weight: 400;
}
.sticky-cta-text strong { color: var(--heading); }

/* ════════════════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--heading); color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-content {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-brand img { height: 52px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 300px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links-title { color: #fff; font-weight: 600; font-size: .9rem; margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .88rem; transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-social { display: flex; gap: 16px; align-items: flex-start; }
.footer-social a {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); transition: all var(--transition);
}
.footer-social a:hover { background: var(--purple); border-color: var(--purple); color: #fff; }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0; text-align: center;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.5); }

/* ════════════════════════════════════════════════════════════════════════════
   TREATMENT PAGE LAYOUT (individual treatments)
   ════════════════════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative; min-height: 50vh;
  display: flex; align-items: flex-end;
  padding: calc(var(--nav-h) + var(--top-h) + 40px) 0 60px;
  overflow: hidden;
}
.page-hero .hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(26,26,26,.8) 0%, rgba(26,26,26,.2) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumbs {
  display: flex; gap: 8px; align-items: center;
  font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 16px;
}
.breadcrumbs a { color: rgba(255,255,255,.7); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { color: rgba(255,255,255,.4); }
.page-hero h1 { font-size: 3rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 600px; }

.page-content {
  max-width: 800px; margin: 0 auto; padding: 80px 32px;
}
.page-content h2 {
  font-size: 1.8rem; font-weight: 600; margin: 48px 0 16px;
  color: var(--heading);
}
.page-content h3 { font-size: 1.3rem; margin: 32px 0 12px; }
.page-content p { margin-bottom: 20px; line-height: 1.9; }
.page-content img { border-radius: var(--radius); margin: 24px 0; box-shadow: var(--shadow); }
.page-content ul, .page-content ol {
  margin: 16px 0 20px 24px;
}
.page-content li { margin-bottom: 8px; line-height: 1.8; }

/* Breadcrumb (treatment & blog pages) */
.breadcrumb {
  padding: calc(var(--nav-h) + var(--top-h) + 16px) 0 12px;
  font-size: .82rem; color: var(--text-light);
}
.breadcrumb a { color: var(--text-light); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--purple); }
.breadcrumb span { margin: 0 4px; }

/* Treatment hero banner */
.treatment-hero {
  background: linear-gradient(135deg, var(--heading) 0%, var(--purple) 100%);
  padding: 64px 0 56px; color: #fff; text-align: center;
}
.treatment-hero h1 {
  font-size: 2.8rem; font-weight: 700; margin-bottom: 16px; color: #fff;
}
.treatment-hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,.8);
  max-width: 640px; margin: 0 auto 28px; line-height: 1.7;
}

/* Treatment content (full-width article) */
.treatment-content {
  max-width: 780px; margin: 0 auto; overflow-wrap: break-word; word-wrap: break-word;
}
.treatment-content h2 {
  font-size: 1.7rem; font-weight: 600; margin: 48px 0 16px;
  color: var(--heading);
}
.treatment-content h2:first-child { margin-top: 0; }
.treatment-content h3 { font-size: 1.25rem; margin: 32px 0 12px; }
.treatment-content p { margin-bottom: 20px; line-height: 1.9; }
.treatment-content ul, .treatment-content ol {
  margin: 16px 0 20px 24px;
}
.treatment-content li { margin-bottom: 8px; line-height: 1.8; }
.treatment-content a { color: var(--purple); font-weight: 500; }
.treatment-content a:hover { text-decoration: underline; }
.treatment-content a.btn { color: revert; font-weight: 500; }
.treatment-content a.btn:hover { text-decoration: none; }

/* FAQ accordion */
.faq-accordion { margin-top: 16px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 20px 0; background: none; border: none;
  font: inherit; font-size: 1.05rem; font-weight: 600; color: var(--heading);
  cursor: pointer; text-align: left; gap: 16px;
}
.faq-question:hover { color: var(--purple); }
.faq-icon {
  flex-shrink: 0; transition: transform .3s ease;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease;
  padding: 0 0 0 0;
}
.faq-answer.open {
  max-height: 600px; padding: 0 0 20px 0;
}
.faq-answer p { margin-bottom: 0; color: var(--text); line-height: 1.8; }
.faq-answer a { color: var(--purple); font-weight: 500; }
.faq-answer a:hover { text-decoration: underline; }

/* Empathy opener (Bey-style) */
.empathy-box {
  background: var(--accent-bg); border-radius: var(--radius);
  padding: 40px; margin-bottom: 48px; border-left: 4px solid var(--purple);
}
.empathy-box h2 { margin-top: 0; font-size: 1.5rem; color: var(--purple); }
.empathy-box p { font-size: 1.05rem; }

/* Related treatments */
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; margin-top: 24px;
}
.related-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: all var(--transition); text-align: center;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--purple); }
.related-card h4 { font-size: 1rem; margin-bottom: 8px; }
.related-card p { font-size: .82rem; color: var(--text-light); }
.related-card a { display: block; color: inherit; text-decoration: none; }
.related-card a:hover h4 { color: var(--purple); }
.treatment-link { font-size: .82rem; color: var(--purple); font-weight: 500; }

/* Blog listing grid */
.blog-listing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

/* ════════════════════════════════════════════════════════════════════════════
   BLOG PAGE LAYOUT
   ════════════════════════════════════════════════════════════════════════════ */
.blog-layout {
  max-width: 1200px; margin: 0 auto;
  padding: calc(var(--nav-h) + var(--top-h) + 60px) 32px 80px;
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 64px; align-items: start;
}
.breadcrumb + .blog-layout { padding-top: 24px; }
.blog-main { line-height: 1.9; overflow-wrap: break-word; word-wrap: break-word; }
.blog-main img { border-radius: var(--radius); margin: 24px 0; box-shadow: var(--shadow); max-width: 100%; height: auto; }
.blog-main h1 { font-size: 2.4rem; margin-bottom: 24px; }
.blog-main h2, .blog-main h3 { margin-top: 36px; margin-bottom: 16px; }
.blog-main p { margin-bottom: 16px; }
.blog-sidebar {
  background: var(--card); padding: 36px;
  border-radius: var(--radius); border: 1px solid var(--border);
  position: sticky; top: calc(var(--nav-h) + var(--top-h) + 24px);
}
.sidebar-widget { margin-bottom: 36px; }
.sidebar-widget:last-child { margin-bottom: 0; }
.sidebar-widget h3 {
  font-size: 1.1rem; margin-bottom: 16px; color: var(--heading);
}
.sidebar-widget ul li { margin-bottom: 10px; }
.sidebar-widget ul li a { font-size: .88rem; color: var(--text); }
.sidebar-widget ul li a:hover { color: var(--purple); }
.sidebar-widget ul li a .read-more {
  display: block; margin-top: 4px; font-size: .82rem;
  color: var(--purple); font-weight: 500;
}
.sidebar-widget p { color: var(--text) !important; line-height: 1.7; }

/* Blog image pair (before/after side-by-side) */
.blog-image-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin: 24px 0 8px; overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.blog-image-pair figure { margin: 0; min-width: 0; }
.blog-image-pair img { width: 100%; border-radius: var(--radius); object-fit: cover; aspect-ratio: 1/1; }
.image-caption {
  font-size: 0.9rem; color: var(--text-muted, var(--text-light));
  margin-top: -4px; margin-bottom: 24px; font-style: italic; line-height: 1.5;
}
.reference {
  font-size: 0.92rem; color: var(--text-light); line-height: 1.7;
}
.blog-date {
  font-size: 0.9rem; color: var(--text-light); margin-bottom: 24px;
}

/* Blog CTA box */
.blog-cta-box {
  background: var(--accent-bg); border-left: 4px solid var(--accent);
  border-radius: 8px; padding: 24px 28px; margin: 30px 0 20px;
}
.blog-cta-box h4 { margin: 0 0 10px; color: var(--heading); font-size: 1.1rem; }
.blog-cta-box p { margin: 0 0 14px; color: var(--text); line-height: 1.6; }
.blog-cta-btn {
  display: inline-block; background: var(--accent); color: #fff !important;
  padding: 10px 24px; border-radius: 6px; text-decoration: none;
  font-weight: 500; font-size: 0.95rem; transition: all var(--transition);
}
.blog-cta-btn:hover { background: var(--purple-dark); color: #fff !important; transform: translateY(-2px); }

/* Tarieven table */
.tarieven-table {
  width: 100%; border-collapse: collapse; margin: 24px 0;
}
.tarieven-table th {
  text-align: left; padding: 16px 20px;
  background: var(--accent-bg); color: var(--heading);
  font-weight: 600; font-size: .9rem;
  border-bottom: 2px solid var(--border);
}
.tarieven-table td {
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.tarieven-table tr:hover { background: var(--accent-bg); }
.tarieven-table .price { font-weight: 600; color: var(--purple); white-space: nowrap; }

/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .treatments-grid { gap: 24px; }
  .about-grid, .meet-doctor-grid, .contact-grid, .footer-content {
    grid-template-columns: 1fr; gap: 40px;
  }
  .about-img-stack { height: 400px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* ── Top bar ── */
  .top-bar { height: auto; min-height: var(--top-h); padding: 6px 0; }
  .top-bar-inner { justify-content: center; }
  .top-bar-text { display: none; }
  .top-bar-contact { width: auto; justify-content: center; gap: 12px; font-size: .72rem; }
  .top-bar-hours { display: none; }

  /* ── Mobile nav toggle ── */
  .nav-toggle { display: block; z-index: 1002; }

  /* ── Mobile nav panel ── */
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); flex-direction: column;
    padding: 8px 0 16px; gap: 0; align-items: stretch;
    display: none;
    box-shadow: var(--shadow-lg); border-top: 1px solid var(--border);
    z-index: 999;
  }
  .nav-links.open { display: flex; }

  /* ── Mobile nav links ── */
  .nav-links > li { border-bottom: 1px solid var(--border); }
  .nav-links > li:last-child { border-bottom: none; }
  .nav-links > li > a {
    padding: 14px 24px; font-size: 1rem;
    display: flex; align-items: center; justify-content: space-between;
  }

  /* ── Disable desktop hover for dropdowns ── */
  .nav-dropdown:hover > .dropdown-menu { opacity: 0; visibility: hidden; transform: translateY(8px); }
  .nav-dropdown-submenu:hover > .dropdown-menu-sub { opacity: 0; visibility: hidden; transform: translateX(8px); }

  /* ── Mobile dropdown menus (click-driven) ── */
  .dropdown-menu, .dropdown-menu-sub {
    position: static !important; opacity: 1 !important; visibility: visible !important;
    transform: none !important; box-shadow: none; border: none;
    padding: 0 0 0 12px; display: none;
    background: transparent; min-width: 0;
  }
  .nav-dropdown.open > .dropdown-menu,
  .nav-dropdown-submenu.open > .dropdown-menu-sub { display: block; }

  /* ── Dropdown links styling ── */
  .dropdown-menu li a {
    padding: 12px 16px; font-size: .92rem;
    border-radius: 0; border-bottom: 1px solid var(--divider);
  }
  .dropdown-menu li:last-child a { border-bottom: none; }
  .dropdown-menu-sub li a {
    padding: 10px 16px; font-size: .88rem;
  }

  /* ── Arrow rotation on open ── */
  .nav-dropdown.open > .nav-dropdown-toggle .dropdown-arrow { transform: rotate(180deg); }
  .nav-dropdown-submenu.open > .nav-dropdown-toggle-sub .dropdown-arrow { transform: rotate(180deg); }

  /* ── Mobile CTA in nav ── */
  .nav-cta {
    margin: 8px 24px 0; text-align: center;
    justify-content: center;
  }

  /* ── Hero ── */
  .hero-title { font-size: 2.8rem; }
  .hero-description { font-size: 1rem; }

  /* ── Sections ── */
  .section { padding: 64px 0; }
  .section-title { font-size: 2rem; }

  /* ── Grids ── */
  .treatments-grid { grid-template-columns: 1fr; }
  .treatment-card-img { height: 240px; }
  .about-img-stack { height: 300px; }
  .blog-grid { grid-template-columns: 1fr; }
  .review-card { min-width: 280px; }
  .trust-items { gap: 24px; }

  /* ── Blog layout ── */
  .blog-layout { grid-template-columns: 1fr; padding-top: calc(var(--nav-h) + var(--top-h) + 32px); }
  .breadcrumb + .blog-layout { padding-top: 16px; }
  .blog-sidebar { position: static; }

  /* ── Treatment pages ── */
  .page-hero h1 { font-size: 2.2rem; }
  .treatment-hero h1 { font-size: 2rem; }
  .treatment-hero { padding: 48px 0 40px; }
  .treatment-content { padding: 0 8px; }
  .page-content { padding: 48px 20px; overflow-x: auto; }

  /* ── Tarieven table responsive ── */
  .tarieven-table { font-size: .82rem; }
  .tarieven-table th, .tarieven-table td { padding: 12px 12px; }

  /* ── Sticky CTA ── */
  .sticky-cta-inner { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
  .top-bar-contact a:last-child { display: none; }
  .container { padding: 0 16px; }
  .hero-title { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .section-title { font-size: 1.7rem; }
  .treatment-card-body { padding: 20px; }
  .treatment-card-body h3 { font-size: 1.15rem; }
  .kliniek-widget { padding: 28px 24px; }
  .blog-listing-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .blog-image-pair { grid-template-columns: 1fr 1fr; gap: 8px; }
  .blog-main { overflow-x: hidden; }
  .empathy-box { padding: 24px 20px; }
  .doctor-quote { padding: 20px 24px; }
  .review-card { min-width: 260px; padding: 24px; }
  .treatment-hero h1 { font-size: 1.6rem; }
  .page-hero h1 { font-size: 1.8rem; }
  .contact-map { min-height: 320px; }
  .footer-content { grid-template-columns: 1fr; gap: 32px; }
}
