/* ===========================================================
   OKUR DİŞ · TEMA 5 — "Altın / Gold · Premium Lüks"
   Cormorant Garamond (zarif serif display) + Manrope (sans)
   Sıcak krem zemin · altın vurgular · yumuşak gölgeler
   Full-width hero · Swiper galeri & yorumlar
   =========================================================== */

/* ---------- Değişkenler & temel ---------- */
:root {
  --paper: #ffffff;
  --cream: #fbf7f0;
  --cream-2: #f4ecdf;
  --sand: #efe4d2;

  --ink: #2a2118;          /* sıcak koyu kahve (footer + koyu metin) */
  --muted: #6f6255;
  --muted-2: #8a7c6c;

  --gold: #a4742e;         /* ana vurgu — logo rengi */
  --gold-light: #c79a53;
  --gold-pale: #e8c987;
  --gold-tint: #f3e7d2;    /* çok açık altın zemin */
  --gold-dark: #6e4d1e;

  --line: #e6dac6;
  --line-soft: #efe6d6;

  /* WOW orb rengi (altın) */
  --wow-c: #e8c987;
  --wow-o: .42;

  --wrap: 1380px;
  --gut: 28px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --shadow: 0 18px 50px rgba(110, 77, 30, 0.14);
  --shadow-sm: 0 8px 24px rgba(110, 77, 30, 0.10);

  --t: 0.3s ease;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Düzen yardımcıları ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gut);
}

.section {
  position: relative;
  padding: 104px 0;
}

/* ---------- Reveal (temel; wow.css yön varyantlarını ekler) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---------- Tipografi imza öğeleri ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow__rule {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale));
  flex: 0 0 auto;
}
.eyebrow--light { color: var(--gold-pale); }
.eyebrow--light .eyebrow__rule { background: linear-gradient(90deg, var(--gold-pale), rgba(232,201,135,.2)); }

.section__title,
.hero__title,
.cta-band__title {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
  margin: 0;
}
.section__title em,
.hero__title em,
.cta-band__title em {
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
}

.section__head {
  max-width: 640px;
  margin: 0 auto 60px;
  text-align: center;
}
.section__head .eyebrow { justify-content: center; }
.section__head--left { margin-left: 0; margin-right: 0; text-align: left; max-width: none; }
.section__head--left .eyebrow { justify-content: flex-start; }

.section__title { font-size: clamp(2.2rem, 4.6vw, 3.5rem); }
.section__intro {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.06rem;
}
.section__head--left .section__intro { margin-left: 0; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t),
    transform var(--t), box-shadow var(--t);
}
.btn i { font-size: 0.85em; transition: transform var(--t); }
.btn:hover i.fa-arrow-right { transform: translateX(4px); }

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  box-shadow: 0 10px 26px rgba(164, 116, 46, 0.32);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(164, 116, 46, 0.40); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-light));
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(232, 201, 135, 0.42);
}
.btn--gold:hover { transform: translateY(-2px); }

.btn--outline { background: transparent; color: var(--gold-dark); border-color: var(--gold); }
.btn--outline:hover { background: var(--gold); color: #fff; }

.btn--outline-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.55); }
.btn--outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn--lg { padding: 16px 34px; font-size: 1rem; }
.btn--sm { padding: 9px 18px; font-size: 0.85rem; }
.btn--block { width: 100%; justify-content: center; }

/* Ok linki */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold-dark);
  margin-top: auto;
  transition: gap var(--t), color var(--t);
}
.link-arrow:hover { gap: 12px; color: var(--gold); }
.link-arrow i { font-size: 0.8em; }

/* ===========================================================
   1 · TOPBAR
   =========================================================== */
.topbar {
  background: var(--ink);
  color: #d9cbb6;
  font-size: 0.82rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  gap: 16px;
}
.topbar__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
}
.topbar__info i { color: var(--gold-pale); margin-right: 6px; }
.topbar__info a:hover { color: #fff; }
.topbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
}
.topbar__cta i { color: var(--gold-pale); }
.topbar__cta:hover { color: var(--gold-pale); }

