/* ─── Variables ──────────────────────────────────────────── */
:root {
  --gold:       #C49832;
  --gold-light: #e8c97a;
  --gold-dark:  #9a7520;
  --navy:       #1D2D5B;
  --navy-light: #2d4080;
  --text:       #2a2a3d;
  --text-muted: #6b6b80;
  --bg:         #ffffff;
  --bg-soft:    #fdf8f0;
  --border:     #e8dfc8;
  --shadow:     0 4px 24px rgba(29,45,91,.08);
  --radius:     12px;
  --font-head:  'Roboto', sans-serif;
  --font-body:  'Roboto', sans-serif;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; }
button, input, select, textarea { font-family: inherit; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}

.header-tagline {
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-tagline-text {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; gap: 24px;
  height: 86px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.logo-img { display: block; }
.logo-img--light {
    width: auto;
    height: 85px;
}
.logo-text {
  font-family: var(--font-head);
  font-weight: 700; font-size: .95rem;
  color: var(--navy); line-height: 1.2;
  display: none;
}
@media(min-width:1000px){ .logo-text { display: block; } }

.main-nav { flex: 1; }
.main-nav ul {
  display: flex; align-items: center; gap: 4px;
  justify-content: center;
}
.main-nav a {
  font-family: var(--font-head); font-size: .88rem; font-weight: 600;
  color: var(--text); padding: 6px 10px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.btn-appointment {
  flex-shrink: 0;
  display: flex; align-items: center; gap: 7px;
  background: var(--gold); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .85rem;
  padding: 10px 18px; border-radius: 50px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-appointment:hover { background: var(--gold-dark); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block; width: 24px; height: 4px;
  background: var(--navy); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero (fullscreen slider + overlay) ───────────────── */
section.hero.hero--fullscreen {
  padding: 0;
  width: 100%;
  max-width: none;
}

.hero.hero--fullscreen {
  position: relative;
  width: 100%;
  min-height: min(85vh, 640px);
  background: #1a1a1a;
  overflow: hidden;
  display: block;
}

.hero-bg,
.hero-slide-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-slider-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
}

.hero-carousel .carousel-slide.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.hero-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-carousel-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-carousel .carousel-track {
  height: 100%;
}

.hero-carousel .carousel-slide.hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  flex-shrink: 0;
  min-height: min(85vh, 640px);
  overflow: hidden;
}

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(4px);
}

.hero-nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.hero-carousel .c-prev.hero-nav-btn {
  left: clamp(12px, 2vw, 24px);
}

.hero-carousel .c-next.hero-nav-btn {
  right: clamp(12px, 2vw, 24px);
}

.hero-overlay {
  position: relative;
  z-index: 3;
  min-height: min(85vh, 640px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(32px, 5vw, 56px);
  pointer-events: none;
}

.hero-overlay-panels {
  pointer-events: auto;
  width: min(100%, 520px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-content {
  background: transparent;
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
}
.hero-title { font-family: var(--font-head); line-height: 1.15; }
.hero-title .stop {
  display: block; font-size: 2.8rem; font-weight: 900;
  color:  #fff; letter-spacing: -.5px;
}
.hero-title .accent {
  display: block; font-size: 2.4rem; font-weight: 800;
  color: #fff;
}
.hero-cta-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 16px 44px;
  border-radius: 10px;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  transition: background .2s, transform .15s;
  max-width: 100%;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}
.hero-cta-btn:hover { background: var(--gold-dark); transform: translateY(-2px); }
.hero-divider {
  width: 60px; height: 3px; background: var(--gold);
  margin: 20px 0;
}
.hero-subtitle,
.hero-motto {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  max-width: 380px;
  line-height: 1.7;
  margin-bottom: 12px;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 2px 10px rgba(0, 0, 0, 0.5);
}
.hero-doctor {
  font-family: var(--font-head); font-weight: 700;
  color: var(--navy); font-size: 1.05rem;
}

.hero-benefits {
  background: rgb(255 255 255 / 78%);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 24px;
  gap: 20px;
  border-radius: 10px;
}
.benefit-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.benefit-icon { flex-shrink: 0; }
.benefit-text {
  font-family: var(--font-head); font-weight: 600;
  font-size: .9rem; color: var(--navy); line-height: 1.3;
}

/* ─── Section base ───────────────────────────────────────── */
section { padding: 80px 24px; }
.container { max-width: 1400px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 {
  font-family: var(--font-head); font-weight: 800;
  font-size: 2rem; color: var(--navy); margin-bottom: 8px;
}
.section-header .gold-line {
  width: 50px; height: 3px; background: var(--gold);
  margin: 12px auto;
}
.section-header p {
  color: var(--text-muted); font-size: .98rem; max-width: 560px;
  margin: 0 auto;
}

/* ─── Scroll reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── Testimonials 50/50 ─────────────────────────────────── */
.testimonials-split {
  background: #fff;
  padding: 0;
}
.testimonials-split-inner {
  display: grid; grid-template-columns: 1fr 1fr;
}
.testi-col {
  padding: 70px 48px;
  background: #fff;
  min-width: 0; /* prevent grid blowout from carousel overflow */
}
.testi-col:first-child {
  border-right: 1px solid var(--border);
}
.testi-col-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 10px;
}
.testi-col-header .logo-icon-wrap { flex-shrink: 0; }
.testi-col-header h2 {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.4rem; color: var(--navy);
}
.testi-col > .subtitle {
  color: var(--text-muted); font-size: .88rem;
  margin-bottom: 32px; line-height: 1.6;
}
.testi-divider {
  width: 40px; height: 3px; background: var(--gold);
  margin: 10px 0 28px;
}
.testi-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px;
  font-family: var(--font-head); font-weight: 700; font-size: .88rem;
  color: var(--gold); border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.testi-more:hover { border-bottom-color: var(--gold); }

/* ─── Carousel ───────────────────────────────────────────── */
.carousel-wrapper { position: relative; }
.carousel-viewport { overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.carousel-slide {
  flex-shrink: 0;
  width: 100%;
}
.carousel-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-top: 22px;
}
.c-prev, .c-next {
  width: 44px; height: 44px; min-width: 44px; min-height: 44px; border-radius: 50%;
  border: 2px solid var(--gold); background: transparent;
  color: var(--gold); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s; flex-shrink: 0;
}
.c-prev:hover, .c-next:hover { background: var(--gold); color: #fff; }
.c-dots { display: flex; gap: 2px; align-items: center; }
.c-dot {
  position: relative;
  width: 44px; height: 44px;
  padding: 0; border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.c-dot::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 8px; height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: var(--border);
  transition: background .2s, transform .2s;
}
.c-dot.active::before {
  background: var(--gold);
  transform: scale(1.35);
}

/* Video: 2 per row per slide (αρχική) */
.video-carousel .carousel-slide {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}

/* Video cards */
.video-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 14px;
}
.video-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background: var(--bg);
  transition: transform .2s;
}
.video-card:hover { transform: translateY(-4px); }
.video-thumb {
  position: relative; aspect-ratio: 16/9;
  background: linear-gradient(135deg,#d4c4a0,#9e9078);
  overflow: hidden;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.25);
}
.play-btn span {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
}
.play-btn span::after {
  content: '';
  border-left: 14px solid var(--navy);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 3px;
}
.video-info {
  padding: 10px 14px 14px;
}
.video-name {
  font-family: var(--font-head); font-weight: 700;
  color: var(--navy); font-size: .88rem;
  margin-bottom: 3px;
}
.video-desc {
  font-size: .78rem; color: var(--text-muted);
  line-height: 1.4;
}

/* Written: 2 cards per slide, 1 row */
.written-carousel .carousel-slide {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

/* Written cards */
.written-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
.written-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.written-card::before {
  content: '\201C';
  font-family: var(--font-head);
  font-size: 5rem; line-height: .8;
  color: var(--gold); opacity: .5;
  position: absolute; top: 16px; left: 20px;
}
.written-card p {
  font-size: .98rem; color: var(--text);
  line-height: 1.7; margin-top: 28px;
  font-style: italic;
}
.written-carousel .written-card .written-excerpt,
.written-grid .written-card .written-excerpt {
  font-size: .98rem; color: var(--text);
  line-height: 1.7; margin-top: 28px;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.written-card .author {
  margin-top: 16px;
  font-family: var(--font-head); font-weight: 700;
  color: var(--gold); font-size: .88rem;
  font-style: normal;
}
.written-carousel .written-card .author { margin-top: 12px; }
.written-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; padding: 10px 4px; min-height: 44px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 600;
  font-size: .85rem; color: var(--navy);
  text-decoration: underline; text-underline-offset: 3px;
  transition: color .2s;
}
.written-read-more:hover { color: var(--gold); }
.written-read-more svg { flex-shrink: 0; stroke: currentColor; }

/* Written testimonial popup */
.written-modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,.75);
  display: flex; align-items: center; justify-content: center;
  padding: 20px clamp(56px, 8vw, 72px);
  animation: fadeIn .2s ease;
}

.written-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 302;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
  backdrop-filter: blur(4px);
}

.written-modal-nav:hover:not(:disabled) {
  background: var(--gold);
  border-color: var(--gold);
}

.written-modal-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.written-modal-nav[hidden] {
  display: none;
}

.written-modal-prev { left: clamp(8px, 2vw, 20px); }
.written-modal-next { right: clamp(8px, 2vw, 20px); }
.written-modal {
  background: var(--bg);
  border-radius: var(--radius);
  max-width: min(720px, 94vw);
  max-height: 90vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 48px rgba(0,0,0,.35);
  position: relative;
}
.written-modal .yt-close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: rgba(0,0,0,.08);
  color: var(--text);
}
.written-modal .yt-close:hover { background: rgba(0,0,0,.14); }
.written-modal-body {
  overflow-y: auto;
  padding: 36px 32px 28px;
}
.written-modal-image {
  margin-bottom: 24px;
  text-align: center;
}
.written-modal-image img {
  max-width: 100%;
  max-height: 50vh;
  border-radius: 8px;
  border: 1px solid var(--border);
  object-fit: contain;
}
.written-modal-text {
  font-size: 1rem; line-height: 1.75;
  color: var(--text); font-style: italic;
}
.written-modal-text p { margin: 0 0 1em; }
.written-modal-text p:last-child { margin-bottom: 0; }
.written-modal-author {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: var(--font-head); font-weight: 700;
  color: var(--gold); font-size: .95rem;
  font-style: normal;
}

