
/* ═══════════════════════════════════════════════════
   RESET & ROOT
═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold:       #C9A84C;
  --gold2:      #E2C87A;
  --gold3:      #F0DCAA;
  --gold-dim:   rgba(201,168,76,0.15);
  --navy:       #050E1A;
  --navy2:      #0A1928;
  --navy3:      #0F2540;
  --blue-mid:   #163B5E;
  --blue-glow:  #1E5F9E;
  --ice:        #8BB8D8;
  --ice2:       #C4DDED;
  --white:      #FFFFFF;
  --off-white:  #F4F1EC;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Outfit', system-ui, sans-serif;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1);
}
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); background: var(--navy); color: var(--white); overflow-x: hidden; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold), var(--gold2)); border-radius: 2px; }
a { text-decoration: none; color: inherit; }
img { display: block; }

/* ═══════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 3.5rem; height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.5s var(--ease), box-shadow 0.5s;
}
#nav.solid {
  background: rgba(5,14,26,0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.18);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.85rem;
}
.nav-logo-icon {
  height: 34px; width: auto; object-fit: contain;
  display: block;
}
.nav-logo-text { display: flex; flex-direction: column; gap: 1px; }
.nav-logo-top {
  font-size: 0.55rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 400; line-height: 1;
}
.nav-logo-name {
  font-family: var(--serif); font-size: 1.05rem; color: var(--white);
  font-weight: 400; letter-spacing: 0.04em; line-height: 1;
}
.nav-center {
  display: flex; gap: 2.25rem; list-style: none; align-items: center;
}
.nav-center a {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(196,221,237,0.6); font-weight: 300;
  position: relative; padding-bottom: 3px;
  transition: color 0.25s;
}
.nav-center a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-center a:hover { color: var(--gold2); }
.nav-center a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500; padding: 0.65rem 1.6rem;
  border: 1px solid var(--gold); color: var(--gold); border-radius: 1px;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}
.nav-cta:hover {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 0 20px rgba(201,168,76,0.3);
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; overflow: hidden;
}

/* Hero background: X-ray image */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../images/hero-xray-bg.png');
  background-size: cover; background-position: right center;
  animation: heroPan 20s ease-in-out infinite alternate;
}
@keyframes heroPan {
  from { transform: scale(1.05) translateX(0); }
  to   { transform: scale(1.08) translateX(-20px); }
}

/* Texture overlay */
.hero-texture {
  position: absolute; inset: 0; z-index: 1;
  background-image: url('../images/hero-texture.png');
  background-size: cover; background-position: center;
  opacity: 0.5; mix-blend-mode: screen;
}

/* Gradient overlays for depth & readability */
.hero-grad-1 {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    110deg,
    rgba(5,14,26,0.97) 0%,
    rgba(5,14,26,0.88) 38%,
    rgba(5,14,26,0.5) 62%,
    rgba(5,14,26,0.15) 100%
  );
}
.hero-grad-2 {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(to top, rgba(5,14,26,0.95) 0%, transparent 45%);
}
.hero-grad-3 {
  position: absolute; inset: 0; z-index: 4;
  background: radial-gradient(ellipse 55% 70% at 72% 48%, rgba(30,95,158,0.22) 0%, transparent 65%);
}

/* Gold side accent */
.hero-side-line {
  position: absolute; right: 56px; top: 8%; bottom: 8%; z-index: 5; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.4) 25%, rgba(201,168,76,0.6) 60%, transparent);
}
.hero-side-line::before, .hero-side-line::after {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 10px rgba(201,168,76,0.8);
}
.hero-side-line::before { top: 28%; }
.hero-side-line::after  { top: 65%; }

/* Hero content */
.hero-inner {
  position: relative; z-index: 10;
  max-width: 1380px; margin: 0 auto; width: 100%;
  padding: 9rem 3.5rem 5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}

/* ── Hero Left ── */
.hero-eyebrow {
  display: flex; align-items: center; gap: 0.85rem; margin-bottom: 2rem;
  animation: fadeUp 1s var(--ease) 0.1s both;
}
.hero-eyebrow-line { width: 44px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.hero-eyebrow-text {
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); font-weight: 400;
}
.hero-h1 {
  font-family: var(--serif); font-weight: 300; margin-bottom: 1.75rem;
  animation: fadeUp 1s var(--ease) 0.2s both;
}
.hero-h1-prof {
  display: block; font-size: 1.4rem; color: var(--ice2);
  letter-spacing: 0.12em; margin-bottom: 0.25rem; font-weight: 300;
}
.hero-h1-first {
  display: block; font-size: 5.5rem; line-height: 0.9;
  color: var(--white);
}
.hero-h1-last {
  display: block; font-size: 6.2rem; line-height: 0.9;
  font-style: italic; color: var(--gold2);
  text-shadow: 0 0 60px rgba(201,168,76,0.25);
}
.hero-divider {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
  animation: fadeUp 1s var(--ease) 0.3s both;
}
.hero-divider-l { height: 1px; flex: 1; background: linear-gradient(90deg, rgba(201,168,76,0.3), transparent); }
.hero-divider-r { height: 1px; flex: 1; background: linear-gradient(to left, rgba(201,168,76,0.3), transparent); }
.hero-divider-txt {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(196,221,237,0.55); white-space: nowrap;
}
.hero-desc {
  font-family: var(--serif);
  font-size: 1.35rem; font-weight: 300; font-style: italic;
  color: var(--ice2);
  line-height: 1.5; max-width: 520px; margin-bottom: 2.75rem;
  letter-spacing: 0.03em;
  animation: fadeUp 1s var(--ease) 0.4s both;
  position: relative; padding-left: 1.2rem;
}
.hero-desc::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  border-radius: 2px;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem;
  animation: fadeUp 1s var(--ease) 0.5s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2.4rem; background: var(--gold); color: var(--navy);
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  border-radius: 1px; box-shadow: 0 4px 28px rgba(201,168,76,0.35);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-primary:hover {
  background: var(--gold2); transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(201,168,76,0.5);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2rem; border: 1px solid rgba(196,221,237,0.25); color: var(--ice2);
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 300;
  border-radius: 1px; transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.btn-secondary:hover {
  border-color: rgba(201,168,76,0.5); background: rgba(201,168,76,0.05); color: var(--gold2);
}
.hero-phones {
  display: flex; gap: 2rem; flex-wrap: wrap;
  animation: fadeUp 1s var(--ease) 0.6s both;
}
.hero-phone {
  display: flex; align-items: center; gap: 0.65rem;
}
.phone-ring {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: border-color 0.2s, background 0.2s;
}
.hero-phone:hover .phone-ring { border-color: var(--gold); background: var(--gold-dim); }
.hero-phone a { font-size: 0.88rem; color: var(--gold3); font-weight: 300; transition: color 0.2s; }
.hero-phone:hover a { color: var(--gold2); }

/* ── Hero Right: Doctor + Card ── */
.hero-right {
  display: flex; flex-direction: column; gap: 1rem; align-items: flex-end;
  animation: fadeUp 1s var(--ease) 0.3s both;
}
.doctor-card {
  width: 100%; max-width: 400px;
  background: rgba(10,25,40,0.65);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 3px; overflow: hidden;
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 32px 80px rgba(5,14,26,0.8),
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 0 0 1px rgba(201,168,76,0.05);
}
.doctor-photo {
  height: 360px; overflow: hidden; position: relative;
  background: var(--navy3);
}
.doctor-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 10%;
  transition: transform 0.7s var(--ease);
  filter: brightness(0.95) saturate(0.9) contrast(1.05);
}
.doctor-card:hover .doctor-photo img { transform: scale(1.04); }
.doctor-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,25,40,0.75) 0%, transparent 55%);
}
.doctor-photo-tag {
  position: absolute; bottom: 1rem; left: 1rem;
  background: var(--gold); color: var(--navy);
  font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  padding: 0.35rem 0.85rem; border-radius: 1px;
  box-shadow: 0 2px 12px rgba(201,168,76,0.4);
}
.doctor-info {
  padding: 1.5rem 1.75rem;
}
.doctor-name {
  font-family: var(--serif); font-size: 1.35rem; color: var(--white); font-weight: 400;
}
.doctor-spec {
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-top: 0.2rem; font-weight: 400;
}
.doctor-sep {
  height: 1px; margin: 1.1rem 0;
  background: linear-gradient(90deg, rgba(201,168,76,0.25), transparent);
}
.doctor-stats {
  display: grid; grid-template-columns: repeat(3,1fr); text-align: center; gap: 0.5rem;
}
.ds-num {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 300;
  color: var(--gold2); display: block; line-height: 1;
}
.ds-lbl {
  font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(196,221,237,0.35); display: block; margin-top: 0.2rem;
}