/* ===========================================================
   2 · STICKY HEADER + MARKA (yuvarlak büyük logo)
   =========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 240, 0.86);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow var(--t), background var(--t);
}
.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(110, 77, 30, 0.10);
  background: rgba(251, 247, 240, 0.96);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  transition: min-height var(--t);
}
.site-header.is-scrolled .site-header__inner { min-height: 72px; }

/* Marka — logo absolute, BÜYÜK + yuvarlak */
.brand {
  --logo-size: 140px; /* büyütmek/küçültmek için tek nokta */
  position: relative;
  display: inline-flex;
  align-items: center;
  width: var(--logo-size);
  min-height: 64px;
}
/* "Okur Diş" yazısı kaldırıldı — logonun içinde zaten yazıyor */
.brand__name { display: none; }
.brand__mark {
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-28%);
  width: var(--logo-size);
  height: var(--logo-size);
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 38px rgba(120, 80, 20, 0.30);
  padding: 0;
  border: 0;
  z-index: 6;
  transition: width 0.4s cubic-bezier(.16, 1, .3, 1),
              height 0.4s cubic-bezier(.16, 1, .3, 1),
              transform 0.4s cubic-bezier(.16, 1, .3, 1),
              box-shadow 0.4s ease;
}
.brand__logo {
  width: 100%;
  height: 100%;
  object-fit: contain; /* logonun tüm yazısı tam görünür */
  display: block;
}
.site-header.is-scrolled .brand { --logo-size: 110px; }

/* Menü */
.mainnav { display: flex; align-items: center; gap: 30px; }
.mainnav > a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  padding: 6px 0;
}
.mainnav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--t);
}
.mainnav > a:not(.btn):hover { color: var(--gold-dark); }
.mainnav > a:not(.btn):hover::after { width: 100%; }
.mainnav__cta { display: none; }

.site-header__actions { display: flex; align-items: center; gap: 14px; }

/* Hamburger */
.navtoggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  background: var(--gold-tint);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-dark);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--t);
}
.navtoggle:hover { background: var(--sand); }

/* ===========================================================
   3 · FULL-WIDTH HERO
   =========================================================== */
.hero {
  position: relative;
  min-height: clamp(560px, 84vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: -6% 0;
  z-index: -2;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(42, 33, 24, 0.86) 0%, rgba(42, 33, 24, 0.66) 42%, rgba(110, 77, 30, 0.30) 100%),
    radial-gradient(120% 90% at 12% 50%, rgba(164, 116, 46, 0.28), transparent 60%);
}
.hero__orb { z-index: -1; }
.hero__orb--1 { top: -8%; right: 6%; --wow-c: #e8c987; --wow-o: .35; }
.hero__orb--2 { bottom: -12%; left: -4%; --wow-c: #c79a53; --wow-o: .28; }

/* Dr. Pınar Okur — sağda, arka planı şeffaf figür (overlay'in ÜSTÜNDE) */
.hero__figure {
  position: absolute;
  top: 0;
  right: clamp(12px, 6%, 110px);   /* sağ kenardan içeri al → figür biraz sola */
  bottom: 0;
  width: min(52%, 720px);
  margin: 0;
  z-index: 1;            /* overlay (0) üstü, içerik (2) altı */
  pointer-events: none;
}
.hero__figure-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right bottom;  /* 16:9 kaynağın sağındaki figürü çerçevele */
  /* zemine yumuşak geçiş için altı hafifçe söndür */
  -webkit-mask-image: linear-gradient(to bottom, #000 86%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 86%, transparent 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;            /* metin daima figürün önünde/erişilebilir */
  padding-top: 70px;
  padding-bottom: 70px;
}
.hero__content { max-width: 680px; }
.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  color: #fff;
  margin: 0 0 22px;
}
.hero__title em { color: var(--gold-pale); }
.hero__lead {
  max-width: 560px;
  color: #ede3d2;
  font-size: 1.12rem;
  margin: 0 0 34px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 36px; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #f3ead9;
}
.hero__trust i { color: var(--gold-pale); }

/* ===========================================================
   4 · İSTATİSTİK ŞERİDİ
   =========================================================== */
.stats-band {
  background: var(--ink);
  position: relative;
  z-index: 1;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats__item {
  padding: 40px 24px;
  text-align: center;
  border-left: 1px solid rgba(232, 201, 135, 0.18);
}
.stats__item:first-child { border-left: none; }
.stats__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
}
.stats__label {
  display: block;
  margin-top: 10px;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: #cdbda4;
}

/* ===========================================================
   5 · TEDAVİLER
   =========================================================== */
.services { background: var(--cream); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--paper);
  padding: 38px 34px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold-pale);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 22px;
  transition: background var(--t), color var(--t);
}
.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
}
.service-card__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0 0 10px;
}
.service-card p { color: var(--muted); margin: 0 0 22px; font-size: 0.98rem; }

/* ===========================================================
   6 · NEDEN BİZ / KLİNİK
   =========================================================== */