/* ─── Features ───────────────────────────────────────────── */
.features-section { background:#fff; }
.features-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 24px;
    gap: 16px;
    align-items: flex-start;
    text-align: center;
}
.feature-icon { flex-shrink: 0; }
.feature-card h3 {
  font-family: var(--font-head); font-weight: 700;
  color: var(--navy); font-size: .95rem; margin-bottom: 6px;
}
.feature-card p { font-size: .87rem; color: var(--text-muted); }

/* ─── CTA ────────────────────────────────────────────────── */
.cta-section {
  background: var(--navy); color: #fff;
  text-align: center; padding: 80px 24px;
}
.cta-section h2 {
  font-family: var(--font-head); font-size: 2.2rem;
  font-weight: 800; margin-bottom: 12px;
}
.cta-section p { color: rgba(255,255,255,.75); margin-bottom: 32px; font-size: 1rem; }
.btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 14px 36px; border-radius: 50px;
  transition: background .2s, transform .15s;
}
.btn-cta:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* ─── YouTube Popup ──────────────────────────────────────── */
.yt-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,.88);
  display: flex; align-items: center; justify-content: center;
  padding: 20px clamp(56px, 8vw, 72px);
  animation: fadeIn .2s ease;
}

.yt-overlay iframe {
  width: min(900px, 92vw);
  height: min(506px, 52vw);
  max-height: 80vh;
  border: none;
  border-radius: 10px;
  background: #000;
}
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.yt-close {
  position: fixed; top: 18px; right: 24px;
  background: rgba(255,255,255,.15); border: none;
  color: #fff; font-size: 2rem; cursor: pointer;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.yt-close:hover { background: rgba(255,255,255,.3); }

/* ─── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--bg-soft);
  padding: 60px 24px;
  border-bottom: 3px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-head); font-weight: 800;
  font-size: 2.4rem; color: var(--navy);
}
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: var(--text-muted); margin-top: 10px; font-size: 1rem; }

/* ─── Martyries submenu (CSS tabs) ───────────────────────── */
.martyries-tab-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.martyries-submenu {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 86px;
  z-index: 90;
}
.martyries-submenu-inner {
  display: flex;
  gap: 0;
  max-width: 1200px;
}
.martyries-tab {
  flex: 1;
  display: block;
  padding: 18px 24px;
  border: none;
  border-bottom: 3px solid transparent;
  background: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-muted);
  cursor: pointer;
  text-align: center;
  transition: color .2s, border-color .2s, background .2s;
}
.martyries-tab:hover { color: var(--navy); background: var(--bg-soft); }
.martyries-tab.is-disabled {
  opacity: .4;
  cursor: not-allowed;
  pointer-events: none;
}
#martyries-tab-said:checked ~ .martyries-submenu label[for="martyries-tab-said"],
#martyries-tab-wrote:checked ~ .martyries-submenu label[for="martyries-tab-wrote"] {
  color: var(--navy);
  border-bottom-color: var(--gold);
}
.martyries-panels { background: #fff; }
.martyries-panel {
  display: none;
  padding: 60px 24px;
}
#martyries-tab-said:checked ~ .martyries-panels .martyries-panel-said,
#martyries-tab-wrote:checked ~ .martyries-panels .martyries-panel-wrote {
  display: block;
}
.martyries-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  padding: 40px 0;
}