/* Quick action chips */
.hero-chips {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem;
  width: 100%; max-width: 400px;
}
.chip {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.85rem 1.1rem;
  background: rgba(10,25,40,0.65); border: 1px solid rgba(201,168,76,0.14);
  backdrop-filter: blur(14px); border-radius: 2px;
  font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(196,221,237,0.7); font-weight: 300;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.chip:hover {
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.07); color: var(--gold3);
}
.chip-ico { font-size: 16px; flex-shrink: 0; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero-scroll span {
  font-size: 0.52rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(196,221,237,0.3);
}
.scroll-bar {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.7), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:0.3; transform:scaleY(0.7) translateY(-5px); }
  50%      { opacity:1;   transform:scaleY(1)   translateY(0); }
}

/* ═══════════════════════════════════════════════════
   STATS BAND
═══════════════════════════════════════════════════ */
.stats-band {
  background: var(--navy2);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  position: relative; overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(201,168,76,0.03) 0%, transparent 40%, rgba(30,95,158,0.06) 100%);
}
.stats-band-inner {
  max-width: 1380px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  position: relative; z-index: 1;
}
.stat-item {
  padding: 3rem 2rem; text-align: center;
  border-right: 1px solid rgba(201,168,76,0.1);
  position: relative; overflow: hidden;
  transition: background 0.35s;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold2));
  transition: width 0.4s var(--ease);
}
.stat-item:hover { background: rgba(201,168,76,0.04); }
.stat-item:hover::before { width: 80px; }
.stat-num {
  font-family: var(--serif); font-size: 3.2rem; font-weight: 300;
  color: var(--white); line-height: 1; display: block;
}
.stat-num em { color: var(--gold); font-style: normal; }
.stat-lbl {
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(196,221,237,0.3); margin-top: 0.5rem; display: block;
}

/* ═══════════════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════════════ */
.section { padding: 8rem 3.5rem; }
.wrap { max-width: 1380px; margin: 0 auto; }
.eyebrow {
  display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.7rem;
  font-size: 0.6rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); font-weight: 400;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.sec-title {
  font-family: var(--serif); font-size: 3.2rem; font-weight: 300; line-height: 1.15;
}
.sec-title em { font-style: italic; }
.sec-title-dark { color: var(--navy); }
.sec-title-dark em { color: var(--blue-mid); }
.sec-title-light { color: var(--white); }
.sec-title-light em { color: var(--gold2); }

/* ═══════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════ */
#hakkinda { background: var(--off-white); }
.about-grid {
  display: grid; grid-template-columns: 5fr 7fr; gap: 6rem; align-items: start;
}
/* Portrait */
.portrait-wrap { position: relative; }
.portrait-gold-corner {
  position: absolute; width: 56px; height: 56px;
  background: var(--gold); bottom: -14px; right: -14px;
  z-index: 0; border-radius: 1px;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.portrait-frame {
  position: relative; z-index: 1;
  aspect-ratio: 3/4; overflow: hidden; border-radius: 2px;
  box-shadow: 0 24px 60px rgba(5,14,26,0.2);
}
.portrait-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 8%;
  transition: transform 0.7s var(--ease);
  filter: brightness(1.02) saturate(0.95) contrast(1.03);
}
.portrait-wrap:hover .portrait-frame img { transform: scale(1.03); }
.portrait-frame::after {
  content: ''; position: absolute; inset: 0; border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(5,14,26,0.1);
}
/* Years badge */
.years-badge {
  position: absolute; top: 2rem; left: -1.75rem; z-index: 2;
  background: var(--navy); padding: 1.1rem 1.4rem;
  border-left: 3px solid var(--gold); border-radius: 1px;
  box-shadow: 0 8px 32px rgba(5,14,26,0.35);
  text-align: center;
}
.yb-num {
  font-family: var(--serif); font-size: 2.4rem; color: var(--white);
  line-height: 1; display: block;
}
.yb-lbl {
  font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(196,221,237,0.5); margin-top: 0.2rem;
}
/* About body */
.about-creds { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.about-cred {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.84rem; color: rgba(5,14,26,0.5); font-weight: 300;
}
.about-cred::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.about-body-text {
  font-size: 0.95rem; color: rgba(5,14,26,0.6); line-height: 1.95; font-weight: 300;
}
.about-body-text p+p { margin-top: 1rem; }
.about-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.about-tag {
  font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400;
  padding: 0.4rem 1rem; border: 1px solid rgba(22,59,94,0.2); color: var(--blue-mid);
  border-radius: 1px; cursor: default;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.about-tag:hover { background: var(--blue-mid); color: var(--white); border-color: var(--blue-mid); }

/* ═══════════════════════════════════════════════════
   SPECIALTIES
═══════════════════════════════════════════════════ */
#uzmanlik {
  background: var(--navy);
  background-image: url('../images/hero-texture.png');
  background-size: cover; background-position: center;
  position: relative;
}
#uzmanlik::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(5,14,26,0.88); z-index: 0;
}
#uzmanlik .wrap { position: relative; z-index: 1; }

.spec-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: end; margin-bottom: 4rem;
}
.spec-intro {
  font-size: 0.92rem; color: rgba(196,221,237,0.5); line-height: 1.95; font-weight: 300;
}