.about { background: var(--cream-2); }
.about__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.about__visual {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-rows: 1fr;
  gap: 16px;
}
.about__media { margin: 0; min-height: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about__media--main { grid-row: span 2; }
.about__media--main img { aspect-ratio: 3 / 4; }
.about__media--side img { aspect-ratio: 4 / 4; }
.about__media-badge {
  position: absolute;
  right: -14px;
  bottom: 26px;
  background: var(--ink);
  color: #fff;
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow);
}
.about__media-badge-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold-pale);
}
.about__media-badge-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: #cdbda4;
  margin-top: 2px;
}

.about__lead { color: var(--muted); font-size: 1.1rem; margin: 0 0 28px; }
.checklist { display: grid; gap: 13px; margin: 0 0 32px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
}
.checklist i { color: var(--gold); margin-top: 5px; flex: 0 0 auto; }

.about__quote {
  position: relative;
  margin: 0;
  padding: 26px 28px;
  background: var(--gold-tint);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.about__quote > i { color: var(--gold); font-size: 1.1rem; margin-bottom: 8px; }
.about__quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.4;
  margin: 0 0 10px;
}
.about__quote cite { font-style: normal; font-size: 0.9rem; color: var(--muted); font-weight: 600; }

/* ===========================================================
   7 · HEKİMİMİZ (solo · monogram)
   =========================================================== */
.doctor-sec { background: var(--cream); }
.doctor-sec__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}
/* Fotoğraf kartı, uzun biyografi metni boyunca ekranda kalsın (sticky) */
.doctor-sec__card {
  position: sticky;
  top: 100px;
  align-self: start;
}
.doctor-sec__photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.doctor-sec__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  display: block;
}
.doctor-sec__mono {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 26px rgba(110, 77, 30, 0.40);
  border: 3px solid rgba(255, 255, 255, 0.85);
}
.doctor-sec__role {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 22px;
  font-weight: 600;
  color: var(--gold-dark);
}
.doctor-sec__role i { color: var(--gold); }
.doctor-sec__bio { color: var(--muted); font-size: 1.06rem; margin: 0 0 26px; }
.doctor-sec__points { display: grid; gap: 12px; margin: 0 0 30px; }
.doctor-sec__points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.doctor-sec__points i {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--gold);
  flex: 0 0 auto;
  font-size: 0.9rem;
}

/* Sertifikalar ve eğitimler (hekim sayfası) */
.creds { background: var(--cream); }
.creds__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  max-width: 880px;
}
.creds__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid rgba(110, 77, 30, 0.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm, 0 6px 20px rgba(110, 77, 30, 0.06));
  transition: transform .25s ease, box-shadow .25s ease;
}
.creds__item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.creds__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--gold);
  flex: 0 0 auto;
  font-size: 1.15rem;
}
.creds__body { min-width: 0; }
.creds__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.12rem;
  line-height: 1.4;
  margin: 2px 0 6px;
  color: var(--ink);
}
.creds__meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.creds__sep { margin: 0 8px; color: var(--gold); }
.creds__when { font-weight: 600; color: var(--gold-dark); }

/* Sertifika görsel galerisi (1 dikey + 2 yatay, zoomlanabilir) */
.cert-gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  grid-template-rows: repeat(2, 290px);
  gap: 18px;
  max-width: 980px;
  margin: 0 0 44px;
}
.cert-gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  cursor: zoom-in;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(110, 77, 30, 0.10);
  box-shadow: var(--shadow-sm, 0 6px 20px rgba(110, 77, 30, 0.06));
  transition: box-shadow .25s ease, transform .25s ease;
}
.cert-gallery__item:first-child { grid-row: span 2; }
.cert-gallery__item:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.cert-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  display: block;
  transition: transform .5s ease;
}
.cert-gallery__item:hover img { transform: scale(1.04); }
.cert-gallery__zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--gold-dark);
  box-shadow: 0 6px 18px rgba(110, 77, 30, 0.18);
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}
.cert-gallery__item:hover .cert-gallery__zoom { opacity: 1; transform: none; }

@media (max-width: 760px) {
  .cert-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .cert-gallery__item:first-child { grid-row: auto; aspect-ratio: 3 / 4; }
  .cert-gallery__item { aspect-ratio: 4 / 3; }
}

/* ===========================================================
   8 · KLİNİKTEN KARELER (Swiper galeri)
   =========================================================== */