/* ─── Method page ────────────────────────────────────────── */
.method-fullwidth-img {
  width: 100%; height: 480px; overflow: hidden;
}
.method-fullwidth-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
}
.method-content { background: var(--bg); padding: 60px 24px; }
.method-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: 2rem; color: var(--navy);
}
.method-divider {
  width: 50px; height: 3px; background: var(--gold); margin: 16px 0 32px;
}
.method-body {
  max-width: 800px;
  font-size: .98rem; color: var(--text); line-height: 1.9;
}
.method-body p { margin-bottom: 16px; }
.method-body ul, .method-body ol { padding-left: 22px; margin-bottom: 16px; }
.method-body li { margin-bottom: 6px; }

/* ─── About page ─────────────────────────────────────────── */
.doctor-section { padding: 80px 0; }
.doctor-intro {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 50px; align-items: center;
  margin-bottom: 60px;
}
.doctor-photo {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #d4c4a0, #9e9078);
}
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.doctor-headline h2 {
  font-family: var(--font-head); font-weight: 800;
  font-size: 2rem; color: var(--navy); margin-bottom: 10px;
}
.doctor-specialty {
  color: var(--gold); font-weight: 600; font-size: 1.05rem;
  font-family: var(--font-head); line-height: 1.5;
}
.doctor-bio-full {
  font-size: 1rem; color: var(--text); line-height: 1.9;
}
.doctor-bio-full p { margin-bottom: 18px; }
.doctor-education {
  background: var(--bg-soft); border-left: 4px solid var(--gold);
  padding: 16px 20px; border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .93rem; 
  color: var(--text-muted); 
  margin-bottom: 24px;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%; background: var(--bg);
  border: none; cursor: pointer; text-align: left;
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-head); font-weight: 700;
  font-size: .98rem; color: var(--navy);
  transition: background .2s;
}
.faq-question:hover { background: var(--bg-soft); }
.faq-question svg {
  flex-shrink: 0; color: var(--gold);
  transition: transform .3s;
}
.faq-item.open .faq-question { background: var(--bg-soft); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: .95rem; color: var(--text-muted); line-height: 1.7;
  padding: 0 24px; background: var(--bg-soft);
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 16px 24px 20px;
}