/* Specialty cards */
.spec-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.1); border-radius: 2px; overflow: hidden;
}
.spec-card {
  background: rgba(10,25,40,0.8);
  padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  cursor: default; transition: background 0.4s var(--ease);
  display: flex; flex-direction: column; align-items: flex-start;
}
.spec-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  opacity: 0; transition: opacity 0.4s;
}
.spec-card:hover { background: rgba(15,37,64,0.95); }
.spec-card:hover::before { opacity: 1; }

/* Anatomy icon in card */
.spec-icon-wrap {
  width: 80px; height: 80px; margin-bottom: 1.5rem;
  position: relative; flex-shrink: 0;
}
.spec-icon-wrap img {
  width: 100%; height: 100%; object-fit: contain;
  filter: invert(0) brightness(1);
  mix-blend-mode: screen;
  transition: transform 0.4s var(--ease), filter 0.4s;
}
.spec-card:hover .spec-icon-wrap img {
  transform: scale(1.12) translateY(-3px);
  filter: brightness(1.3) drop-shadow(0 0 8px rgba(201,168,76,0.5));
}
.spec-num {
  position: absolute; top: 1.75rem; right: 1.75rem;
  font-family: var(--serif); font-size: 3rem; font-weight: 300; line-height: 1;
  color: rgba(201,168,76,0.07); user-select: none;
  transition: color 0.4s;
}
.spec-card:hover .spec-num { color: rgba(201,168,76,0.12); }
.spec-title {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 400;
  color: var(--white); margin-bottom: 0.65rem;
  transition: color 0.3s;
}
.spec-card:hover .spec-title { color: var(--gold2); }
.spec-desc {
  font-size: 0.8rem; color: rgba(196,221,237,0.45); line-height: 1.8; font-weight: 300;
}
.spec-card:hover .spec-desc { color: rgba(196,221,237,0.65); }

/* ═══════════════════════════════════════════════════
   QUOTE SECTION
═══════════════════════════════════════════════════ */
.quote-section {
  position: relative; overflow: hidden; padding: 9rem 3.5rem;
  display: flex; align-items: center;
}
.quote-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../images/hero-xray-bg.png');
  background-size: cover; background-position: center 20%;
  filter: brightness(0.2) saturate(0.6);
  transform: scaleX(-1);
}
.quote-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(5,14,26,0.97) 0%, rgba(5,14,26,0.7) 55%, rgba(5,14,26,0.9) 100%),
    linear-gradient(to top, rgba(5,14,26,0.7) 0%, transparent 50%);
}
.quote-inner {
  position: relative; z-index: 2;
  max-width: 1380px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: auto 1fr; gap: 5rem; align-items: center;
}
.quote-caduceus {
  width: 80px; opacity: 0.7;
  filter: brightness(1) drop-shadow(0 0 12px rgba(201,168,76,0.3));
  mix-blend-mode: screen;
  animation: floatSymbol 4s ease-in-out infinite;
}
@keyframes floatSymbol {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
blockquote {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.55;
  border-left: 2px solid var(--gold); padding-left: 2.75rem;
}
blockquote cite {
  display: block; margin-top: 1.5rem; font-style: normal;
  font-family: var(--sans); font-size: 0.65rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(196,221,237,0.4); font-weight: 300;
}

/* ═══════════════════════════════════════════════════
   CONDITIONS
═══════════════════════════════════════════════════ */
#hastaliklar { background: var(--off-white); }
.cond-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 3.5rem;
}
.cond-intro { font-size: 0.92rem; color: rgba(5,14,26,0.5); line-height: 1.95; font-weight: 300; }
.cond-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid rgba(5,14,26,0.1); border-radius: 2px; overflow: hidden;
}
.cond-item {
  padding: 1.1rem 1.3rem;
  border-right: 1px solid rgba(5,14,26,0.08);
  border-bottom: 1px solid rgba(5,14,26,0.08);
  background: var(--white);
  font-size: 0.8rem; color: rgba(5,14,26,0.55); font-weight: 300;
  display: flex; align-items: center; gap: 0.65rem;
  transition: background 0.2s, color 0.2s;
  cursor: default;
}
.cond-item:hover { background: var(--navy); color: var(--ice2); }
.cond-item:nth-child(4n) { border-right: none; }
.cond-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: 0.5; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
#iletisim {
  background: var(--navy2);
  background-image: url('../images/hero-texture.png');
  background-size: cover; position: relative;
}
#iletisim::before {
  content: ''; position: absolute; inset: 0; background: rgba(5,14,26,0.9); z-index: 0;
}
#iletisim .wrap { position: relative; z-index: 1; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.cinfo { display: flex; flex-direction: column; gap: 2.25rem; }
.ci-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.ci-ico {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 1px;
  border: 1px solid rgba(201,168,76,0.25); background: rgba(201,168,76,0.06);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  transition: background 0.2s, border-color 0.2s;
}
.ci-item:hover .ci-ico { background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.45); }
.ci-lbl { font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(201,168,76,0.6); margin-bottom: 0.35rem; }
.ci-val { font-size: 0.9rem; color: rgba(196,221,237,0.75); font-weight: 300; line-height: 1.7; }
.ci-val a { color: var(--gold2); transition: color 0.2s; }
.ci-val a:hover { color: var(--gold3); }

/* Form */
.cform {
  background: rgba(10,25,40,0.7); border: 1px solid rgba(201,168,76,0.18);
  border-radius: 3px; padding: 2.75rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 64px rgba(5,14,26,0.5);
}
.cform-title {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 300; color: var(--white); margin-bottom: 0.25rem;
}
.cform-sub { font-size: 0.78rem; color: rgba(196,221,237,0.35); font-weight: 300; margin-bottom: 2rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.fg { margin-bottom: 1.1rem; }
.fg label {
  display: block; font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(201,168,76,0.55); margin-bottom: 0.5rem;
}
.fg input, .fg textarea, .fg select {
  width: 100%; padding: 0.85rem 1rem;
  background: rgba(5,14,26,0.6); border: 1px solid rgba(196,221,237,0.12);
  border-radius: 1px; font-family: var(--sans); font-size: 0.86rem;
  color: var(--white); font-weight: 300; outline: none;
  transition: border-color 0.25s, background 0.25s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: rgba(201,168,76,0.5); background: rgba(5,14,26,0.8);
}
.fg textarea { min-height: 105px; resize: vertical; }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(196,221,237,0.2); }
.fg select option { background: var(--navy); }
.fsep { height: 1px; background: rgba(201,168,76,0.12); margin: 1.25rem 0; }
.fsubmit {
  width: 100%; padding: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy); border: none; font-family: var(--sans);
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; cursor: pointer; border-radius: 1px;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
  transition: opacity 0.25s, transform 0.2s, box-shadow 0.25s;
}
.fsubmit:hover {
  opacity: 0.92; transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
}