.gallery { background: var(--cream-2); overflow: hidden; }
.gallery__swiper {
  padding: 8px var(--gut) 60px;
  max-width: calc(var(--wrap) + 80px);
  margin: 0 auto;
}
.gallery__slide {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  background: var(--sand);
}
.gallery__slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery__slide:hover img { transform: scale(1.05); }
.gallery__cap {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 16px;
  background: rgba(42, 33, 24, 0.78);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* Swiper pagination (altın) */
.gallery__pagination,
.reviews__pagination {
  position: static;
  margin-top: 26px;
  text-align: center;
}
.swiper-pagination-bullet {
  background: var(--gold-light);
  opacity: 0.4;
  width: 9px;
  height: 9px;
  transition: width var(--t), opacity var(--t);
}
.swiper-pagination-bullet-active {
  opacity: 1;
  width: 26px;
  border-radius: 6px;
  background: var(--gold);
}

/* Galeri ok butonları */
.gallery__nav {
  position: absolute;
  top: calc(50% - 30px);
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--gold-dark);
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background var(--t), color var(--t), transform var(--t);
}
.gallery__nav:hover { background: var(--gold); color: #fff; }
.gallery__nav--prev { left: 8px; }
.gallery__nav--next { right: 8px; }

/* ===========================================================
   9 · HASTA YORUMLARI (Swiper)
   =========================================================== */
.reviews { background: var(--ink); overflow: hidden; }
.reviews .section__title { color: #fff; }
.reviews .eyebrow { color: var(--gold-pale); }
.reviews .eyebrow__rule { background: linear-gradient(90deg, var(--gold-pale), rgba(232,201,135,.2)); }
.reviews__orb { top: 8%; right: 4%; --wow-c: #a4742e; --wow-o: .30; }

.reviews__swiper { padding-bottom: 50px; }
.review {
  margin: 0;
  height: auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 201, 135, 0.18);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.review__mark { color: var(--gold-pale); font-size: 1.8rem; margin-bottom: 16px; opacity: 0.85; }
.review__stars { color: var(--gold-pale); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 16px; }
.review blockquote {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.45;
  color: #f3ead9;
  margin: 0 0 22px;
}
.review__author {
  margin-top: auto;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}
.review__author span { color: var(--gold-pale); font-weight: 500; }

/* ===========================================================
   10 · S.S.S
   =========================================================== */
.faq { background: var(--cream); }
.faq__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.faq__list {
  display: grid;
  gap: 14px;
}
.faq__item {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t);
}
.faq__item[open] { border-color: var(--gold-pale); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  transition: color var(--t);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold-dark); }
.faq__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--gold);
  font-size: 0.78rem;
}
.faq__icon .fa-minus { display: none; }
.faq__item[open] .faq__icon .fa-plus { display: none; }
.faq__item[open] .faq__icon .fa-minus { display: block; }
.faq__item[open] .faq__icon { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff; }

.faq__body { padding: 0 24px 24px; }
.faq__body p { margin: 0; color: var(--muted); }

/* ===========================================================
   11 · CTA BANDI (full-width görsel)
   =========================================================== */
.cta-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 110px 0;
}
.cta-band__bg { position: absolute; inset: -6% 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(42, 33, 24, 0.90), rgba(110, 77, 30, 0.74));
}
.cta-band__inner {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.cta-band__inner .eyebrow { justify-content: center; }
.cta-band__title {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  margin: 0 0 12px;
  color: #fff;
}
.cta-band__title em { color: var(--gold-pale); }
.cta-band__text { color: #ede3d2; margin: 0 auto 30px; max-width: 520px; }
.cta-band__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ===========================================================
   12 · İLETİŞİM
   =========================================================== */
.contact { background: var(--cream-2); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact__list { display: grid; gap: 22px; margin-bottom: 30px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__ico {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--gold);
}
.contact__list strong { display: block; font-size: 0.96rem; margin-bottom: 2px; }
.contact__list span,
.contact__list a { color: var(--muted); font-size: 0.96rem; }
.contact__list a:hover { color: var(--gold-dark); }

.contact__map {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.contact__map iframe { width: 100%; height: 280px; border: 0; display: block; }

/* Form */
.contact__form {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 38px 34px;
  box-shadow: var(--shadow);
}
.contact__form-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.8rem;
  margin: 0 0 22px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 7px;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-tint);
}
.contact__form-note {
  margin: 14px 0 0;
  font-size: 0.78rem;
  color: var(--muted-2);
  text-align: center;
}

/* İletişim (mesaj) formu — haritanın altında, sol kolonda */
.contact__form--message { margin-top: 30px; }

/* Doğrulama mesajları */
.field-validation-error {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #b3261e;
}
.field .input-validation-error,
.field input.input-validation-error,
.field select.input-validation-error,
.field textarea.input-validation-error {
  border-color: #d9534f;
  background: #fff;
}

/* Başarı / bilgi kutusu */
.form-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  padding: 15px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
}
.form-alert--ok {
  background: var(--gold-tint);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
}
.form-alert i { font-size: 1.1rem; }

/* ===========================================================
   13 · FOOTER
   =========================================================== */
.site-footer { background: var(--ink); color: #c8b89f; padding: 80px 0 0; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.brand--footer { width: auto; min-height: 0; display: block; }
.brand--footer .brand__mark { position: static; transform: none; width: 124px; height: 124px; box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34); }
.brand--footer .brand__name { display: none; }
.site-footer__desc { margin: 20px 0 0; font-size: 0.94rem; max-width: 320px; }

.site-footer__col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin: 0 0 18px;
}
.site-footer__col ul { display: grid; gap: 11px; }
.site-footer__col a { font-size: 0.93rem; transition: color var(--t); }
.site-footer__col a:hover { color: #fff; }
.site-footer__contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.93rem; margin-bottom: 11px; }
.site-footer__contact i { color: var(--gold-pale); margin-top: 4px; flex: 0 0 auto; }

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px var(--gut);
  border-top: 1px solid rgba(232, 201, 135, 0.16);
  font-size: 0.84rem;
}
.site-footer__bottom p { margin: 0; }