/* ─── Contact ────────────────────────────────────────────── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: start;
}
.contact-form-wrap h2 {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.6rem; color: var(--navy); margin-bottom: 8px;
}
.contact-form-wrap > p { color: var(--text-muted); margin-bottom: 32px; }
.contact-map {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.contact-map iframe {
  display: block;
  width: 100%;
  border: 0;
}
.contact-map--full {
  max-width: 100%;
  border-bottom: 1px solid var(--border);
}
.contact-map--full iframe {
  height: 360px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-family: var(--font-head);
  font-weight: 600; font-size: .88rem;
  color: var(--navy); margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: var(--font-body); font-size: .95rem;
  color: var(--text); background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,152,50,.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.btn-submit {
  width: 100%; padding: 14px;
  background: var(--gold); color: #fff; border: none; cursor: pointer;
  border-radius: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  transition: background .2s, transform .15s;
}
.btn-submit:hover { background: var(--gold-dark); transform: translateY(-1px); }
.alert {
  padding: 14px 18px; border-radius: 8px;
  margin-bottom: 20px; font-weight: 600; font-size: .95rem;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

.contact-info-card {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px;
}
.contact-info-card h3 {
  font-family: var(--font-head); font-weight: 700;
  color: var(--navy); font-size: 1.1rem; margin-bottom: 24px;
}
.info-row {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 20px;
}
.info-row svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.info-row strong {
  display: block; font-family: var(--font-head);
  font-size: .88rem; color: var(--navy); margin-bottom: 2px;
}
.info-row span { font-size: .9rem; color: var(--text-muted); }

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer { background:#fff; color:#000; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 60px 24px;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
}
.footer-brand svg { margin-bottom: 12px; }
.footer-brand p {
  font-family: var(--font-head); font-weight: 700;
  color: #fff; font-size: 1rem; margin-bottom: 8px;
}
.footer-brand small { font-size: .83rem; line-height: 1.6; }
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-head); font-weight: 700;
  color: var(--gold); font-size: .9rem;
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: .05em;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p {
  display: flex; align-items: center; gap: 8px;
  font-size: .9rem; margin-bottom: 12px;
}
.footer-contact svg { color: var(--gold); flex-shrink: 0; }
.footer-contact a { color: inherit; text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 24px; text-align: center;
  font-size: .82rem; color: rgba(0, 0, 0, 0.45);
}
.footer-bottom p { margin: 0; }
.footer-bottom p + p { margin-top: 6px; }
.footer-credit a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}
.footer-credit a:hover { text-decoration: underline; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .doctor-intro   { grid-template-columns: 240px 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { order: -1; }
}

@media (max-width: 900px) {
  .hero.hero--fullscreen,
  .hero-carousel .carousel-slide.hero-slide {
    min-height: auto;
  }

  .hero-overlay {
    min-height: 0;
    align-items: flex-end;
    padding: 100px 20px 28px;
  }

  .hero-overlay-panels {
    width: 100%;
    max-width: 420px;
  }

  .hero-nav-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }

  .hero-title .stop  { font-size: 2.3rem; }
  .hero-title .accent{ font-size: 2rem; }
  .testimonials-split-inner { grid-template-columns: 1fr; }
  .testi-col:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .video-grid   { grid-template-columns: repeat(3,1fr); }
  .steps        { grid-template-columns: 1fr; }
  .doctor-intro { grid-template-columns: 1fr; }
  .doctor-photo { aspect-ratio: 16/9; max-width: 400px; }
  .footer-inner { grid-template-columns: 1fr 1fr; text-align: center; }
  .footer-brand { grid-column: 1/-1; }
  .footer-contact p {
    display: block;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    margin-bottom: 12px;
}
.logo-img--light {
    width: auto;
    height: 85px;
    margin: 0 auto;
}

}

@media (max-width: 768px) {
  .site-header--has-tagline {
    --site-header-offset: 128px;
  }

  .main-nav {
    display: none; position: fixed;
    top: var(--site-header-offset, 86px); left: 0; right: 0;
    background: var(--bg); padding: 16px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    z-index: 99;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a {
    display: block; padding: 12px 24px;
    border-bottom: none; border-left: 3px solid transparent;
  }
  .main-nav a.active, .main-nav a:hover {
    border-left-color: var(--gold); background: var(--bg-soft);
  }
  .hamburger {
    display: flex;
    float: right;
    position: absolute;
    right: 30px;
}

  .btn-appointment { display: none; }
}

@media (max-width: 600px) {
  .written-modal-overlay,
  .yt-overlay { padding: 16px 44px; }
  .written-modal-nav { width: 40px; height: 40px; font-size: 1.15rem; }
  .yt-overlay iframe {
    width: 100%;
    height: min(56vw, 70vh);
  }
  section { padding: 56px 20px; }
  .testi-col { padding: 48px 24px; }
  .video-carousel .carousel-slide { grid-template-columns: 1fr; }
  .video-grid   { grid-template-columns: 1fr; }
  .features-grid{ grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-title .stop  { font-size: 2rem; }
  .hero-title .accent{ font-size: 1.7rem; }
  .cta-section h2 { font-size: 1.6rem; }
}