/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 2.5rem 3.5rem;
}
.footer-inner {
  max-width: 1380px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: center;
}
.footer-logo {
  display: flex; align-items: center; gap: 0.75rem;
}
.footer-logo-icon {
  width: 28px; height: 28px; object-fit: contain; mix-blend-mode: screen; filter: brightness(1.1);
}
.footer-logo-name { font-family: var(--serif); font-size: 0.95rem; color: var(--ice2); }
.footer-logo-name span { color: var(--gold); }
.footer-copy { text-align: center; font-size: 0.65rem; letter-spacing: 0.06em; color: rgba(196,221,237,0.2); }
.footer-disc { font-size: 0.62rem; color: rgba(196,221,237,0.18); text-align: right; line-height: 1.7; }

/* Designed-by credit — subtle, centered, compact */
.footer-credit {
  margin-top: 1rem;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(196,221,237,0.18);
}
.footer-credit a {
  color: rgba(196,221,237,0.35);
  text-decoration: none;
  margin-left: 0.4em;
  transition: color 0.3s ease;
}
.footer-credit a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════
   ANIMATIONS & REVEAL
═══════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
.reveal {
  opacity:0; transform:translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity:1; transform:translateY(0); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width:1100px) {
  .hero-inner { grid-template-columns:1fr; padding:8rem 2rem 5rem; }
  .hero-right { align-items:flex-start; flex-direction:row; flex-wrap:wrap; }
  .about-grid { grid-template-columns:1fr; gap:3rem; }
  .spec-grid { grid-template-columns:1fr 1fr; }
  .spec-header { grid-template-columns:1fr; gap:1.5rem; }
  .cond-grid { grid-template-columns:1fr 1fr; }
  .cond-header { grid-template-columns:1fr; gap:1.5rem; }
  .contact-grid { grid-template-columns:1fr; gap:3rem; }
  .quote-inner { grid-template-columns:1fr; gap:2rem; }
}
@media (max-width:768px) {
  #nav { padding:0 1.5rem; }
  .nav-center { display:none; }
  .section { padding:5rem 1.5rem; }
  .hero-inner { padding:7rem 1.5rem 4rem; }
  .hero-h1-first { font-size:3.5rem; }
  .hero-h1-last  { font-size:4rem; }
  .stats-band-inner { grid-template-columns:1fr 1fr; }
  .spec-grid { grid-template-columns:1fr; }
  .cond-grid { grid-template-columns:1fr 1fr; }
  .sec-title { font-size:2.2rem; }
  .frow { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr; text-align:center; }
  .footer-disc,.footer-copy { text-align:center; }
}

/* ═══ TIMELINE ═══ */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 110px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.3) 5%, rgba(201,168,76,0.3) 95%, transparent);
}
.tl-item {
  display: grid; grid-template-columns: 90px 40px 1fr;
  gap: 0 1.5rem; align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.06);
}
.tl-item:last-child { border-bottom: none; }
.tl-year {
  font-family: var(--serif); font-size: 1rem; font-weight: 400;
  color: rgba(196,221,237,0.45); text-align: right; padding-top: 0.15rem;
  letter-spacing: 0.04em;
}
.tl-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--navy3); border: 2px solid rgba(201,168,76,0.5);
  margin: 0 auto; margin-top: 0.35rem; flex-shrink: 0;
  position: relative; z-index: 1;
  transition: background 0.3s, border-color 0.3s;
}
.tl-dot-gold { background: var(--gold) !important; border-color: var(--gold2) !important; box-shadow: 0 0 10px rgba(201,168,76,0.5); }
.tl-item:hover .tl-dot { background: var(--gold); border-color: var(--gold2); }
.tl-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.1);
  border-radius: 2px; padding: 1.1rem 1.4rem;
  transition: background 0.25s, border-color 0.25s;
}
.tl-card-gold { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.06); }
.tl-item:hover .tl-card { background: rgba(201,168,76,0.05); border-color: rgba(201,168,76,0.2); }
.tl-title {
  font-family: var(--serif); font-size: 1.05rem; color: var(--white);
  font-weight: 400; margin-bottom: 0.4rem;
}
.tl-text { font-size: 0.82rem; color: rgba(196,221,237,0.5); line-height: 1.75; font-weight: 300; }
.tl-text strong { color: rgba(196,221,237,0.8); font-weight: 500; }

/* ═══ TABS ═══ */
.tab-bar {
  display: flex; gap: 0; margin-bottom: 2rem;
  border: 1px solid rgba(5,14,26,0.12); border-radius: 2px; overflow: hidden;
}
.tab-btn {
  flex: 1; padding: 0.9rem 1rem; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 400;
  background: var(--white); color: rgba(5,14,26,0.45);
  border-right: 1px solid rgba(5,14,26,0.1);
  transition: background 0.2s, color 0.2s;
}
.tab-btn:last-child { border-right: none; }
.tab-btn:hover { background: rgba(201,168,76,0.06); color: var(--navy); }
.tab-btn.active { background: var(--navy); color: var(--gold2); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ═══ PUBLICATIONS ═══ */
.pub-list { display: flex; flex-direction: column; gap: 0; }
.pub-item {
  display: grid; grid-template-columns: 54px 1fr;
  gap: 1.5rem; padding: 1.25rem 1rem;
  border-bottom: 1px solid rgba(5,14,26,0.07);
  transition: background 0.2s;
}
.pub-item:hover { background: rgba(201,168,76,0.03); }
.pub-item:last-child { border-bottom: none; }
.pub-year {
  font-family: var(--serif); font-size: 0.85rem;
  color: var(--gold); font-weight: 500; padding-top: 0.1rem;
}
.pub-title {
  font-size: 0.88rem; color: var(--navy); font-weight: 400; line-height: 1.5;
  margin-bottom: 0.3rem;
}
.pub-journal {
  font-size: 0.75rem; color: rgba(5,14,26,0.45); font-weight: 300; font-style: italic;
}
.pub-journal strong { font-style: normal; color: var(--blue-mid); }

/* ═══ SPEAKING GRID ═══ */
.speak-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem;
}
.speak-card {
  background: var(--white); border: 1px solid rgba(5,14,26,0.08);
  border-radius: 2px; padding: 1.25rem;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.speak-card:hover {
  box-shadow: 0 8px 32px rgba(5,14,26,0.1);
  transform: translateY(-2px); border-color: rgba(201,168,76,0.3);
}
.speak-role {
  font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; padding: 0.25rem 0.65rem; border-radius: 1px;
  display: inline-block; margin-bottom: 0.75rem;
}
.speak-role-konusma { background: rgba(30,95,158,0.1); color: var(--blue-mid); }
.speak-role-egitmen { background: rgba(201,168,76,0.12); color: #8a6800; }
.speak-role-baskn   { background: rgba(80,150,80,0.1);  color: #2d6b2d; }
.speak-title {
  font-size: 0.84rem; color: var(--navy); font-weight: 400; line-height: 1.5; margin-bottom: 0.5rem;
}
.speak-event {
  font-size: 0.72rem; color: rgba(5,14,26,0.4); font-weight: 300; font-style: italic;
}
@media (max-width:900px) { .speak-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:600px) {
  .speak-grid { grid-template-columns:1fr; }
  .tab-btn { font-size:0.58rem; padding:0.75rem 0.5rem; }
  .timeline::before { left:80px; }
  .tl-item { grid-template-columns:60px 30px 1fr; }
}


/* ── LANGUAGE TOGGLE ── */
.lang-toggle { display:flex;align-items:center;gap:0;border:1px solid rgba(201,168,76,0.4);border-radius:2px;overflow:hidden;margin-left:1.5rem; }
.lang-btn { font-size:0.62rem;letter-spacing:0.16em;text-transform:uppercase;font-weight:500;padding:0.45rem 0.85rem;cursor:pointer;border:none;background:transparent;color:rgba(196,221,237,0.5);transition:background 0.2s,color 0.2s; }
.lang-btn.active { background:var(--gold);color:var(--navy);font-weight:600; }
.lang-btn:not(.active):hover { color:var(--gold2); }



/* === BLOCK BOUNDARY === */


/* ── Reviews Carousel Styles ── */
.rev-card {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .rev-card { flex: 0 0 50%; max-width: 50%; }
}
@media (min-width: 1100px) {
  .rev-card { flex: 0 0 33.333%; max-width: 33.333%; }
}
.rev-card-inner {
  background: var(--navy2);
  border-top: 2px solid var(--gold);
  border-radius: 2px;
  padding: 2rem 1.75rem 1.6rem;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.rev-card-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.15);
}
.rev-top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}
.rev-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: 0.75rem; font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.rev-name {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}
.rev-stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
}
.rev-quote {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 0.6;
  margin-bottom: 0.5rem;
  font-style: italic;
}
.rev-text {
  font-family: var(--serif);
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(196,221,237,0.75);
  font-style: italic;
  margin: 0 0 1.2rem;
}
.rev-footer {
  display: flex;
  align-items: center;
}
.rev-badge {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(196,221,237,0.35);
  border: 1px solid rgba(196,221,237,0.12);
  padding: 0.25rem 0.6rem;
  border-radius: 1px;
}
.rev-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.35);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.rev-nav-btn:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  transform: scale(1.08);
}
.rev-nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
}
.rev-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(201,168,76,0.25);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
  padding: 0;
}
.rev-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}