/* ===========================================================
   EKLENTİLER · selection · scrollbar · to-top · scroll-progress
   =========================================================== */
::selection { background: var(--gold); color: #fff; }
::-moz-selection { background: var(--gold); color: #fff; }

html { scrollbar-width: thin; scrollbar-color: var(--gold) var(--cream-2); }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border: 3px solid var(--cream-2);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

.scroll-progress {
  position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 110;
  background: transparent; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-pale));
}

.to-top {
  position: fixed; right: 1.6rem; bottom: 1.6rem; z-index: 90;
  width: 48px; height: 48px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff; border: none; cursor: pointer;
  border-radius: 50%; font-size: 1rem;
  box-shadow: 0 10px 26px rgba(164, 116, 46, 0.36);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 992px) {
  .about__grid,
  .doctor-sec__grid,
  .contact__grid,
  .faq__inner { grid-template-columns: 1fr; gap: 44px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .doctor-sec__photo { max-width: 460px; }
  .doctor-sec__grid { justify-items: start; }
  /* Tek sütuna inince sticky kapansın; fotoğraf metnin üstünde normal aksın */
  .doctor-sec__card { position: static; top: auto; }
  .about__media-badge { right: 14px; }

  /* Dar ekranda figür metinle çakışmasın — arka plan görseli kalır */
  .hero__figure { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Mobil menü */
  .mainnav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(84vw, 340px);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 108px 28px 40px;
    background: var(--cream);
    border-left: 1px solid var(--line);
    box-shadow: -24px 0 60px rgba(110, 77, 30, 0.18);
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(.16,1,.3,1);
    z-index: 95;
  }
  .mainnav.is-open { transform: translateX(0); }
  .mainnav > a {
    width: 100%;
    padding: 15px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--line-soft);
  }
  .mainnav > a::after { display: none; }
  .mainnav__cta {
    display: inline-flex;
    margin-top: 14px;
    border-bottom: none !important;
    justify-content: center;
  }

  .navtoggle { display: inline-flex; }
  .site-header__cta { display: none; }

  .topbar__hide-sm { display: none; }
  .topbar__info { gap: 16px; }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(3) { border-left: none; }
  .stats__item:nth-child(n+3) { border-top: 1px solid rgba(232, 201, 135, 0.18); }

  .cta-band { padding: 84px 0; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .brand { --logo-size: 96px; min-height: 52px; }

  .services__grid { grid-template-columns: 1fr; }
  .about__visual { grid-template-columns: 1fr; }
  .about__media--main { grid-row: auto; }
  .about__media--main img,
  .about__media--side img { aspect-ratio: 16 / 10; }
  .about__media-badge { position: static; margin-top: 16px; display: inline-block; }

  .stats { grid-template-columns: 1fr; }
  .stats__item { border-left: none; border-top: 1px solid rgba(232, 201, 135, 0.18); }
  .stats__item:first-child { border-top: none; }

  .hero__trust { gap: 10px 18px; }
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* Hasta yorumları: dot'ları bir tık aşağı al (altın temaya uygun) */
.reviews__pagination { margin-top: 44px; }
.reviews__swiper { padding-bottom: 58px; }