/* === BLOCK BOUNDARY === */


/* ═══════════════════════════════════════════════════
   HAMBURGER BUTTON
═══════════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 0.75rem;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 1px;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════
   MOBILE DRAWER
═══════════════════════════════════════════════════ */
.mobile-nav-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 1500;
  background: rgba(5,14,26,0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-nav-overlay.visible { opacity: 1; }
.mobile-nav-drawer {
  position: fixed; top: 0; right: -100%; z-index: 1600;
  width: min(320px, 88vw);
  height: 100dvh;
  background: linear-gradient(160deg, var(--navy2), var(--navy3));
  border-left: 1px solid rgba(201,168,76,0.15);
  display: flex; flex-direction: column;
  padding: 0;
  transition: right 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  overflow-y: auto;
}
.mobile-nav-drawer.open { right: 0; }
.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.mobile-nav-logo {
  font-family: var(--serif); font-size: 1rem; color: var(--white);
  letter-spacing: 0.03em;
}
.mobile-nav-close {
  background: none; border: none; cursor: pointer;
  color: rgba(196,221,237,0.5); font-size: 1.1rem;
  padding: 4px 8px;
  transition: color 0.2s;
}
.mobile-nav-close:hover { color: var(--gold); }
.mobile-nav-links {
  list-style: none; padding: 1.25rem 0; margin: 0;
  flex: 1;
}
.mobile-nav-links li a {
  display: block;
  padding: 1rem 1.75rem;
  font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(196,221,237,0.65); font-weight: 300;
  border-bottom: 1px solid rgba(201,168,76,0.06);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-links li a:hover {
  color: var(--gold2);
  padding-left: 2.25rem;
}
.mobile-nav-cta {
  display: block; margin: 1.25rem 1.5rem;
  padding: 0.9rem 1.5rem; text-align: center;
  border: 1px solid var(--gold); color: var(--gold);
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  border-radius: 1px;
  transition: background 0.25s, color 0.25s;
}
.mobile-nav-cta:hover { background: var(--gold); color: var(--navy); }
.mobile-nav-lang {
  display: flex; justify-content: center; gap: 0;
  border: 1px solid rgba(201,168,76,0.4); border-radius: 2px;
  overflow: hidden; margin: 0 1.5rem 2rem;
}
.mobile-nav-lang .lang-btn {
  flex: 1; padding: 0.55rem 1rem;
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  cursor: pointer; border: none; background: transparent;
  color: rgba(196,221,237,0.5); transition: background 0.2s, color 0.2s;
}
.mobile-nav-lang .lang-btn.active { background: var(--gold); color: var(--navy); font-weight: 600; }

/* ═══════════════════════════════════════════════════
   MOBILE RESPONSIVE — 480px and below
═══════════════════════════════════════════════════ */
/* ═══ TABLET — 768px to 1024px ═══ */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Nav */
  #nav { padding: 0 2rem; }
  .nav-center ul { gap: 1.5rem; }
  .nav-center a { font-size: 0.62rem; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    padding: 8rem 2rem 5rem;
    gap: 3rem;
  }
  .hero-h1-first { font-size: 3.8rem; }
  .hero-h1-last  { font-size: 4.4rem; }
  .hero-desc { font-size: 1.1rem; max-width: 420px; }
  .hero-right { display: flex; }
  .hero-chips { grid-template-columns: 1fr 1fr; gap: 0.6rem; }

  /* Stats band */
  .stats-band-inner { grid-template-columns: repeat(4, 1fr); }

  /* Sections */
  .section { padding: 5rem 2rem; }
  .sec-title { font-size: 2.4rem; }
  .wrap { max-width: 100%; padding: 0; }

  /* About */
  .about-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }

  /* Specialties */
  .spec-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .spec-header { grid-template-columns: 1fr; gap: 1.25rem; }

  /* Conditions */
  .cond-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .cond-header { grid-template-columns: 1fr; gap: 1.25rem; }

  /* Reviews carousel */
  .rev-card { flex: 0 0 50%; max-width: 50%; }

  /* Timeline */
  .tl-item { grid-template-columns: 80px 36px 1fr; }

  /* Speaking grid */
  .speak-grid { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .frow { grid-template-columns: 1fr 1fr; }

  /* Quote */
  .quote-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav items */
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .lang-toggle { display: none; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 6rem 1.25rem 3.5rem;
    gap: 2rem;
  }
  .hero-right { display: none; } /* hide doctor card on small screens */
  .hero-h1-prof { font-size: 0.9rem; }
  .hero-h1-first { font-size: 2.8rem; }
  .hero-h1-last  { font-size: 3.2rem; }
  .hero-desc { font-size: 0.85rem; }
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .hero-actions a { width: 100%; justify-content: center; }
  .hero-chips { grid-template-columns: 1fr; gap: 0.5rem; }
  .hero-phones { flex-direction: column; gap: 0.75rem; }
  .hero-scroll { display: none; }

  /* Stats band */
  .stats-band-inner { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 2.4rem; }

  /* Sections */
  .section { padding: 4rem 1.25rem; }
  .sec-title { font-size: 2rem; }
  .sec-sub   { font-size: 0.75rem; }
  .wrap { padding: 0; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Specialties */
  .spec-grid { grid-template-columns: 1fr; }
  .spec-header { grid-template-columns: 1fr; gap: 1rem; }

  /* Diseases */
  .cond-grid { grid-template-columns: 1fr; }
  .cond-header { grid-template-columns: 1fr; gap: 1rem; }

  /* Timeline */
  .timeline::before { left: 60px; }
  .tl-item { grid-template-columns: 50px 28px 1fr; gap: 0 0.75rem; }
  .tl-year  { font-size: 0.78rem; }
  .tl-title { font-size: 0.92rem; }

  /* Tab bar */
  .tab-bar { flex-wrap: wrap; }
  .tab-btn  { font-size: 0.6rem; padding: 0.7rem 0.5rem; }

  /* Speaking grid */
  .speak-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .frow { grid-template-columns: 1fr; }

  /* Form */
  input, textarea, select {
    font-size: 16px !important; /* prevent iOS zoom */
  }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .footer-disc, .footer-copy { text-align: center; }

  /* Nav */
  #nav { padding: 0 1.25rem; height: 64px; }

  /* Quote / blockquote section */
  .quote-inner { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Doctor stats inside hero card (if visible) */
  .doctor-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
  .hero-h1-first { font-size: 2.3rem; }
  .hero-h1-last  { font-size: 2.6rem; }
  .stats-band-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.1); }
}


/* === BLOCK BOUNDARY === */


  #waBtn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.55), 0 2px 8px rgba(0,0,0,0.3);
  }
  #waTooltip.wa-visible {
    opacity: 1 !important;
    transform: translateX(0) !important;
    pointer-events: auto !important;
  }
  @media (max-width: 480px) {
    #waFloat { bottom: 1.25rem; right: 1.25rem; }
    #waBtn { width: 50px; height: 50px; }
    #waBtn svg { width: 24px; height: 24px; }
  }


/* ═════════════════════════════════════════════════════════════
 * DEEP PAGE STYLES
 * Standalone section pages (page-hakkinda.php, page-uzmanlik.php
 * etc.) re-use the same section markup as the front page, but
 * need a little extra top spacing because there's no hero above.
 * ═════════════════════════════════════════════════════════════ */
.deep-page > section:first-child,
.deep-page > section:first-of-type {
  padding-top: 9rem;
}

.deep-page-extra {
  background: var(--off-white);
}

.deep-page .prose {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--navy);
}

.deep-page .prose h2 {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
}

.deep-page .prose h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--teal);
  margin: 2rem 0 .75rem;
}

.deep-page .prose p {
  margin: 0 0 1.25rem;
}

.deep-page .prose a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.deep-page .prose a:hover {
  color: var(--gold2);
}

/* ═════════════════════════════════════════════════════════════
 * HASTA REHBERİ — Patient Guides (articles)
 *
 * All styling locked to the theme palette and typography. The
 * doctor uses the standard WP editor; whatever they put inside
 * (h2/h3/p/lists/blockquote/img/table) gets these styles
 * automatically. They cannot override design from admin.
 * ═════════════════════════════════════════════════════════════ */

/* ─── Single article ──────────────────────────────────────── */
.article-single {
  background: var(--off-white);
  color: var(--navy);
}

.article-hero {
  position: relative;
  padding: 9rem 0 5rem;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.article-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.article-hero-texture {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, rgba(22,59,94,0.4), rgba(5,14,26,0.6));
}
.article-hero-inner {
  position: relative; z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.article-breadcrumb {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(196,221,237,0.6);
  margin-bottom: 2rem;
}
.article-breadcrumb a { color: inherit; text-decoration: none; transition: color .2s; }
.article-breadcrumb a:hover { color: var(--gold); }
.article-breadcrumb .bc-sep { margin: 0 .6rem; color: var(--gold); }

/* New unified breadcrumb (language-aware, matches JSON-LD schema) */
.ea-breadcrumb {
  margin-bottom: 1.5rem;
}
.ea-breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(196,221,237,0.65);
}
.ea-breadcrumb-item {
  display: inline-flex;
  align-items: center;
}
.ea-breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}
.ea-breadcrumb-item a:hover { color: var(--gold); }
.ea-breadcrumb-item.is-current span {
  color: rgba(255,255,255,0.85);
}
.ea-breadcrumb-sep {
  display: inline-block;
  margin: 0 .55rem;
  color: var(--gold);
  font-weight: 400;
}

/* Light-background breadcrumb variant (for deep pages with cream/light bg) */
.ea-breadcrumb-light .ea-breadcrumb-list {
  color: rgba(22,59,94,0.55);
}
.ea-breadcrumb-light .ea-breadcrumb-item.is-current span {
  color: var(--navy);
}

.article-cat-badge {
  display: inline-block;
  padding: .35rem .9rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.article-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 1.5rem;
  color: var(--white);
}

.article-summary {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.article-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-family: var(--sans);
  font-size: .8rem;
  color: rgba(196,221,237,0.7);
}
.article-meta-item { display: flex; align-items: center; gap: .4rem; }
.article-meta-item svg { color: var(--gold); flex-shrink: 0; }
.article-meta-item strong { color: var(--gold2); font-weight: 500; }
.article-meta-author { color: var(--gold2); }

/* ─── Body layout ─────────────────────────────────────────── */
.article-body-wrap { padding: 4rem 0; }
.article-body-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
}
@media (max-width: 900px) {
  .article-body-inner { grid-template-columns: 1fr; gap: 2rem; }
}

.article-content { min-width: 0; }
.article-featured-image {
  margin: 0 0 2.5rem;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(22,59,94,0.1);
}
.article-featured-image img { width: 100%; height: auto; display: block; }

/* ─── Prose styling (governs the WP editor output) ────────── */
.article-prose {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--navy);
}
.article-prose > * + * { margin-top: 1.25rem; }

.article-prose h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--navy);
  margin: 3rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  letter-spacing: -.01em;
}
.article-prose h2:first-child { margin-top: 0; }
.article-prose h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--teal);
  margin: 2.5rem 0 .75rem;
}
.article-prose h4 {
  font-family: var(--sans);
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 2rem 0 .5rem;
  font-weight: 500;
}
.article-prose p { margin: 0 0 1.25rem; }
.article-prose a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(46,107,138,0.4);
  transition: text-decoration-color .2s;
}
.article-prose a:hover { text-decoration-color: var(--teal); }
.article-prose strong { color: var(--navy); font-weight: 600; }
.article-prose em { font-style: italic; color: var(--teal); }

.article-prose ul, .article-prose ol {
  margin: 0 0 1.25rem 1.5rem;
  padding: 0;
}
.article-prose li { margin-bottom: .5rem; }
.article-prose ul li::marker { color: var(--gold); }
.article-prose ol li::marker { color: var(--gold); font-weight: 600; }

.article-prose blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--gold);
  background: rgba(201,168,76,0.05);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--navy);
}
.article-prose blockquote p:last-child { margin-bottom: 0; }

.article-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1.5rem 0;
  border: 1px solid rgba(22,59,94,0.1);
}
.article-prose figure { margin: 1.5rem 0; }
.article-prose figcaption {
  font-size: .85rem;
  color: rgba(22,59,94,0.6);
  text-align: center;
  margin-top: .5rem;
  font-style: italic;
}

.article-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .95rem;
}
.article-prose th {
  background: var(--navy);
  color: var(--white);
  padding: .75rem 1rem;
  text-align: left;
  font-weight: 500;
  font-family: var(--sans);
}
.article-prose td {
  padding: .75rem 1rem;
  border-bottom: 1px solid rgba(22,59,94,0.08);
}

.article-prose hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
  margin: 3rem 0;
}

.article-prose code {
  background: rgba(22,59,94,0.06);
  padding: .15rem .4rem;
  border-radius: 2px;
  font-size: .9em;
  color: var(--teal);
}

/* ─── CTA block ───────────────────────────────────────────── */
.article-cta {
  margin: 3rem 0 0;
  padding: 2rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.article-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(201,168,76,0.15), transparent 60%);
  pointer-events: none;
}
.article-cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.article-cta-text h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 .5rem;
}
.article-cta-text p { margin: 0; color: rgba(255,255,255,0.75); font-size: .95rem; }
.article-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.6rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  border-radius: 2px;
  transition: background .2s;
  white-space: nowrap;
}
.article-cta-btn:hover { background: var(--gold2); }

/* ─── Sidebar ─────────────────────────────────────────────── */
.article-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.article-side-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(22,59,94,0.1);
  border-radius: 4px;
}
.article-side-eyebrow {
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.article-side-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 .5rem;
  color: var(--navy);
}
.article-side-text { font-size: .9rem; color: rgba(22,59,94,0.7); margin: 0 0 .75rem; line-height: 1.55; }
.article-side-link {
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
}
.article-side-link:hover { color: var(--gold); }
.article-side-contact-line {
  display: flex; align-items: center; gap: .5rem;
  color: var(--navy);
  text-decoration: none;
  font-family: var(--sans);
  font-size: .95rem;
  padding: .25rem 0;
}
.article-side-contact-line svg { color: var(--gold); }
.article-side-contact-line:hover { color: var(--teal); }

/* ─── Related articles ────────────────────────────────────── */
.article-related {
  padding: 5rem 0;
  background: var(--navy2);
  color: var(--white);
}
.article-related-header { text-align: center; margin-bottom: 3rem; }
.article-related-header .eyebrow { justify-content: center; }
.article-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* ─── Article card ────────────────────────────────────────── */
.article-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  color: var(--navy);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid rgba(255,255,255,0.05);
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.article-card-image {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
  overflow: hidden;
}
img.article-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article-card-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 4rem;
  font-style: italic;
}
.article-card-body {
  padding: 1.4rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.article-card-cat {
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.article-card-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 .6rem;
  color: var(--navy);
  line-height: 1.3;
}
.article-card-summary {
  font-family: var(--sans);
  font-size: .9rem;
  color: rgba(22,59,94,0.65);
  line-height: 1.6;
  margin: 0 0 1rem;
  flex-grow: 1;
}
.article-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .75rem;
  border-top: 1px solid rgba(22,59,94,0.08);
}
.article-card-recovery {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--sans);
  font-size: .75rem;
  color: var(--teal);
  font-weight: 500;
}
.article-card-arrow {
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform .25s;
}
.article-card:hover .article-card-arrow { transform: translateX(4px); }

/* ─── Archive page ────────────────────────────────────────── */
.article-archive { background: var(--off-white); min-height: 100vh; }
.article-archive-hero {
  position: relative;
  padding: 9rem 0 4rem;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}
.archive-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.1) 0%, transparent 65%);
}
.archive-hero-texture {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(22,59,94,0.4), rgba(5,14,26,0.7));
}
.archive-eyebrow {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  position: relative; z-index: 1;
}
.archive-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  margin: 0 0 1rem;
  line-height: 1.15;
  position: relative; z-index: 1;
  color: var(--white);
}
.archive-title em { color: var(--gold2); font-style: italic; }
.archive-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--sans);
  font-size: 1rem;
  color: rgba(196,221,237,0.7);
  line-height: 1.6;
  position: relative; z-index: 1;
}
.archive-filters {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem;
  position: relative; z-index: 1;
}
.archive-filter {
  padding: .55rem 1.2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.3);
  color: rgba(255,255,255,0.75);
  font-family: var(--sans);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all .2s;
}
.archive-filter:hover, .archive-filter.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.article-archive-grid-section { padding: 4rem 0 6rem; }
.article-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.article-archive-pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
.article-archive-pagination .page-numbers {
  display: inline-block;
  padding: .5rem 1rem;
  margin: 0 .25rem;
  font-family: var(--sans);
  color: var(--navy);
  text-decoration: none;
  border: 1px solid rgba(22,59,94,0.15);
  border-radius: 2px;
  transition: all .2s;
}
.article-archive-pagination .page-numbers.current,
.article-archive-pagination .page-numbers:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.article-archive-empty {
  text-align: center;
  padding: 4rem 1rem;
}
.article-archive-empty h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--navy);
  margin: 0 0 .75rem;
}
.article-archive-empty p { color: rgba(22,59,94,0.6); }

/* ─── Auto-link styling on conditions ────────────────────── */
.cond-item.cond-item-linked {
  cursor: pointer;
  transition: color .2s;
}
.cond-item.cond-item-linked:hover { color: var(--gold); }
.cond-item.cond-item-linked .cond-arrow {
  display: inline-block;
  margin-left: .3rem;
  color: var(--gold);
  font-size: .85em;
  opacity: 0;
  transition: opacity .2s, transform .2s;
}
.cond-item.cond-item-linked:hover .cond-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* ═════════════════════════════════════════════════════════════
 * INLINE ARTICLE EXPAND PANELS
 * Click a condition in the Tedaviler grid → matching panel
 * slides open inline, full-width, with the article content.
 * Each article also has its own /hasta-rehberi/{slug}/ page
 * for direct visits and SEO.
 * ═════════════════════════════════════════════════════════════ */

.cond-item-linked {
  position: relative;
  cursor: pointer;
}
.cond-item-linked .cond-arrow {
  display: inline-block;
  margin-left: auto;
  font-size: 1.1em;
  color: var(--gold);
  transition: transform .25s ease;
  font-weight: 300;
}
.cond-item-linked.is-open .cond-arrow {
  transform: rotate(45deg); /* + becomes × visually */
}

.cond-panel {
  margin: 1rem 0 0;
  background: var(--white);
  border: 1px solid rgba(22,59,94,0.1);
  border-radius: 4px;
  overflow: hidden;
  animation: condPanelOpen .35s ease;
}
.cond-panel[hidden] { display: none; }

@keyframes condPanelOpen {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cond-panel-inner {
  position: relative;
  padding: 3rem clamp(1.5rem, 5vw, 4rem) 3rem;
  max-width: 920px;
  margin: 0 auto;
}

.cond-panel-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(22,59,94,0.06);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
  transition: background .2s, transform .2s;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cond-panel-close:hover {
  background: var(--navy);
  color: var(--white);
  transform: rotate(90deg);
}

.cond-panel-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.cond-panel-eyebrow {
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.cond-panel-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  margin: 0 0 .75rem;
  color: var(--navy);
  line-height: 1.2;
}
.cond-panel-summary {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(22,59,94,0.7);
  line-height: 1.55;
  margin: 0 0 1rem;
}
.cond-panel-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cond-panel-recovery {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--sans);
  font-size: .85rem;
  color: var(--teal);
}
.cond-panel-recovery svg { color: var(--gold); }
.cond-panel-recovery strong { color: var(--navy); font-weight: 600; }

.cond-panel-image {
  margin: 0 0 2rem;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(22,59,94,0.1);
}
.cond-panel-image img { width: 100%; height: auto; display: block; }

/* Panel body inherits .article-prose styling already defined above */
.cond-panel-body { /* prose handles it */ }

.cond-panel-foot {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(22,59,94,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.cond-panel-share {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}
.cond-panel-share:hover { color: var(--gold); }
.cond-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.4rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  border-radius: 2px;
  transition: background .2s;
}
.cond-panel-cta:hover { background: var(--teal); }

/* Smaller spacing on mobile */
@media (max-width: 700px) {
  .cond-panel-inner { padding: 2.5rem 1.25rem 2.5rem; }
  .cond-panel-close { top: .5rem; right: .5rem; }
}

/* ─── Bilingual body visibility ────────────────────────── */
.article-prose-en { display: none; }
html.lang-en .article-prose-en { display: block; }
html.lang-en .article-prose-tr { display: none; }

/* ═════════════════════════════════════════════════════════════
 * PREMIUM PROSE TYPOGRAPHY — for article body content
 * Refined typography for medical article content inside the
 * inline panels and standalone single-article pages.
 * ═════════════════════════════════════════════════════════════ */

/* Reset and base prose */
.cond-panel-body .article-prose,
.article-content .article-prose {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #1a2942;
  letter-spacing: 0;
  max-width: 100%;
}

/* First paragraph after panel title — slightly bigger for editorial feel */
.cond-panel-body .article-prose > p:first-of-type {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #2a3e5c;
  margin-bottom: 1.75rem;
}

/* H2 — major section dividers (Symptoms, Diagnosis, Treatment, etc.) */
.cond-panel-body .article-prose h2,
.article-content .article-prose h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 500;
  font-style: normal;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 3rem 0 1rem;
  padding-bottom: 0.6rem;
  border: none;
  position: relative;
}
.cond-panel-body .article-prose h2::after,
.article-content .article-prose h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* H3 — sub-sections (Non-Surgical, Surgical, FAQ questions) */
.cond-panel-body .article-prose h3,
.article-content .article-prose h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  color: var(--teal);
  margin: 2.25rem 0 0.75rem;
  letter-spacing: 0;
}

/* Paragraphs */
.cond-panel-body .article-prose p,
.article-content .article-prose p {
  margin: 0 0 1.2rem;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

/* Strong/bold emphasis — slightly tinted */
.cond-panel-body .article-prose strong,
.article-content .article-prose strong {
  color: var(--navy);
  font-weight: 600;
}

/* Italic — subtle */
.cond-panel-body .article-prose em,
.article-content .article-prose em {
  font-style: italic;
  color: #3a4a66;
}

/* Lists — refined */
.cond-panel-body .article-prose ul,
.article-content .article-prose ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
}
.cond-panel-body .article-prose ul li,
.article-content .article-prose ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  line-height: 1.7;
}
.cond-panel-body .article-prose ul li::before,
.article-content .article-prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* Ordered lists */
.cond-panel-body .article-prose ol,
.article-content .article-prose ol {
  counter-reset: prose-counter;
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
}
.cond-panel-body .article-prose ol li,
.article-content .article-prose ol li {
  counter-increment: prose-counter;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.6rem;
  line-height: 1.7;
}
.cond-panel-body .article-prose ol li::before,
.article-content .article-prose ol li::before {
  content: counter(prose-counter);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--gold);
  font-size: 1.1em;
  font-style: italic;
}

/* Blockquotes */
.cond-panel-body .article-prose blockquote,
.article-content .article-prose blockquote {
  margin: 1.75rem 0;
  padding: 1rem 0 1rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: transparent;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.6;
}

/* Inline panel polish — softer entrance + nicer spacing */
.cond-panel-inner {
  padding: 3.5rem clamp(1.5rem, 5vw, 4rem) 4rem;
}

.cond-panel-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.75rem;
}

.cond-panel-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.015em;
}

.cond-panel-summary {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #4a5a76;
  margin: 1rem 0 1.25rem;
  max-width: 700px;
}

/* Better featured image styling */
.cond-panel-image {
  margin: 0 0 2.5rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(22, 59, 94, 0.08);
  border: none;
}

/* Hide deprecated footer (CSS retained for safety in case still rendered) */
.cond-panel-foot,
.article-cta {
  display: none !important;
}

/* ─── PANEL HEADER POLISH — readability & elegance ───── */

/* Subheading (panel summary) — bold, dark, readable */
.cond-panel-summary {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.55;
  color: #1a2942;
  margin: 1.25rem 0 1.5rem;
  max-width: 700px;
  letter-spacing: 0.005em;
}
.article-summary {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.55;
  color: #1a2942;
  letter-spacing: 0.005em;
}

/* Recovery meta — make label crisply visible */
.cond-panel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  padding-top: 0.5rem;
}
.cond-panel-recovery {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.cond-panel-recovery svg {
  color: var(--gold);
  flex-shrink: 0;
}
.cond-panel-recovery .t {
  color: var(--navy);
  font-weight: 500;
}
.cond-panel-recovery strong {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* ─── BEAUTIFUL CLOSE BUTTON ────────────────────────── */
.cond-panel-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(22, 59, 94, 0.12);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 0;
  color: var(--navy);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.cond-panel-close::before,
.cond-panel-close::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 1px;
  transition: background 0.25s ease;
}
.cond-panel-close::before {
  transform: rotate(45deg);
}
.cond-panel-close::after {
  transform: rotate(-45deg);
}
.cond-panel-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(90deg);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}
.cond-panel-close:hover::before,
.cond-panel-close:hover::after {
  background: var(--white);
}
.cond-panel-close:active {
  transform: rotate(90deg) scale(0.95);
}

/* Hide the × character if it's still in the HTML */
.cond-panel-close { text-indent: -9999px; overflow: hidden; }
.cond-panel-close::before,
.cond-panel-close::after {
  text-indent: 0;
  position: absolute;
  display: block;
}

/* ─── Justify paragraphs in About/Hakkında section ───── */
.about-body-text p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}
