/* ============================================================
   Göz Vakfı Hastaneleri — Tema v1
   Clinical Precision & Visionary Depth
   No external libraries. Pure CSS.
   ============================================================ */

/* ---------- A11y: Skip link (görünmez, sadece focus'ta görünür) ---------- */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #00377a;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* ---------- Design Tokens ---------- */
:root {
  /* Primary scale */
  --primary: #00377a;
  --primary-container: #054da4;
  --primary-fixed: #d8e2ff;
  --primary-fixed-dim: #adc6ff;
  --on-primary: #ffffff;
  --on-primary-container: #a7c3ff;

  /* Secondary (accent) */
  --secondary: #ff7041;
  --secondary-container: #ffd3c2;
  --secondary-fixed: #ffe4d8;
  --secondary-fixed-dim: #ffb89b;
  --on-secondary: #ffffff;

  /* Surface system */
  --surface: #f8f9fa;
  --surface-dim: #d9dadb;
  --surface-bright: #f8f9fa;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #f3f4f5;
  --surface-container: #edeeef;
  --surface-container-high: #e7e8e9;
  --surface-container-highest: #e1e3e4;

  /* On colors */
  --on-surface: #191c1d;
  --on-surface-variant: #424752;
  --on-background: #191c1d;

  /* Outline / Error */
  --outline: #737783;
  --outline-variant: #c3c6d4;
  --error: #ba1a1a;

  /* Typography */
  --font-headline: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Radius */
  --r-sm: 0.25rem;
  --r-md: 0.375rem;
  --r-lg: 0.5rem;
  --r-xl: 0.75rem;
  --r-2xl: 1rem;
  --r-3xl: 1.5rem;
  --r-4xl: 2rem;
  --r-full: 9999px;

  /* Spacing */
  --container-max: 1280px;
  --section-py: clamp(4rem, 8vw, 6rem);

  /* Elevation (tonal + soft shadows) */
  --shadow-soft: 0 4px 20px -4px rgba(0, 0, 0, 0.06);
  --shadow-float: 0 20px 40px -12px rgba(0, 0, 0, 0.08);
  --shadow-deep: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 10px 30px -5px rgba(0, 55, 122, 0.25);
}

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

html, body { min-height: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--on-surface);
  background: var(--surface);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}
body > #main { flex: 1 0 auto; }
body > .site-footer { flex-shrink: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; height: auto; }
ul { margin: 0; padding: 0; list-style: none; }

img[loading="lazy"] { content-visibility: auto; }

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

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ---------- TopBar ---------- */
.topbar {
  position: relative;
  z-index: 2;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color .3s ease, border-color .3s ease;
}
.site-header.is-scrolled .topbar {
  color: rgba(255,255,255,0.88);
  border-bottom-color: rgba(255,255,255,0.08);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 40px;
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
}
.topbar__info,
.topbar__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.topbar__info li,
.topbar__links li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.topbar__info a,
.topbar__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: inherit;
  font-weight: 500;
  transition: color .2s ease, opacity .2s ease;
}
.topbar__info a:hover,
.topbar__links a:hover { color: #fff; opacity: 1; }
.site-header.is-scrolled .topbar__info a:hover,
.site-header.is-scrolled .topbar__links a:hover { color: #fff; }
.topbar .icon { width: 14px; height: 14px; opacity: 1; color: #ff7041; }
.topbar__lang-caret { color: inherit; }

/* Mobil topbar: tek satır, sıkışık */
@media (max-width: 600px) {
  .topbar__inner { gap: .5rem; min-height: 36px; padding-top: .3rem; padding-bottom: .3rem; }
  .topbar__info,
  .topbar__links { gap: .6rem; flex-wrap: nowrap; }
  .topbar { font-size: .72rem; }
  .topbar .icon { width: 13px; height: 13px; }
  .topbar__info li,
  .topbar__links li,
  .topbar__info a,
  .topbar__links a { gap: .3rem; white-space: nowrap; }
  .topbar__search-btn .icon { width: 14px; height: 14px; }
}
/* Çok dar ekran: Bağış metnini gizle (kalp ikonu kalır) */
@media (max-width: 380px) {
  .topbar__bagis a span { display: none; }
}
.topbar__search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  cursor: pointer;
  transition: opacity .2s ease, color .2s ease;
}
.topbar__search-btn:hover { color: #fff; opacity: 1; }
.topbar__search-btn .icon { width: 16px; height: 16px; color: #fff; }

@media (max-width: 639px) {
  .topbar__hide-sm { display: none !important; }
}
@media (max-width: 1023px) {
  .topbar__hide-md { display: none !important; }
}

/* Language selector */
.topbar__lang { position: relative; }
.topbar__lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.6rem;
  border-radius: var(--r-lg);
  color: inherit;
  font-size: inherit;
  font-weight: 600;
  transition: background-color .2s ease;
}
.topbar__lang-btn:hover { background: rgba(255,255,255,0.1); }
.site-header.is-scrolled .topbar__lang-btn:hover { background: rgba(255,255,255,0.1); }
.topbar__lang-caret {
  width: 12px; height: 12px;
  transition: transform .25s ease;
}
.topbar__lang.is-open .topbar__lang-caret { transform: rotate(180deg); }

.topbar__lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 100%;
  width: max-content;
  max-width: 220px;
  background: rgb(3 22 41 / 72%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-deep);
  padding: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 50;
}
.topbar__lang.is-open .topbar__lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.topbar__lang-menu li {
  display: block;
  width: 100%;
}
.topbar__lang-menu a {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--r-md);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: background-color .15s ease, color .15s ease;
}
.topbar__lang-menu a:hover,
.topbar__lang-menu a.is-active {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0, 55, 122, 0.55);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
  z-index: -1;
}
.site-header.is-scrolled::before {
  background: rgba(0, 36, 85, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter .3s ease;
}
.site-header.is-scrolled .nav__logo {
  filter: brightness(0) invert(1);
}

.nav__menu {
  display: none;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.9rem;
}
@media (min-width: 1024px) {
  .nav__menu { display: block; }
}
.nav__menu > .menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav__menu .menu-item { position: relative; }
.nav__menu .menu-item > a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 0;
  transition: color .25s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .2);
  position: relative;
}
.nav__menu .menu-item-has-children > a::after {
  content: "";
  width: 8px; height: 8px;
  margin-left: 0.15rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .25s ease;
}
.nav__menu .menu-item:hover > a,
.nav__menu .current-menu-item > a {
  color: #fff;
}
.nav__menu > .current-menu-item > a::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px; background: currentColor;
  border-radius: 2px;
}
/* Sub-menu aktif öğe — kalın çizgi yerine sol turuncu vurgu */
.nav__menu .sub-menu .current-menu-item > a,
.nav__menu .sub-menu .current_page_item > a {
  color: #ff7041 !important;
  background: rgba(255, 112, 65, 0.08);
  position: relative;
  padding-left: 1.15rem;
}
.nav__menu .sub-menu .current-menu-item > a::before,
.nav__menu .sub-menu .current_page_item > a::before {
  content: "";
  position: absolute;
  left: 0.4rem; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 18px;
  background: #ff7041;
  border-radius: 2px;
  bottom: auto; right: auto;
}
.site-header.is-scrolled .nav__menu .menu-item > a {
  color: #fff;
}

/* Sub-menu dropdown */
.nav__menu .sub-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  min-width: 240px;
  background: rgb(3 22 41 / 39%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 20, 50, 0.5);
  padding: 0.5rem;
  margin-top: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  z-index: 80;
}
.nav__menu .sub-menu::before {
  content: "";
  position: absolute;
  top: -12px; left: 0; right: 0;
  height: 12px;
}
.nav__menu .menu-item-has-children:hover > .sub-menu,
.nav__menu .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__menu .menu-item-has-children:hover > a::after {
  transform: rotate(225deg) translate(0, 0);
}
.nav__menu .sub-menu .menu-item > a {
  display: block;
  padding: 0.7rem 0.95rem;
  border-radius: var(--r-md);
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background-color .18s ease, color .18s ease, padding-left .18s ease;
}
.nav__menu .sub-menu .menu-item > a:hover {
  background: rgba(255,255,255,0.1);
  color: #ff7041;
  padding-left: 1.15rem;
}
.site-header.is-scrolled .nav__menu .sub-menu .menu-item > a {
  color: rgba(255,255,255,0.95);
  text-shadow: none;
}

/* Nested sub-menu (3rd level) — opens to the side */
.nav__menu .sub-menu .menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.nav__menu .sub-menu .menu-item-has-children > a::after {
  content: "";
  width: 7px; height: 7px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  margin: 0;
  transition: transform .2s ease;
  opacity: 0.8;
  border-bottom: 0;
}
.nav__menu .sub-menu .menu-item-has-children:hover > a::after {
  transform: rotate(45deg) translate(2px, -2px);
  opacity: 1;
}

.nav__menu .sub-menu .sub-menu {
  top: -0.5rem;
  left: calc(100% + 8px);
  margin-top: 0;
  transform: translateX(-6px);
}
.nav__menu .sub-menu .sub-menu::before {
  top: 0;
  left: -12px; right: auto;
  width: 12px;
  height: 100%;
}
.nav__menu .sub-menu .menu-item-has-children:hover > .sub-menu,
.nav__menu .sub-menu .menu-item-has-children:focus-within > .sub-menu {
  transform: translateX(0);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--r-full);
  color: #fff;
  transition: background-color .25s ease, color .25s ease;
}
.icon-btn:hover { background: rgba(255, 255, 255, 0.12); }
.site-header.is-scrolled .icon-btn { color: #fff; }
.site-header.is-scrolled .icon-btn:hover { background: rgba(255,255,255,0.12); }

.nav__cta { display: none !important; }
@media (min-width: 1024px) {
  .nav__cta { display: inline-flex !important; }
}

.nav__toggle {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  color: #fff;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.nav__toggle:hover {
  background: rgba(255, 112, 65, 0.2);
  border-color: rgba(255, 112, 65, 0.4);
}
.nav__toggle:active { transform: scale(0.95); }
.nav__toggle .icon { width: 22px; height: 22px; }
.site-header.is-scrolled .nav__toggle {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}
@media (min-width: 1024px) {
  .nav__toggle { display: none !important; }
}

/* Mobile menu drawer */
.nav__drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(380px, 90vw);
  height: 100dvh;
  background: rgb(3 22 41 / 72%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: -30px 0 80px -20px rgba(0, 20, 50, 0.45);
  color: #fff;
  transform: translateX(100%);
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
  padding: 0;
  z-index: 110;
  overflow: hidden;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
}
.nav__drawer__header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.nav__drawer__logo { filter: brightness(0) invert(1); }
.nav__drawer__logo {
  height: 32px;
  width: auto;
}
.nav__drawer__body {
  padding: 1rem 1.5rem 2rem;
  flex: 1;
}
.nav__drawer.is-open { transform: translateX(0); }

.nav__drawer__body {
  overflow-y: auto;
  /* Firefox + modern Chrome/Edge */
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) transparent;
}
/* WebKit / Blink: Chrome, Safari, Edge (Chromium) */
.nav__drawer__body::-webkit-scrollbar { width: 8px; height: 8px; }
.nav__drawer__body::-webkit-scrollbar-track { background: transparent; }
.nav__drawer__body::-webkit-scrollbar-thumb {
  background-color: rgba(255,255,255,0.3);
  border-radius: 8px;
  background-clip: padding-box;
  border: 2px solid transparent;
}
.nav__drawer__body::-webkit-scrollbar-thumb:hover { background-color: #ff7041; }
.nav__drawer__body::-webkit-scrollbar-corner { background: transparent; }

.drawer-menu { display: flex; flex-direction: column; }
.drawer-menu .menu-item { position: relative; }
.drawer-menu .menu-item > a {
  display: block;
  padding: 1rem 0;
  padding-right: 3rem;
  font-family: var(--font-headline);
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color .2s ease;
}
.drawer-menu .menu-item > a:hover,
.drawer-menu .current-menu-item > a {
  color: #ff7041;
}

.drawer-menu__toggle {
  position: absolute;
  top: 10px;
  right: 0;
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: transparent;
  border-radius: var(--r-full);
  transition: background-color .2s ease, color .2s ease, transform .3s ease;
}
.drawer-menu__toggle:hover {
  background: transparent;
  color: #ff7041;
}
.drawer-menu__toggle .icon { width: 18px; height: 18px; }
.drawer-menu .menu-item.is-open > .drawer-menu__toggle {
  transform: rotate(180deg);
  color: #ff7041;
}

.drawer-menu .sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  padding-left: 1rem;
}
.drawer-menu .menu-item.is-open > .sub-menu {
  max-height: 800px;
}
.drawer-menu .sub-menu .menu-item > a {
  padding: 0.75rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}
.drawer-menu .sub-menu .menu-item:last-child > a {
  border-bottom: 0;
}
.drawer-menu .sub-menu .drawer-menu__toggle {
  top: 4px;
  width: 32px; height: 32px;
}
.drawer-menu .sub-menu .menu-item > a:hover {
  color: #ff7041;
}

.nav__drawer__footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.nav__drawer__footer .btn--primary {
  width: 100%;
}
.nav__drawer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}
.nav__drawer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color .2s ease;
}
.nav__drawer__contact a:hover { color: #ff7041; }
.nav__drawer__contact .icon { width: 16px; height: 16px; color: #ff7041; }
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0, 20, 50, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 105;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.drawer-close {
  position: static;
  width: 40px; height: 40px;
  border-radius: var(--r-full);
  color: #fff;
  background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color .2s ease, color .2s ease;
}
.drawer-close:hover {
  background: #ff7041;
  color: #fff;
}
.drawer-close .icon { width: 18px; height: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--r-xl);
  transition: transform .2s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, opacity .25s ease;
  white-space: nowrap;
  line-height: 1;
  text-align: center;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: var(--shadow-xl);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-container) 100%);
  opacity: 0.95;
}
.btn--white {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-deep);
}
.btn--white:hover { background: #eaf2ff; }

.btn--ghost {
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); }

.btn--outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn--outline:hover { background: var(--primary); color: #fff; }

.btn--lg {
  padding: 1.15rem 2.5rem;
  font-size: 1rem;
  border-radius: var(--r-2xl);
}

.btn--hero {
  padding: 1rem 2rem;
  font-size: 0.95rem;
  border-radius: var(--r-xl);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform .25s ease;
}
.btn-link:hover { transform: translateX(4px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 760px;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 55, 122, 0.6) 0%, rgba(0, 26, 65, 0.55) 100%),
    rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .hero__bg::after {
    background:
      linear-gradient(180deg, rgba(0,20,50,0.55) 0%, rgba(0,55,122,0.85) 50%, rgba(0,55,122,0.95) 100%),
      rgba(0,0,0,0.15);
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 12rem;
  padding-bottom: 3rem;
}
@media (max-width: 767px) {
  /* Mobil: slider (hero slide alanı) SABİT yükseklik — her slide aynı, viewport'a
     göre değişmez. 640px (gerekirse tek satırla değiştirilebilir). */
  .hero { min-height: 640px; }
  .hero__inner {
    padding-top: 8rem;
    padding-bottom: 5.5rem; /* slider noktaları için alt boşluk — butonlarla çakışmasın */
    min-height: 640px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.hero__content {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: #fff;
}
.eyebrow {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: rgba(5, 77, 164, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  width: fit-content;
}
.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero__title span { color: #ff7041; }
/* Slider: title beyaz, accent turuncu */
.hero__title [data-hero-title] { color: #fff; }
.hero__title [data-hero-accent] { color: var(--secondary); }
.hero__desc {
  font-size: 1.15rem;
  color: #dfe8f7;
  max-width: 520px;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.5rem;
}

/* Services over hero */
.services {
  position: relative;
  z-index: 2;
  padding-top: 3rem;
  padding-bottom: 8rem;
}
@media (max-width: 767px) {
  .services { padding-bottom: 4rem; }
  /* Mobil: hero bg görseli servisleri kapsamasın — servis alanı düz lacivert.
     Full-bleed ::before (100vw) görseli kapatır; tasarım/kartlar aynı kalır. */
  .services::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: var(--primary);
    z-index: -1;
  }
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.services__grid > li { list-style: none; display: flex; }
.services__grid > li > .service-card { flex: 1; }
@media (min-width: 768px) {
  .services__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1rem;
  background: rgba(0, 55, 122, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  color: #fff;
  box-shadow: var(--shadow-deep);
  cursor: pointer;
  transition: background-color .4s ease, transform .3s ease;
}
.service-card:hover {
  background: rgba(0, 55, 122, 0.7);
  transform: translateY(-4px);
}
.service-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.service-card__icon svg {
  width: 28px; height: 28px;
  transition: color .3s ease, stroke .3s ease, transform .3s ease;
}
.service-card:hover .service-card__icon svg {
  color: #ff7041;
  stroke: #ff7041;
  transform: scale(1.1);
}
.service-card:hover .service-card__icon {
  background: rgba(255, 112, 65, 0.15);
}

@media (max-width: 767px) {
  .service-card__icon {
    background: rgba(255, 112, 65, 0.15);
  }
  .service-card__icon svg {
    color: #ff7041;
    stroke: #ff7041;
  }
}
.service-card h3, .service-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}
.service-card__bar {
  margin-top: 0.75rem;
  width: 32px; height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
}

/* ---------- Section Headings ---------- */
.section {
  padding: var(--section-py) 0;
}
.section--white { background: #fff; }
.section--surface { background: var(--surface); }
.section--bg { background: var(--surface); }

.section-title {
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.section-eyebrow {
  display: block;
  color: #ff7041;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-underline {
  width: 80px; height: 5px;
  background: var(--primary-container);
  border-radius: 3px;
}
.section-underline--center {
  margin: 0 auto;
  width: 96px;
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) {
  .about__grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.about__visual { position: relative; }
.about__visual::before {
  content: "";
  position: absolute;
  top: -24px; left: -24px;
  width: 96px; height: 96px;
  background: rgba(5, 77, 164, 0.1);
  border-radius: var(--r-full);
  z-index: -1;
}
.about__image {
  border-radius: var(--r-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 8px solid #fff;
}
.about__image img { width: 100%; height: 100%; object-fit: cover; }
.about__badge {
  display: none;
  position: absolute;
  bottom: -40px; right: -40px;
  padding: 1.75rem 2rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-deep);
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .about__badge { display: flex; }
}
.about__badge svg { width: 48px; height: 48px; }
.about__badge-num { font-size: 1.5rem; font-weight: 900; line-height: 1; }
.about__badge-lbl {
  font-size: 0.7rem; font-weight: 700; opacity: 0.85;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.about__body { display: flex; flex-direction: column; gap: 2rem; }
.about__brand {
  font-family: var(--font-headline);
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.about__title {
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
}
.about__text {
  color: var(--on-surface-variant);
  font-size: 1.1rem;
  line-height: 1.7;
}
.about__stats {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.stat__num {
  color: var(--primary);
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1;
}
.stat__lbl {
  color: var(--on-surface-variant);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

/* ---------- News ---------- */
.news__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.news__grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .news__grid { grid-template-columns: 1fr 1fr; }
}
.news-list { display: flex; flex-direction: column; gap: 2rem; }
.news-item {
  display: flex;
  gap: 1.5rem;
  cursor: pointer;
}
.news-item__thumb {
  flex-shrink: 0;
  width: 128px; height: 96px;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.news-item__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.news-item:hover .news-item__thumb img { transform: scale(1.1); }
.news-item__tag {
  color: #ff7041;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.news-item__title {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0.4rem 0;
  transition: color .25s ease;
}
.news-item:hover .news-item__title { color: var(--primary); }
.news-item__desc {
  color: var(--on-surface-variant);
  font-size: 0.875rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-featured {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  cursor: pointer;
  display: block;
  min-height: clamp(340px, 32vw, 460px);
}
/* Tek haber varsa: kapak kartı tam genişlik (sol liste boş kalmasın). */
.news__grid--single { grid-template-columns: 1fr !important; }
@media (min-width: 768px) {
  .news__grid { align-items: stretch; }
  .news-featured { height: 100%; }
  .news-featured > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.news-featured img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.news-featured:hover img { transform: scale(1.05); }
.news-featured__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 26, 65, 0) 0%, rgba(0, 26, 65, 0.5) 40%, rgba(0, 26, 65, 0.95) 100%),
    linear-gradient(135deg, rgba(0, 55, 122, 0.3) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  color: #fff;
}
.news-featured__tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--r-lg);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 1rem;
}
.news-featured__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}
.news-featured__desc {
  color: #dfe8f7;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

/* ---------- Blog / Rehber ---------- */
.blog__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.blog__intro { max-width: 520px; }
.blog__intro p {
  color: var(--on-surface-variant);
  margin-top: 1rem;
  line-height: 1.7;
}
.blog__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .blog__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog__grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: #fff;
  border-radius: var(--r-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,0.03);
  transition: box-shadow .4s ease, transform .4s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow-float);
  transform: translateY(-4px);
}
.blog-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.blog-card:hover .blog-card__image img { transform: scale(1.05); }
.blog-card__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.blog-card__cat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.blog-card__cat svg { width: 18px; height: 18px; }
.blog-card__title {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  transition: color .25s ease;
}
.blog-card:hover .blog-card__title { color: var(--primary-container); }
.blog-card__desc {
  color: var(--on-surface-variant);
  font-size: 0.94rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.04);
  color: var(--outline);
  font-size: 0.75rem;
}
.blog-card__meta-time { display: inline-flex; align-items: center; gap: 0.4rem; }
.blog-card__meta-time svg { width: 14px; height: 14px; }
.blog-card__arrow {
  width: 40px; height: 40px;
  border-radius: var(--r-full);
  background: var(--surface-container-low);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color .25s ease, color .25s ease;
}
.blog-card__arrow svg {
  width: 16px; height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.blog-card:hover .blog-card__arrow {
  background: var(--primary);
  color: #fff;
}

/* ---------- CTA Band ---------- */
.cta-band {
  padding: 2rem 0 6rem;
  background: var(--surface);
}
.cta-band__inner {
  background: var(--primary-container);
  color: #fff;
  border-radius: 3rem;
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-deep);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cta-band__inner { flex-direction: row; align-items: center; }
}
.cta-band__inner::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 16rem; height: 100%;
  background: rgba(255,255,255,0.05);
  transform: skewX(-12deg) translateX(8rem);
  pointer-events: none;
}
.cta-band__body {
  position: relative; z-index: 1;
  flex: 1;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.cta-band__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}
.cta-band__text {
  color: #d7e5f9;
  max-width: 640px;
  font-size: 1.05rem;
}
.cta-band__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
}
.cta-band__phone svg { width: 28px; height: 28px; }
.cta-band__action { position: relative; z-index: 1; }

/* ---------- FAQ ---------- */
.faq-head { text-align: center; margin-bottom: 4rem; }
.faq-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 1024px) {
  .faq-grid { grid-template-columns: 1fr 1fr; }
}
.faq-col { display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
  background: #fff;
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,0.04);
  overflow: hidden;
  transition: box-shadow .3s ease;
}
.faq-item:hover { box-shadow: var(--shadow-float); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  list-style: none;
  outline: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
}
.faq-item__chevron {
  color: var(--primary-container);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-item__chevron { transform: rotate(180deg); }
.faq-item__body {
  padding: 0 1.5rem 1.5rem;
  color: var(--on-surface-variant);
  font-size: 0.92rem;
  line-height: 1.7;
}
.faq-foot {
  margin-top: 4rem;
  text-align: center;
}
.faq-foot p {
  color: var(--on-surface-variant);
  margin-bottom: 1.5rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #f1f3f6;
  border-top: 1px solid rgba(0,0,0,0.04);
}
.site-footer__top {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  padding-top: 4rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .site-footer__top { grid-template-columns: 1fr 3fr; }
}
.site-footer h4, .site-footer__heading {
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.site-footer__brand-logo {
  height: 44px;
  width: auto;
  margin-bottom: 1.25rem;
}
.site-footer__about {
  color: var(--on-surface-variant);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 380px;
}
.site-footer__cert {
  display: inline-flex;
  align-items: center;
  margin-top: 1.5rem;
  transition: transform .25s ease;
}
.site-footer__cert:hover {
  transform: translateY(-2px);
}
.site-footer__cert img {
  display: block;
  width: auto;
  height: 77px;
}
.social {
  display: flex; gap: 0.75rem; margin-top: 1.5rem;
}
.social a {
  width: 40px; height: 40px;
  border-radius: var(--r-full);
  background: var(--surface-container-high);
  display: inline-flex; align-items: center; justify-content: center;
  color: #ff7041;
  transition: background-color .25s ease, color .25s ease, transform .25s ease;
}
.social a:hover { background: #ff7041; color: #fff; transform: translateY(-2px); }
.social svg {
  width: 18px; height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__links { display: flex; flex-direction: column; gap: 0.9rem; }
.site-footer__links a {
  color: var(--on-surface-variant);
  font-size: 0.9rem;
  transition: color .25s ease, transform .25s ease;
  display: inline-block;
}
.site-footer__links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.site-footer__contact li {
  display: flex;
  gap: 0.75rem;
  color: var(--on-surface-variant);
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
  align-items: flex-start;
}
.site-footer__contact svg {
  width: 20px; height: 20px;
  color: #ff7041;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

.site-footer__bottom {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  align-items: center;
  justify-content: space-between;
  color: var(--on-surface-variant);
  font-size: 0.85rem;
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer__bottom { flex-direction: row; gap: 1rem; text-align: left; }
}
.site-footer__legal {
  display: flex;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 600px) {
  .site-footer__legal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem 1.5rem;
    width: 100%;
    max-width: 320px;
    justify-items: center;
  }
  .site-footer__legal a {
    font-size: .82rem;
    text-align: center;
  }
}
.site-footer__legal a {
  transition: color .25s ease;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.site-footer__legal a:hover { color: var(--primary); }

/* ---------- Search Overlay ---------- */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s ease, visibility .4s ease;
}
.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.search-overlay__backdrop {
  position: absolute; inset: 0;
  background: radial-gradient(1200px 600px at 50% 0%, rgba(5,77,164,0.18), rgba(0,20,50,0.32));
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
}
.search-overlay__panel {
  position: relative;
  width: 100%;
  max-width: 880px;
  margin: clamp(4rem, 10vh, 8rem) 1.5rem 2rem;
  background: rgb(3 22 41 / 39%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-3xl);
  box-shadow:
    0 50px 100px -20px rgba(0,20,50,0.45),
    inset 0 1px 0 rgba(255,255,255,0.08);
  padding: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
}
.search-overlay__close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 44px; height: 44px;
  border-radius: var(--r-full);
  color: #ff7041;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color .2s ease, transform .3s ease, color .2s ease;
}
.search-overlay__close:hover {
  background: rgba(255, 112, 65, 0.12);
  color: #ff7041;
  transform: rotate(90deg);
}
.search-overlay__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.search-overlay__title {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.search-overlay__title span { color: #ff7041; }
.search-overlay__subtitle {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  margin-top: -0.75rem;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: transparent;
  border-radius: var(--r-2xl);
  border: 1.5px solid rgba(255,255,255,0.15);
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.search-box:focus-within {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255, 112, 65, 0.6);
  box-shadow: 0 0 0 4px rgba(255, 112, 65, 0.12);
}
.search-box__icon {
  width: 24px; height: 24px;
  stroke: #ff7041;
  fill: none; stroke-width: 2;
  flex-shrink: 0;
}
.search-box__input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  font-family: var(--font-headline);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: #fff;
  padding: 0.25rem 0;
  min-width: 0;
}
.search-box__input::placeholder {
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.search-box__input::-webkit-search-cancel-button { display: none; }
.search-box__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--r-xl);
  background: #ff7041;
  color: #fff;
  flex-shrink: 0;
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 8px 20px -6px rgba(255, 112, 65, 0.5);
}
.search-box__submit:hover {
  background: #ff5a22;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -8px rgba(255, 112, 65, 0.6);
}
.search-box__submit:active { transform: scale(0.95); }
.search-box__submit .icon { width: 20px; height: 20px; }
.search-box__kbd {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  color: rgba(255,255,255,0.7);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
  letter-spacing: 0.05em;
}

.search-suggest {
  display: block;
}
.search-suggest__group h3, .search-suggest__group__title {
  color: #ff7041;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}
.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.search-tags a {
  display: inline-block;
  padding: 0.5rem 0.95rem;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background-color .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}
.search-tags a:hover {
  background: #ff7041;
  color: #fff;
  border-color: #ff7041;
  transform: translateY(-2px);
}
.search-quick {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.search-quick a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--r-lg);
  color: var(--on-surface);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color .2s ease, color .2s ease;
}
.search-quick a:hover {
  background: var(--surface-container-low);
  color: var(--primary);
}
.search-quick .icon {
  width: 18px; height: 18px;
  color: var(--primary);
}

.search-overlay__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--surface-container);
  color: var(--outline);
  font-size: 0.75rem;
}
.search-overlay__foot span { display: inline-flex; align-items: center; gap: 0.35rem; }
.search-overlay__foot kbd {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  background: var(--surface-container-low);
  border-radius: var(--r-sm);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

/* Staggered entrance for suggest items */
.search-overlay.is-open .search-tags a,
.search-overlay.is-open .search-quick a {
  animation: search-rise .5s cubic-bezier(.22,.61,.36,1) backwards;
}
.search-overlay.is-open .search-tags a:nth-child(1),
.search-overlay.is-open .search-quick a:nth-child(1) { animation-delay: .15s; }
.search-overlay.is-open .search-tags a:nth-child(2),
.search-overlay.is-open .search-quick a:nth-child(2) { animation-delay: .2s; }
.search-overlay.is-open .search-tags a:nth-child(3),
.search-overlay.is-open .search-quick a:nth-child(3) { animation-delay: .25s; }
.search-overlay.is-open .search-tags a:nth-child(4),
.search-overlay.is-open .search-quick a:nth-child(4) { animation-delay: .3s; }
.search-overlay.is-open .search-tags a:nth-child(n+5) { animation-delay: .35s; }

@keyframes search-rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Reveal animations (progressive enhancement) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   PAGE TEMPLATES — page.php + page-templates/*.php
   ============================================================ */

/* Unified inner-page hero — koyu lacivert, fixed header altından başlar */
.page-hero {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	padding: clamp(8.5rem, 13vw, 11rem) 0 clamp(2.5rem, 5vw, 4rem);
	background:
		radial-gradient(900px 500px at 85% -10%, rgba(255, 112, 65, 0.22) 0%, transparent 60%),
		radial-gradient(900px 500px at 5% 110%, rgba(5, 77, 164, 0.45) 0%, transparent 60%),
		linear-gradient(135deg, #001a41 0%, #00377a 50%, #054da4 100%);
	color: #fff;
	overflow: hidden;
	isolation: isolate;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.07) 1px, transparent 0);
	background-size: 28px 28px;
	mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
	-webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
	pointer-events: none;
	z-index: -1;
}
.page-hero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 35%;
	background: linear-gradient(to bottom, transparent 0%, rgba(0, 26, 65, 0.85) 100%);
	pointer-events: none;
	z-index: -1;
}
.page-hero .container { position: relative; }
.page-hero__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	pointer-events: none;
}
.page-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .18;
}
.page-hero__chip {
	display: inline-block;
	margin: 1rem 0 0;
	padding: .4rem 1rem;
	font-family: var(--font-headline);
	font-size: .95rem;
	font-weight: 700;
	letter-spacing: .02em;
	color: #fff;
	background: rgba(255,255,255,.16);
	border: 1px solid rgba(255,255,255,.28);
	border-radius: 999px;
	backdrop-filter: blur(4px);
}
.page-hero__chip.is-yonetim {
	background: rgba(255,112,65,.85);
	border-color: rgba(255,112,65,1);
	color: #fff;
}
.page-hero__lead {
	font-size: clamp(1rem, 1.4vw, 1.125rem);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.82);
	max-width: 820px;
	margin: 1rem 0 0;
}
.page-hero__title {
	font-family: var(--font-headline);
	font-weight: 800;
	font-size: clamp(2rem, 4.5vw, 3rem);
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: #fff;
	margin: .5rem 0 1rem;
}
.page-hero .section-underline {
	height: 4px;
	width: 60px;
	background: linear-gradient(90deg, var(--secondary), #ffb89b);
	border-radius: var(--r-full);
	margin-top: 1.25rem;
}
/* Yoast breadcrumb — yoast_breadcrumb('<p id="breadcrumbs">','</p>') ile çıkar */
#breadcrumbs {
	font-size: .875rem;
	color: rgba(255, 255, 255, 0.72);
	margin: 0 0 0.6rem;
	letter-spacing: .01em;
	line-height: 1.6;
}
#breadcrumbs a {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	color: var(--secondary);
	text-decoration: none;
	transition: color .2s ease;
}
#breadcrumbs a:hover { color: #fff; text-decoration: underline; }
#breadcrumbs a .bc-home {
	width: 14px;
  position: relative;
  top: -1px;
	height: 14px;
	flex-shrink: 0;
	transition: transform .2s ease;
}

#breadcrumbs > span > span:last-child,
#breadcrumbs .breadcrumb_last { color: rgba(255, 255, 255, 0.92); }

.container--narrow {
	max-width: 920px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

/* Hero alt padding | Section üst padding sıfır */
.page-hero,
.ak-hero {
	padding-bottom: clamp(2rem, 3.5vw, 2.75rem) !important;
	margin-bottom: 0 !important;
}
.page-hero + .section,
.ak-hero + .section,
.ak-hero + .ak-citybar + .ak-wrap,
.page-hero + .ak-wrap,
.ak-citybar + .ak-wrap {
	padding-top: clamp(1.75rem, 3vw, 2.5rem) !important;
	margin-top: 0 !important;
}

/* İçerik ilk elemanının üst margin'ini sıfırla
   (örn .prose h2:first-child margin-top: 2em → fazla boşluk yapıyordu) */
.page-content > *:first-child,
.prose > *:first-child {
	margin-top: 0 !important;
}

/* main: sayfalar arası body-bg sızıntısını engelle */
#main {
	background: #fff;
}

.page-content,
.prose {
	color: var(--on-surface);
	font-size: 1.0625rem;
	line-height: 1.8;
}
.page-content > * + *,
.prose > * + * { margin-top: 1.25em; }
.prose h2 { font-family: var(--font-headline); font-weight: 700; font-size: clamp(1.4rem, 2.4vw, 1.875rem); margin-top: 2em; }
.prose h3 { font-family: var(--font-headline); font-weight: 700; font-size: clamp(1.2rem, 2vw, 1.5rem); margin-top: 1.75em; }
.prose a { color: var(--primary); }
.prose ul { list-style: disc; padding-left: 1.6rem; }
.prose ol { list-style: decimal; padding-left: 1.6rem; }
.prose ul li::marker { color: var(--secondary); }
.prose ol li::marker { color: var(--primary); font-weight: 700; }
.prose li + li { margin-top: .5rem; }
.prose img { border-radius: var(--r-lg); height: auto; max-width: 100%; }
.prose blockquote {
	border-left: 4px solid var(--secondary);
	padding: .25rem 0 .25rem 1.25rem;
	color: var(--on-surface-variant);
	font-style: italic;
}

/* ============ Page Fullwidth — Gutenberg section layout ============ */
.page-fullwidth {
	display: block;
	padding-top: 0;
	padding-bottom: 0;
	--gv-content-w: 1216px;
	--gv-wide-w: 1216px;
	--gv-bg-lightest: #eaf0f9;
	--gv-bg-surface: #f4f6f9;
}

/* Section group bloğu — full width arkaplan, inner constrained */
.page-fullwidth .gv-section {
	padding: clamp(3rem, 5vw, 5rem) 1.25rem;
}
.page-fullwidth .gv-section--lightest { background: var(--gv-bg-lightest); }
.page-fullwidth .gv-section--white    { background: #fff; }
.page-fullwidth .gv-section--surface  { background: var(--gv-bg-surface); }

/* Hero ve tarihçemiz section'ları üst üste birleşik görünsün */
.page-fullwidth .gv-section--lightest + .gv-section--lightest {
	padding-top: 1rem;
}
.page-fullwidth .gv-section--tarihce { padding-top: clamp(2rem, 4vw, 3.5rem); }

/* Group bloğu inner — constrained layout WP'nin default'u, biz reinforce ediyoruz */
.page-fullwidth .gv-section > *:not(.alignwide):not(.alignfull):not(.wp-block-image) {
	max-width: var(--gv-content-w);
	margin-left: auto;
	margin-right: auto;
}
.page-fullwidth .gv-section > .alignwide {
	max-width: var(--gv-wide-w);
	margin-left: auto;
	margin-right: auto;
}
.page-fullwidth .gv-section > * + * { margin-top: 1.25rem; }
.page-fullwidth .gv-section .wp-block-group__inner-container > * + *,
.page-fullwidth .gv-section > * + * { margin-top: 1.25rem; }
.page-fullwidth .gv-section .wp-block-group__inner-container > p + p,
.page-fullwidth .gv-section > p + p { margin-top: 1rem; }
.page-fullwidth .gv-section .wp-block-group__inner-container > h3.wp-block-heading,
.page-fullwidth .gv-section > h3.wp-block-heading { margin-top: 2.5rem; }
.page-fullwidth .gv-section .wp-block-group__inner-container > h4.wp-block-heading,
.page-fullwidth .gv-section > h4.wp-block-heading { margin-top: 1.75rem; }
.page-fullwidth .gv-section .wp-block-group__inner-container > h3.wp-block-heading + p,
.page-fullwidth .gv-section > h3.wp-block-heading + p { margin-top: .75rem; }
.page-fullwidth .gv-section .wp-block-group__inner-container > .wp-block-list,
.page-fullwidth .gv-section > .wp-block-list { margin-top: 1rem; }

/* Tipografi base */
.page-fullwidth .wp-block-heading {
	font-family: var(--font-headline);
	color: var(--primary);
	font-weight: 700;
	letter-spacing: -0.01em;
}
.page-fullwidth h1.wp-block-heading { font-size: clamp(2rem, 4.5vw, 3.25rem); line-height: 1.15; }
.page-fullwidth h2.wp-block-heading { font-size: clamp(1.75rem, 3.5vw, 2.75rem); line-height: 1.2; }
.page-fullwidth h3.wp-block-heading { font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.35; }
.page-fullwidth h4.wp-block-heading { font-size: clamp(1.05rem, 1.6vw, 1.2rem); line-height: 1.35; color: var(--primary); }
.page-fullwidth p {
	font-size: 1.0625rem;
	line-height: 1.85;
	color: #3a4452;
}
.page-fullwidth ul.wp-block-list {
	font-size: 1.0625rem;
	line-height: 1.85;
	color: #3a4452;
	padding-left: 1.6rem;
	list-style: disc;
}
.page-fullwidth ol.wp-block-list {
	font-size: 1.0625rem;
	line-height: 1.85;
	color: #3a4452;
	padding-left: 1.6rem;
	list-style: decimal;
}
.page-fullwidth .wp-block-list li::marker { color: var(--secondary); }
.page-fullwidth ol.wp-block-list li::marker { color: var(--primary); font-weight: 700; }
.page-fullwidth .wp-block-list li + li { margin-top: .6rem; }
.page-fullwidth .wp-block-list ul,
.page-fullwidth .wp-block-list ol { margin-top: .6rem; padding-left: 1.5rem; }
.page-fullwidth .wp-block-list ul { list-style: disc; }
.page-fullwidth .wp-block-list ol { list-style: decimal; }
.page-fullwidth .wp-block-list ul li,
.page-fullwidth .wp-block-list ol li { line-height: 1.7; }
.page-fullwidth p strong { color: var(--primary); font-weight: 700; }

/* HERO BÖLÜMÜ */
.page-fullwidth .gv-hero-title {
	font-style: italic;
	color: var(--primary);
	margin-top: 0;
}
.page-fullwidth .gv-hero-lead {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.0625rem;
	color: #3a4452;
}
.page-fullwidth .gv-hero-image {
	margin-top: 2.5rem;
	margin-bottom: 0;
}
.page-fullwidth .gv-hero-image img {
	width: 100%;
	height: auto;
	border-radius: 0;
	display: block;
}

/* Eyebrow + section title */
.page-fullwidth .gv-eyebrow {
	color: var(--secondary);
	font-size: .85rem;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	margin-bottom: 0;
}
.page-fullwidth .gv-section-title {
	text-align: left;
	margin-top: .25rem !important;
}
.page-fullwidth .gv-section-title.has-text-align-center { text-align: left !important; }
.page-fullwidth .gv-section .gv-eyebrow { text-align: left; }
/* Onay Notu (surface) — başlık ve ilk paragraf sola */
.page-fullwidth .gv-section--surface h3.has-text-align-center,
.page-fullwidth .gv-section--surface > .wp-block-group__inner-container > h3.has-text-align-center,
.page-fullwidth .gv-section--surface .wp-block-group__inner-container > h3.has-text-align-center,
.page-fullwidth .gv-section--surface p.has-text-align-center { text-align: left !important; }

/* Misyon & Vizyon — büyük 2'li vurgu kart */
.page-fullwidth .gv-mv-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.75rem;
	margin-top: 2rem;
	list-style: none !important;
	padding: 0 !important;
}
.page-fullwidth .gv-mv-grid > li {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
}
.page-fullwidth .gv-mv-card {
	background: #fff;
	border-radius: var(--r-xl, 16px);
	padding: 2rem 1.75rem 2.25rem;
	border: 1px solid rgba(0, 55, 122, 0.08);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.page-fullwidth .gv-mv-card::before {
	content: "";
	position: absolute;
	left: 0; top: 0;
	width: 6px;
	height: 100%;
	background: var(--secondary);
}
.page-fullwidth .gv-mv-card__label {
	font-size: .8rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--secondary);
	font-weight: 700;
	margin: 0 !important;
	padding-left: .5rem;
}
.page-fullwidth .gv-mv-card__title {
	font-family: var(--font-headline);
	font-size: clamp(1.5rem, 2.4vw, 1.875rem);
	font-weight: 800;
	color: var(--primary);
	margin: 0 !important;
	padding-left: .5rem;
	line-height: 1.2;
}
.page-fullwidth .gv-mv-card__text {
	font-size: 1.0625rem;
	line-height: 1.7;
	color: #2a3340;
	margin: 0 !important;
	padding-left: .5rem;
}
@media (max-width: 800px) {
	.page-fullwidth .gv-mv-grid { grid-template-columns: 1fr; }
}

/* Değerler — 4 sütun grup */
.page-fullwidth .gv-values-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
}
@media (min-width: 1000px) {
	.page-fullwidth .gv-values-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
	.page-fullwidth .gv-values-grid { grid-template-columns: 1fr; }
}
.page-fullwidth .gv-values-card {
	background: #fff;
	border: 1px solid rgba(0, 55, 122, 0.08);
	border-top: 4px solid var(--primary);
	border-radius: var(--r-lg, 12px);
	padding: 1.5rem 1.25rem 1.75rem;
	display: flex;
	flex-direction: column;
	gap: .85rem;
}
.page-fullwidth .gv-values-card__title {
	font-family: var(--font-headline);
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--primary);
	margin: 0 !important;
	letter-spacing: -.005em;
}
.page-fullwidth .gv-values-card ul {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
	display: flex;
	flex-direction: column;
	gap: .55rem;
}
.page-fullwidth .gv-values-card li {
	position: relative;
	padding-left: 1.1rem;
	font-size: .95rem;
	line-height: 1.45;
	color: #3a4452;
	margin: 0 !important;
	border: 0 !important;
}
.page-fullwidth .gv-values-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .55em;
	width: 6px;
	height: 6px;
	background: var(--secondary);
	border-radius: 50%;
}

/* Komite kart grid */
.page-fullwidth .gv-komite-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-top: 1.75rem;
	list-style: none !important;
	padding: 0 !important;
}
.page-fullwidth .gv-komite-grid > li {
	margin: 0 !important;
	padding: 1.1rem 1.25rem 1.25rem;
	background: #fff;
	border: 1px solid rgba(0, 55, 122, 0.08);
	border-radius: var(--r-lg, 12px);
	display: flex;
	flex-direction: column;
	gap: .35rem;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.page-fullwidth .gv-komite-grid > li:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 55, 122, 0.08);
	border-color: rgba(255, 112, 65, 0.35);
}
.page-fullwidth .gv-komite-grid strong {
	font-family: var(--font-headline);
	color: var(--primary);
	font-size: 1rem;
	font-weight: 800;
}
.page-fullwidth .gv-komite-grid span {
	font-size: .9rem;
	line-height: 1.5;
	color: #3a4452;
}
@media (max-width: 900px) {
	.page-fullwidth .gv-komite-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.page-fullwidth .gv-komite-grid { grid-template-columns: 1fr; }
}

/* Kurallar — sayılı kart liste */
.page-fullwidth .gv-rules-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-top: 2rem;
	list-style: none !important;
	padding: 0 !important;
	counter-reset: rule;
}
.page-fullwidth .gv-rules-list > li {
	margin: 0 !important;
	padding: 1.1rem 1.25rem 1.1rem 3.5rem;
	background: #fff;
	border: 1px solid rgba(0, 55, 122, 0.08);
	border-radius: var(--r-lg, 12px);
	position: relative;
	font-size: .98rem;
	line-height: 1.55;
	color: #2a3340;
}
.page-fullwidth .gv-rules-list > li::before {
	counter-increment: rule;
	content: counter(rule, decimal-leading-zero);
	position: absolute;
	left: 1.25rem;
	top: 1.1rem;
	font-family: var(--font-headline);
	font-size: .95rem;
	font-weight: 800;
	color: var(--secondary);
	font-variant-numeric: tabular-nums;
}
@media (max-width: 700px) {
	.page-fullwidth .gv-rules-list { grid-template-columns: 1fr; }
}

/* Bilgi listesi — tik işaretli */
.page-fullwidth .gv-check-list {
	list-style: none !important;
	padding: 0 !important;
	margin: 1.5rem 0 0 !important;
	display: grid;
	gap: .75rem;
}
.page-fullwidth .gv-check-list > li {
	position: relative;
	padding: .5rem 0 .5rem 2rem;
	font-size: 1.0625rem;
	line-height: 1.55;
	color: #2a3340;
	margin: 0 !important;
	border: 0 !important;
}
.page-fullwidth .gv-check-list > li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: .5rem;
	width: 1.4rem;
	height: 1.4rem;
	background: rgba(255, 112, 65, 0.12);
	color: var(--secondary);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: .8rem;
	font-weight: 700;
}

/* Bilgi notu — vurgu kutusu */
.page-fullwidth .gv-info-box {
	background: rgba(0, 55, 122, 0.04);
	border-left: 4px solid var(--primary);
	padding: 1.25rem 1.5rem;
	border-radius: var(--r-lg, 12px);
	margin-top: 1.5rem !important;
}
.page-fullwidth .gv-info-box strong { color: var(--primary); }

.page-fullwidth .gv-alert-box {
	background: rgba(255, 112, 65, 0.08);
	border-left: 4px solid var(--secondary);
	padding: 1.25rem 1.5rem;
	border-radius: var(--r-lg, 12px);
	margin-top: 1.5rem !important;
	font-weight: 600;
	color: var(--primary);
}

/* Saatler/küçük bilgi kartı */
.page-fullwidth .gv-time-card {
	display: inline-flex;
	flex-direction: column;
	gap: .25rem;
	padding: 1.25rem 1.75rem;
	background: #fff;
	border: 1px solid rgba(0, 55, 122, 0.08);
	border-top: 4px solid var(--secondary);
	border-radius: var(--r-lg, 12px);
	margin-top: 1rem !important;
}
.page-fullwidth .gv-time-card__label {
	font-size: .75rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--secondary);
	font-weight: 700;
}
.page-fullwidth .gv-time-card__time {
	font-family: var(--font-headline);
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--primary);
}

/* Form — bildirim formu */
.page-fullwidth .gv-form {
	margin-top: 2rem;
	background: #fff;
	border: 1px solid rgba(0, 55, 122, 0.08);
	border-radius: var(--r-xl, 16px);
	padding: 2rem 1.75rem 2.25rem;
}
.page-fullwidth .gv-form-group { margin-bottom: 1.5rem; }
.page-fullwidth .gv-form-group:last-child { margin-bottom: 0; }
.page-fullwidth .gv-form-label {
	display: block;
	font-family: var(--font-headline);
	font-weight: 700;
	font-size: .98rem;
	color: var(--primary);
	margin-bottom: .65rem;
}
.page-fullwidth .gv-form-label__hint {
	font-size: .78rem;
	font-weight: 500;
	color: #5a6470;
	margin-left: .5rem;
	letter-spacing: 0;
	text-transform: none;
}
.page-fullwidth .gv-chip-group {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
}
.page-fullwidth .gv-chip {
	display: inline-flex;
	align-items: center;
	padding: .5rem 1rem;
	background: rgba(0, 55, 122, 0.05);
	border: 1px solid rgba(0, 55, 122, 0.12);
	border-radius: 999px;
	font-size: .9rem;
	color: #2a3340;
	cursor: pointer;
	transition: background .15s, border-color .15s, color .15s;
}
.page-fullwidth .gv-chip:hover { border-color: var(--secondary); color: var(--secondary); }
.page-fullwidth .gv-form-input,
.page-fullwidth .gv-form-textarea,
.page-fullwidth .gv-form-select {
	width: 100%;
	box-sizing: border-box;
	padding: .75rem 1rem;
	border: 1px solid rgba(0, 55, 122, 0.15);
	border-radius: 8px;
	font-size: .95rem;
	font-family: inherit;
	color: #2a3340;
	background: #fff;
	transition: border-color .15s, box-shadow .15s;
}
.page-fullwidth .gv-form-textarea { min-height: 110px; resize: vertical; }
.page-fullwidth .gv-form-input:focus,
.page-fullwidth .gv-form-textarea:focus,
.page-fullwidth .gv-form-select:focus {
	outline: none;
	border-color: var(--secondary);
	box-shadow: 0 0 0 3px rgba(255, 112, 65, 0.15);
}
.page-fullwidth .gv-form-submit {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .9rem 1.75rem;
	background: var(--primary);
	color: #fff;
	border: 0;
	border-radius: 8px;
	font-weight: 700;
	cursor: pointer;
	font-size: 1rem;
	transition: background .2s, transform .2s;
}
.page-fullwidth .gv-form-submit:hover { background: #002654; transform: translateY(-1px); }
.page-fullwidth .gv-form-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}
@media (max-width: 700px) {
	.page-fullwidth .gv-form-row { grid-template-columns: 1fr; }
}

/* Boş durum / yakında */
.page-fullwidth .gv-empty-state {
	text-align: center;
	padding: 4rem 1.5rem;
	background: #fff;
	border: 1px dashed rgba(0, 55, 122, 0.18);
	border-radius: var(--r-xl, 16px);
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}
.page-fullwidth .gv-empty-state__icon {
	width: 64px;
	height: 64px;
	background: rgba(255, 112, 65, 0.12);
	color: var(--secondary);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
	font-weight: 800;
}
.page-fullwidth .gv-empty-state__title {
	font-family: var(--font-headline);
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--primary);
	margin: 0 !important;
}
.page-fullwidth .gv-empty-state__text {
	color: #3a4452;
	max-width: 540px;
	margin: 0 auto !important;
}

/* CTA kart — iletişim/CV gönder */
.page-fullwidth .gv-cta-card {
	background: linear-gradient(135deg, #00377a 0%, #002654 100%);
	color: #fff;
	border-radius: var(--r-xl, 16px);
	padding: 2.5rem 2rem;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 2rem;
	align-items: center;
	margin-top: 2rem;
}
.page-fullwidth .gv-cta-card__title {
	font-family: var(--font-headline);
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 800;
	margin: 0 0 .5rem 0 !important;
	color: #fff !important;
}
.page-fullwidth .gv-cta-card__text {
	color: rgba(255, 255, 255, 0.82);
	margin: 0 !important;
	line-height: 1.6;
}
.page-fullwidth .gv-cta-card__actions {
	display: flex;
	gap: .75rem;
	flex-wrap: wrap;
}
.page-fullwidth .gv-cta-card a {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .85rem 1.5rem;
	background: var(--secondary);
	color: #fff;
	border-radius: 8px;
	font-weight: 700;
	text-decoration: none;
	transition: background .2s, transform .2s;
}
.page-fullwidth .gv-cta-card a:hover { background: #e85f2e; transform: translateY(-1px); }
.page-fullwidth .gv-cta-card a.is-ghost {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
}
.page-fullwidth .gv-cta-card a.is-ghost:hover { background: rgba(255, 255, 255, 0.08); }
@media (max-width: 700px) {
	.page-fullwidth .gv-cta-card { grid-template-columns: 1fr; }
}

/* Organizasyon şeması (organigram) figür */
.page-fullwidth .gv-sema {
	margin: 0 !important;
	background: #fff;
	border: 1px solid rgba(0, 55, 122, 0.08);
	border-radius: var(--r-xl, 16px);
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(0, 55, 122, 0.06);
}
.page-fullwidth .gv-sema__head {
	padding: 1rem 1.5rem;
	background: var(--primary);
	color: #fff;
	display: flex;
	align-items: baseline;
	gap: .75rem;
	flex-wrap: wrap;
}
.page-fullwidth .gv-sema__num {
	font-family: var(--font-headline);
	font-weight: 800;
	font-size: .85rem;
	letter-spacing: .15em;
	color: var(--secondary);
}
.page-fullwidth .gv-sema__title {
	font-family: var(--font-headline);
	font-weight: 700;
	font-size: 1.1rem;
	margin: 0 !important;
	color: #fff;
}
.page-fullwidth .gv-sema__body {
	padding: 1.5rem;
	background: #fff;
}
.page-fullwidth .gv-sema__body img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 6px;
}
.page-fullwidth .gv-sema-stack {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
	margin-top: 2rem;
}

/* Koordinasyon yapıları liste — yatay etiketli */
.page-fullwidth .gv-coord-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
	margin-top: 1.5rem;
	list-style: none !important;
	padding: 0 !important;
}
.page-fullwidth .gv-coord-list > li {
	margin: 0 !important;
	padding: .9rem 1.1rem;
	background: #fff;
	border-left: 3px solid var(--secondary);
	border-radius: 6px;
	font-weight: 600;
	color: var(--primary);
	font-size: .98rem;
	border-top: 0 !important;
	border-right: 0 !important;
	border-bottom: 0 !important;
}

/* MERKEZ sayfaları — Hero, Stats, Departments, Doctors, Gallery, İletişim */

/* Merkez hero görseli */
.page-fullwidth .gv-merkez-hero {
	margin: 2rem 0 0 0 !important;
	border-radius: var(--r-xl, 16px);
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 55, 122, 0.08);
}
.page-fullwidth .gv-merkez-hero img {
	width: 100%;
	height: auto;
	display: block;
	max-height: 480px;
	object-fit: cover;
}

/* 4'lü istatistik / kapasite kartı */
.page-fullwidth .gv-merkez-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin: 2rem 0 0 !important;
	list-style: none !important;
	padding: 0 !important;
}
.page-fullwidth .gv-merkez-stats > li {
	margin: 0 !important;
	padding: 1.5rem 1.25rem;
	background: #fff;
	border: 1px solid rgba(0, 55, 122, 0.08);
	border-top: 4px solid var(--secondary);
	border-radius: var(--r-lg, 12px);
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: .35rem;
}
.page-fullwidth .gv-merkez-stats__num {
	font-family: var(--font-headline);
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 800;
	color: var(--primary);
	line-height: 1;
}
.page-fullwidth .gv-merkez-stats__label {
	font-size: .78rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--secondary);
	font-weight: 700;
}
@media (max-width: 800px) { .page-fullwidth .gv-merkez-stats { grid-template-columns: repeat(2, 1fr); } }

/* Tedavi birimleri grid */
.page-fullwidth .gv-merkez-dept-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin: 2rem 0 0 !important;
	list-style: none !important;
	padding: 0 !important;
}
.page-fullwidth .gv-merkez-dept-grid > li {
	margin: 0 !important;
	padding: 1.5rem 1.5rem 1.75rem;
	background: #fff;
	border: 1px solid rgba(0, 55, 122, 0.08);
	border-radius: var(--r-lg, 12px);
	display: flex;
	flex-direction: column;
	gap: .85rem;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.page-fullwidth .gv-merkez-dept-grid > li:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0, 55, 122, 0.1);
	border-color: rgba(255, 112, 65, 0.4);
}
.page-fullwidth .gv-merkez-dept-grid h3 {
	font-family: var(--font-headline);
	font-size: .95rem;
	font-weight: 800;
	color: var(--primary);
	letter-spacing: .08em;
	text-transform: uppercase;
	margin: 0 0 .25rem 0 !important;
	padding-bottom: .65rem;
	border-bottom: 2px solid var(--secondary);
}
.page-fullwidth .gv-merkez-dept-grid ul {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
	display: flex;
	flex-direction: column;
	gap: .45rem;
}
.page-fullwidth .gv-merkez-dept-grid ul li {
	position: relative;
	padding-left: 1rem;
	font-size: .92rem;
	line-height: 1.4;
	color: #3a4452;
	margin: 0 !important;
	border: 0 !important;
}
.page-fullwidth .gv-merkez-dept-grid ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .55em;
	width: 5px;
	height: 5px;
	background: var(--secondary);
	border-radius: 50%;
}
@media (max-width: 900px) { .page-fullwidth .gv-merkez-dept-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .page-fullwidth .gv-merkez-dept-grid { grid-template-columns: 1fr; } }

/* Hekim grid */
.page-fullwidth .gv-merkez-doctors {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin: 2rem 0 0 !important;
	list-style: none !important;
	padding: 0 !important;
}
.page-fullwidth .gv-merkez-doctors > li {
	margin: 0 !important;
	padding: 1.25rem 1.5rem;
	background: #fff;
	border: 1px solid rgba(0, 55, 122, 0.08);
	border-left: 4px solid var(--primary);
	border-radius: var(--r-lg, 12px);
	display: flex;
	flex-direction: column;
	gap: .25rem;
	transition: border-color .2s ease;
}
.page-fullwidth .gv-merkez-doctors > li.is-yonetim {
	border-left-color: var(--secondary);
	background: linear-gradient(135deg, rgba(255, 112, 65, 0.06) 0%, transparent 100%);
}
.page-fullwidth .gv-merkez-doctors > li:hover { border-left-color: var(--secondary); }
.page-fullwidth .gv-merkez-doctors strong {
	font-family: var(--font-headline);
	color: var(--primary);
	font-size: 1rem;
	font-weight: 800;
}
.page-fullwidth .gv-merkez-doctors span {
	font-size: .85rem;
	color: #5a6470;
	letter-spacing: .02em;
}
.page-fullwidth .gv-merkez-doctors li.is-yonetim span {
	color: var(--secondary);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	font-size: .75rem;
}
@media (max-width: 800px) { .page-fullwidth .gv-merkez-doctors { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .page-fullwidth .gv-merkez-doctors { grid-template-columns: 1fr; } }

/* Galeri */
.page-fullwidth .gv-merkez-galeri {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin: 2rem 0 0 !important;
	list-style: none !important;
	padding: 0 !important;
}
.page-fullwidth .gv-merkez-galeri > li {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: var(--r-lg, 12px);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: #f4f6f9;
}
.page-fullwidth .gv-merkez-galeri img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s ease;
}
.page-fullwidth .gv-merkez-galeri > li:hover img { transform: scale(1.06); }
@media (max-width: 700px) { .page-fullwidth .gv-merkez-galeri { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .page-fullwidth .gv-merkez-galeri { grid-template-columns: 1fr; } }

/* İletişim kartı (büyük) */
.page-fullwidth .gv-merkez-iletisim {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	margin: 2rem 0 0 !important;
	background: linear-gradient(135deg, #00377a 0%, #002654 100%);
	color: #fff;
	border-radius: var(--r-xl, 16px);
	overflow: hidden;
}
.page-fullwidth .gv-merkez-iletisim__info { padding: 2.5rem 2rem; }
.page-fullwidth .gv-merkez-iletisim__actions {
	padding: 2.5rem 2rem;
	background: rgba(0, 0, 0, 0.15);
	display: flex;
	flex-direction: column;
	gap: .75rem;
	justify-content: center;
}
.page-fullwidth .gv-merkez-iletisim__row {
	display: flex;
	align-items: flex-start;
	gap: .85rem;
	margin-bottom: 1.25rem;
}
.page-fullwidth .gv-merkez-iletisim__row:last-child { margin-bottom: 0; }
.page-fullwidth .gv-merkez-iletisim__label {
	font-size: .72rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--secondary);
	font-weight: 700;
	margin: 0 0 .25rem 0 !important;
}
.page-fullwidth .gv-merkez-iletisim__value {
	font-size: 1rem;
	line-height: 1.5;
	color: #fff;
	margin: 0 !important;
}
.page-fullwidth .gv-merkez-iletisim a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: .95rem 1.5rem;
	border-radius: 10px;
	font-weight: 700;
	text-decoration: none;
	transition: background .2s, transform .2s;
	font-size: .95rem;
}
.page-fullwidth .gv-merkez-iletisim a.is-primary {
	background: var(--secondary);
	color: #fff;
}
.page-fullwidth .gv-merkez-iletisim a.is-primary:hover { background: #e85f2e; transform: translateY(-1px); }
.page-fullwidth .gv-merkez-iletisim a.is-ghost {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.3);
}
.page-fullwidth .gv-merkez-iletisim a.is-ghost:hover { background: rgba(255, 255, 255, 0.08); }
@media (max-width: 800px) {
	.page-fullwidth .gv-merkez-iletisim { grid-template-columns: 1fr; }
}

/* Göz Dergisi grid + modal */
.page-fullwidth .gv-dergi-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.75rem;
	margin: 2rem 0 0 0 !important;
	list-style: none !important;
	padding: 0 !important;
}
.page-fullwidth .gv-dergi-grid > li { margin: 0 !important; padding: 0 !important; border: 0 !important; }
.page-fullwidth .gv-dergi-card {
	background: #fff;
	border: 1px solid rgba(0, 55, 122, 0.08);
	border-radius: var(--r-xl, 16px);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	width: 100%;
	cursor: pointer;
	padding: 0;
	text-align: left;
	font: inherit;
	color: inherit;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.page-fullwidth .gv-dergi-card:hover:not(:disabled) {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(0, 55, 122, 0.14);
	border-color: rgba(255, 112, 65, 0.4);
}
.page-fullwidth .gv-dergi-card:disabled { opacity: .55; cursor: not-allowed; }
.page-fullwidth .gv-dergi-card__cover {
	position: relative;
	aspect-ratio: 3 / 4;
	background: #f4f6f9;
	overflow: hidden;
	display: block;
}
.page-fullwidth .gv-dergi-card__cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s ease;
}
.page-fullwidth .gv-dergi-card:hover:not(:disabled) .gv-dergi-card__cover img {
	transform: scale(1.04);
}
.page-fullwidth .gv-dergi-card__noimg {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #8a8a8a;
	font-size: .85rem;
}
.page-fullwidth .gv-dergi-card__badge {
	position: absolute;
	bottom: .75rem;
	left: .75rem;
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	padding: .35rem .75rem;
	background: var(--secondary);
	color: #fff;
	border-radius: 999px;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity .2s ease, transform .2s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.page-fullwidth .gv-dergi-card:hover:not(:disabled) .gv-dergi-card__badge {
	opacity: 1;
	transform: translateY(0);
}
.page-fullwidth .gv-dergi-card__body {
	padding: 1rem 1.25rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: .35rem;
}
.page-fullwidth .gv-dergi-card__title {
	font-family: var(--font-headline);
	font-weight: 800;
	font-size: 1rem;
	color: var(--primary);
	line-height: 1.3;
}
.page-fullwidth .gv-dergi-card__meta {
	font-size: .8rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--secondary);
	font-weight: 700;
}
@media (max-width: 1000px) { .page-fullwidth .gv-dergi-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .page-fullwidth .gv-dergi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .page-fullwidth .gv-dergi-grid { grid-template-columns: 1fr; } }

/* PDF modal */
.gv-pdf-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: stretch;
	justify-content: stretch;
	animation: gv-pdf-fade .2s ease;
}
.gv-pdf-modal[hidden] { display: none; }
@keyframes gv-pdf-fade { from { opacity: 0; } to { opacity: 1; } }
.gv-pdf-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(2, 18, 41, 0.78);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	cursor: pointer;
}
.gv-pdf-modal__dialog {
	position: relative;
	margin: 2.5rem auto;
	width: min(1100px, calc(100vw - 3rem));
	height: calc(100vh - 5rem);
	height: calc(100dvh - 5rem);
	background: #1a1a1a;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
	display: flex;
	flex-direction: column;
	animation: gv-pdf-up .25s ease;
}
@keyframes gv-pdf-up { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.gv-pdf-modal__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: .85rem 1.25rem;
	background: linear-gradient(135deg, #00377a 0%, #002654 100%);
	color: #fff;
	flex: none;
}
.gv-pdf-modal__title {
	margin: 0;
	font-family: var(--font-headline, sans-serif);
	font-size: 1rem;
	font-weight: 700;
}
.gv-pdf-modal__actions { display: inline-flex; gap: .5rem; align-items: center; }
.gv-pdf-modal__download,
.gv-pdf-modal__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px; height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border: 0;
	cursor: pointer;
	text-decoration: none;
	transition: background .15s ease;
}
.gv-pdf-modal__download:hover,
.gv-pdf-modal__close:hover { background: rgba(255, 255, 255, 0.22); color: #fff; }
.gv-pdf-modal__body {
	flex: 1;
	background: #2a2a2a;
	position: relative;
}
.gv-pdf-modal__body iframe {
	width: 100%;
	height: 100%;
	display: block;
	background: #fff;
	border: 0;
}
.gv-pdf-modal__body.is-loading::before {
	content: "";
	position: absolute;
	top: 50%; left: 50%;
	width: 48px; height: 48px;
	margin: -24px 0 0 -24px;
	border: 4px solid rgba(255, 255, 255, 0.18);
	border-top-color: var(--secondary);
	border-radius: 50%;
	animation: gv-pdf-spin 0.7s linear infinite;
	z-index: 1;
}
.gv-pdf-modal__body.is-loading::after {
	content: "PDF yükleniyor…";
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, 40px);
	color: rgba(255, 255, 255, 0.7);
	font-size: .9rem;
	font-weight: 600;
	letter-spacing: .05em;
}
@keyframes gv-pdf-spin { to { transform: rotate(360deg); } }
.gv-pdf-modal__error {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	color: #fff;
	padding: 2rem;
	text-align: center;
}
.gv-pdf-modal__error-link {
	display: inline-block;
	padding: .75rem 1.5rem;
	background: var(--secondary);
	color: #fff;
	border-radius: 8px;
	font-weight: 700;
	text-decoration: none;
}
.gv-pdf-modal__error-link:hover { background: #e85f2e; color: #fff; }
/* Tablet — kenarlardan az boşluk */
@media (max-width: 1000px) {
	.gv-pdf-modal__dialog {
		margin: 1.25rem auto;
		width: calc(100vw - 1.5rem);
		height: calc(100vh - 2.5rem);
		height: calc(100dvh - 2.5rem);
	}
	.gv-pdf-modal__head { padding: .75rem 1rem; }
	.gv-pdf-modal__title { font-size: .95rem; }
}
/* Mobil — fullscreen */
@media (max-width: 640px) {
	.gv-pdf-modal__dialog {
		margin: 0;
		width: 100vw;
		height: 100vh;
		height: 100dvh;
		border-radius: 0;
	}
	.gv-pdf-modal__head {
		padding: .6rem .75rem;
		padding-top: max(.6rem, env(safe-area-inset-top));
	}
	.gv-pdf-modal__title {
		font-size: .9rem;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: calc(100vw - 130px);
	}
	.gv-pdf-modal__download,
	.gv-pdf-modal__close {
		width: 38px; height: 38px;
	}
	.gv-pdf-modal__body {
		padding-bottom: env(safe-area-inset-bottom);
	}
}
/* Çok küçük ekran — başlık daha kısa */
@media (max-width: 380px) {
	.gv-pdf-modal__title { max-width: calc(100vw - 110px); font-size: .82rem; }
}
body.gv-pdf-open { overflow: hidden; }

/* Basın yansımaları grid */
.page-fullwidth .gv-press-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
	list-style: none !important;
	padding: 0 !important;
}
.page-fullwidth .gv-press-grid > li {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
}
.page-fullwidth .gv-press-card {
	background: #fff;
	border: 1px solid rgba(0, 55, 122, 0.08);
	border-radius: var(--r-xl, 16px);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.page-fullwidth .gv-press-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(0, 55, 122, 0.12);
	border-color: rgba(255, 112, 65, 0.35);
}
.page-fullwidth .gv-press-card__media {
	aspect-ratio: 4 / 3;
	background: #f4f6f9;
	overflow: hidden;
	position: relative;
}
.page-fullwidth .gv-press-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s ease;
}
.page-fullwidth .gv-press-card:hover .gv-press-card__media img {
	transform: scale(1.04);
}
.page-fullwidth .gv-press-card__body {
	padding: 1.25rem 1.4rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: .5rem;
	flex: 1;
}
.page-fullwidth .gv-press-card__date {
	font-size: .75rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--secondary);
	font-weight: 700;
	margin: 0 !important;
	font-variant-numeric: tabular-nums;
}
.page-fullwidth .gv-press-card__title {
	font-family: var(--font-headline);
	font-size: 1rem;
	font-weight: 700;
	color: var(--primary);
	line-height: 1.35;
	margin: 0 !important;
}
.page-fullwidth .gv-press-card__author {
	font-size: .85rem;
	color: #5a6470;
	margin: 0 !important;
	margin-top: auto !important;
	padding-top: .5rem;
	border-top: 1px solid rgba(0, 55, 122, 0.06);
	font-style: italic;
}
@media (max-width: 900px) {
	.page-fullwidth .gv-press-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 560px) {
	.page-fullwidth .gv-press-grid { grid-template-columns: 1fr; }
}

/* CF7 — motivasyon sayı input'u (dar) */
.page-fullwidth .gv-cf7-form input.gv-cf7-motiv,
.page-fullwidth .gv-cf7-form input.wpcf7-form-control.gv-cf7-motiv { max-width: 90px !important; }

/* CF7 — alt bölüm başlıkları (Üniversite, Seminer 1, Dil 1, vs.) */
.gv-cf7-bolum-sub {
	margin: 1.25rem 0 .75rem 0;
	padding: .5rem 0;
	font-size: .85rem;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: var(--primary);
	font-weight: 700;
	border-bottom: 1px solid rgba(0, 55, 122, 0.1);
}
.gv-cf7-bolum-sub strong {
	font-family: var(--font-headline);
}

/* CF7 — bölüm başlıkları */
.gv-cf7-bolum {
	margin: 2rem 0 1.5rem 0;
	padding: 1.25rem 1.5rem;
	background: linear-gradient(135deg, rgba(0, 55, 122, 0.06) 0%, rgba(255, 112, 65, 0.06) 100%);
	border-left: 4px solid var(--secondary);
	border-radius: var(--r-lg, 12px);
}
.gv-cf7-bolum:first-child { margin-top: 0; }
.gv-cf7-bolum-eyebrow {
	margin: 0 0 .25rem 0 !important;
	font-size: .75rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--secondary);
	font-weight: 700;
}
.gv-cf7-bolum-title {
	margin: 0 !important;
	font-family: var(--font-headline);
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--primary);
}

/* Contact Form 7 — bildirim formu chip stili */
.gv-cf7-form { background: #fff; border: 1px solid rgba(0,55,122,.08); border-radius: var(--r-xl, 16px); padding: 2rem 1.75rem 2.25rem; margin-top: 1rem; }
.gv-cf7-group { margin-bottom: 1.5rem; }
.gv-cf7-group:last-child { margin-bottom: 0; }
.gv-cf7-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 0; }
.gv-cf7-row .gv-cf7-group { margin-bottom: 1.5rem; }
@media (max-width: 700px) { .gv-cf7-row { grid-template-columns: 1fr; } }
.gv-cf7-label { display: block; font-family: var(--font-headline); font-weight: 700; font-size: .98rem; color: var(--primary); margin-bottom: .65rem; }
.gv-cf7-hint { font-size: .78rem; font-weight: 500; color: #5a6470; margin-left: .5rem; letter-spacing: 0; text-transform: none; }

.page-fullwidth .gv-cf7-form .wpcf7-form-control-wrap { display: block; }
.page-fullwidth .gv-cf7-form input.wpcf7-form-control[type="text"],
.page-fullwidth .gv-cf7-form input.wpcf7-form-control[type="date"],
.page-fullwidth .gv-cf7-form input.wpcf7-form-control[type="tel"],
.page-fullwidth .gv-cf7-form input.wpcf7-form-control[type="email"],
.page-fullwidth .gv-cf7-form input.wpcf7-form-control[type="number"],
.page-fullwidth .gv-cf7-form select.wpcf7-form-control,
.page-fullwidth .gv-cf7-form textarea.wpcf7-form-control {
	width: 100%; box-sizing: border-box;
	padding: .75rem 1rem;
	border: 1px solid rgba(0, 55, 122, 0.15);
	border-radius: 8px;
	font-size: .95rem; font-family: inherit;
	color: #2a3340; background: #fff;
	transition: border-color .15s, box-shadow .15s;
}
.page-fullwidth .gv-cf7-form textarea.wpcf7-form-control { min-height: 110px; resize: vertical; }
.page-fullwidth .gv-cf7-form input.wpcf7-form-control:focus,
.page-fullwidth .gv-cf7-form select.wpcf7-form-control:focus,
.page-fullwidth .gv-cf7-form textarea.wpcf7-form-control:focus {
	outline: none;
	border-color: var(--secondary);
	box-shadow: 0 0 0 3px rgba(255, 112, 65, 0.15);
}

/* Chip-style radio (wpcf7-radio) */
.gv-cf7-form .wpcf7-radio,
.gv-cf7-form .wpcf7-checkbox { display: flex; flex-wrap: wrap; gap: .5rem; }
.gv-cf7-form .wpcf7-list-item { margin: 0 !important; }
.gv-cf7-form .wpcf7-list-item > label { cursor: pointer; display: inline-block; }
.gv-cf7-form .wpcf7-list-item input[type="radio"],
.gv-cf7-form .wpcf7-list-item input[type="checkbox"] {
	position: absolute; opacity: 0; pointer-events: none;
}
.gv-cf7-form .wpcf7-list-item-label {
	display: inline-block;
	padding: .5rem 1rem;
	background: rgba(0, 55, 122, 0.05);
	border: 1px solid rgba(0, 55, 122, 0.12);
	border-radius: 999px;
	font-size: .9rem;
	color: #2a3340;
	transition: background .15s, border-color .15s, color .15s, transform .1s;
	user-select: none;
}
.gv-cf7-form .wpcf7-list-item:hover .wpcf7-list-item-label {
	border-color: var(--secondary);
	color: var(--secondary);
}
.gv-cf7-form .wpcf7-list-item input:checked + .wpcf7-list-item-label,
.gv-cf7-form .wpcf7-list-item input:checked ~ .wpcf7-list-item-label {
	background: var(--secondary);
	color: #fff !important;
	border-color: var(--secondary);
	font-weight: 600;
}

/* CF7 submit button */
.gv-cf7-form .wpcf7-submit,
.gv-cf7-form input.gv-cf7-submit[type="submit"] {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .9rem 1.75rem;
	background: var(--primary);
	color: #fff;
	border: 0;
	border-radius: 8px;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	font-family: inherit;
	transition: background .2s, transform .2s;
}
.gv-cf7-form .wpcf7-submit:hover { background: #002654; transform: translateY(-1px); }
.gv-cf7-actions { margin-top: 1rem; }

/* CF7 yanıt mesajları */
.wpcf7 form .wpcf7-response-output {
	margin: 1.5rem 0 0 !important;
	padding: 1rem 1.25rem !important;
	border-radius: 8px !important;
	border-width: 1px !important;
	font-size: .95rem;
}
.wpcf7 form.sent .wpcf7-response-output {
	border-color: #20a96a !important;
	background: rgba(32, 169, 106, 0.08) !important;
	color: #145d3b !important;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
	border-color: var(--secondary) !important;
	background: rgba(255, 112, 65, 0.08) !important;
	color: #8a3a14 !important;
}
.wpcf7 .wpcf7-not-valid-tip {
	color: var(--secondary) !important;
	font-size: .85rem !important;
	margin-top: .35rem;
}
.wpcf7-spinner { display: inline-block; vertical-align: middle; margin-left: .5rem; }

/* Intro lead alıntı — birçok sayfanın başında */
.page-fullwidth .gv-section--intro {
	padding-top: clamp(2rem, 3.5vw, 3rem) !important;
	padding-bottom: clamp(2rem, 3.5vw, 3rem) !important;
}
.page-fullwidth .gv-lead-quote {
	font-family: var(--font-headline);
	font-style: italic;
	font-size: clamp(1.1rem, 1.7vw, 1.35rem);
	line-height: 1.55;
	color: var(--primary);
	max-width: 900px;
	margin: 0 !important;
	padding-left: 1.25rem;
	border-left: 4px solid var(--secondary);
}

/* Direktör mesajı — açılış vurgu + imza kartı */
.page-fullwidth .gv-message-opening {
	font-family: var(--font-headline);
	font-style: italic;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	line-height: 1.35;
	color: var(--primary);
	margin: 0 !important;
}
.page-fullwidth .gv-message-opening .gv-year {
	color: var(--secondary);
	font-style: normal;
	font-weight: 800;
}
.page-fullwidth .gv-message-sub {
	font-family: var(--font-headline);
	font-style: italic;
	font-size: clamp(1.15rem, 1.8vw, 1.4rem);
	color: var(--secondary);
	margin: 0 !important;
}
.page-fullwidth .gv-director-photo {
	margin: 0 !important;
	border-radius: var(--r-xl, 16px);
	overflow: hidden;
	background: #f4f6f9;
}
.page-fullwidth .gv-director-photo img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}
.page-fullwidth .gv-signature {
	margin-top: 2.5rem !important;
	padding: 1.5rem 1.75rem;
	background: rgba(0, 55, 122, 0.04);
	border-left: 4px solid var(--secondary);
	border-radius: var(--r-lg, 12px);
	display: flex;
	flex-direction: column;
	gap: .25rem;
}
.page-fullwidth .gv-signature-name {
	font-family: var(--font-headline);
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--primary);
	margin: 0 !important;
}
.page-fullwidth .gv-signature-title {
	font-size: .9rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--secondary);
	font-weight: 700;
	margin: 0 !important;
}

/* Burs — başvuru takvimi kart grid */
.page-fullwidth .gv-burs-takvim {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
	list-style: none !important;
	padding: 0 !important;
}
.page-fullwidth .gv-burs-takvim > li {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
}
.page-fullwidth .gv-burs-takvim-card {
	display: flex;
	flex-direction: column;
	gap: .75rem;
	background: #fff;
	border: 1px solid rgba(0, 55, 122, 0.08);
	border-left: 4px solid var(--secondary);
	border-radius: var(--r-xl, 16px);
	padding: 1.75rem 1.5rem;
	height: 100%;
}
.page-fullwidth .gv-burs-takvim-card__date {
	font-family: var(--font-headline);
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 800;
	color: var(--primary);
	line-height: 1.2;
	margin: 0 !important;
}
.page-fullwidth .gv-burs-takvim-card__label {
	font-size: .8rem;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: var(--secondary);
	font-weight: 700;
	margin: 0 !important;
}
.page-fullwidth .gv-burs-takvim-card__desc {
	font-size: .98rem;
	line-height: 1.6;
	color: #3a4452;
	margin: 0 !important;
}
@media (max-width: 700px) {
	.page-fullwidth .gv-burs-takvim { grid-template-columns: 1fr; }
}

/* Burs — PDF buton grid */
.page-fullwidth .gv-burs-docs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-top: 1.5rem;
	list-style: none !important;
	padding: 0 !important;
}
.page-fullwidth .gv-burs-docs > li {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
}
.page-fullwidth .gv-burs-doc-btn {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.1rem 1.25rem;
	background: #fff;
	border: 1px solid rgba(0, 55, 122, 0.12);
	border-radius: var(--r-lg, 12px);
	color: var(--primary);
	font-weight: 600;
	font-size: .98rem;
	line-height: 1.35;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.page-fullwidth .gv-burs-doc-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 55, 122, 0.1);
	border-color: var(--secondary);
}
.page-fullwidth .gv-burs-doc-icon {
	flex: none;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: rgba(255, 112, 65, 0.12);
	color: var(--secondary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: .75rem;
	letter-spacing: .02em;
}
.page-fullwidth .gv-burs-doc-meta {
	display: flex;
	flex-direction: column;
	gap: .15rem;
}
.page-fullwidth .gv-burs-doc-title {
	font-weight: 700;
	color: var(--primary);
}
.page-fullwidth .gv-burs-doc-hint {
	font-size: .78rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--secondary);
	font-weight: 700;
}
@media (max-width: 900px) {
	.page-fullwidth .gv-burs-docs { grid-template-columns: 1fr; }
}

/* Burs — mülakat alt liste */
.page-fullwidth .gv-burs-mulakat {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-top: 1.5rem;
	list-style: none !important;
	padding: 0 !important;
}
.page-fullwidth .gv-burs-mulakat > li {
	margin: 0 !important;
	padding: 1rem 1.25rem;
	background: rgba(0, 55, 122, 0.04);
	border-radius: var(--r-lg, 12px);
	border-left: 3px solid var(--primary);
	display: flex;
	flex-direction: column;
	gap: .25rem;
}
.page-fullwidth .gv-burs-mulakat strong {
	color: var(--primary);
	font-size: .85rem;
	letter-spacing: .08em;
	text-transform: uppercase;
}
@media (max-width: 700px) {
	.page-fullwidth .gv-burs-mulakat { grid-template-columns: 1fr; }
}

/* Burs hero görseli */
.page-fullwidth .gv-burs-hero-image {
	margin: 2rem 0 0 !important;
	border-radius: var(--r-xl, 16px);
	overflow: hidden;
}
.page-fullwidth .gv-burs-hero-image img {
	width: 100%;
	height: auto;
	display: block;
	max-height: 480px;
	object-fit: cover;
}

/* Partner kart grid — sosyal sorumluluk */
.page-fullwidth .gv-partner-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 2rem;
	list-style: none !important;
	padding: 0 !important;
}
.page-fullwidth .gv-partner-grid > li {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
}
.page-fullwidth .gv-partner-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid rgba(0, 55, 122, 0.08);
	border-radius: var(--r-xl, 16px);
	overflow: hidden;
	text-decoration: none;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
	height: 100%;
}
.page-fullwidth .gv-partner-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 55, 122, 0.12);
	border-color: rgba(255, 112, 65, 0.4);
}
.page-fullwidth .gv-partner-card__media {
	aspect-ratio: 4 / 3;
	background: #f4f6f9;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	border-bottom: 1px solid rgba(0, 55, 122, 0.06);
}
.page-fullwidth .gv-partner-card__media img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}
.page-fullwidth .gv-partner-card__body {
	padding: 1.25rem 1.5rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: .75rem;
	flex: 1;
}
.page-fullwidth .gv-partner-card__title {
	font-family: var(--font-headline);
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--primary);
	line-height: 1.3;
	margin: 0 !important;
}
.page-fullwidth .gv-partner-card__link {
	margin-top: auto;
	font-size: .85rem;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--secondary);
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: .4rem;
}
.page-fullwidth .gv-partner-card__link::after {
	content: "→";
	transition: transform .2s ease;
}
.page-fullwidth .gv-partner-card:hover .gv-partner-card__link::after {
	transform: translateX(4px);
}
@media (max-width: 900px) {
	.page-fullwidth .gv-partner-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (max-width: 560px) {
	.page-fullwidth .gv-partner-grid { grid-template-columns: 1fr; }
}

/* Mütevelli liste — 3 sütun grid + sıra numarası */
.page-fullwidth .gv-mutevelli-list {
	columns: 3;
	column-gap: 2.5rem;
	list-style: none !important;
	padding-left: 0 !important;
	margin: 0 !important;
	counter-reset: mut;
	font-size: .98rem;
	line-height: 1.45;
}
.page-fullwidth .gv-mutevelli-list li {
	break-inside: avoid;
	page-break-inside: avoid;
	padding: .65rem 0 .65rem 3rem;
	margin: 0 !important;
	position: relative;
	border-bottom: 1px solid rgba(0, 55, 122, 0.08);
	color: #2a3340;
	font-weight: 500;
}
.page-fullwidth .gv-mutevelli-list li::marker { content: none; }
.page-fullwidth .gv-mutevelli-list li::before {
	counter-increment: mut;
	content: counter(mut, decimal-leading-zero);
	position: absolute;
	left: 0;
	top: .7rem;
	color: var(--secondary);
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	font-size: .85rem;
	letter-spacing: .03em;
}
@media (max-width: 900px) {
	.page-fullwidth .gv-mutevelli-list { columns: 2; column-gap: 1.5rem; }
}
@media (max-width: 560px) {
	.page-fullwidth .gv-mutevelli-list { columns: 1; }
}

/* Sayım vurgu kutucuğu — intro */
.page-fullwidth .gv-stat-row {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: flex-start;
	margin-top: 1.5rem;
}
.page-fullwidth .gv-stat {
	display: flex;
	flex-direction: column;
	gap: .25rem;
}
.page-fullwidth .gv-stat-num {
	font-family: var(--font-headline);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	color: var(--secondary);
	line-height: 1;
}
.page-fullwidth .gv-stat-label {
	font-size: .85rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--primary);
	font-weight: 700;
}

/* Divider */
.page-fullwidth .gv-divider {
	border: 0;
	height: 1px;
	width: 200px;
	background: var(--secondary);
	opacity: .4;
	margin: 1.5rem auto !important;
}
.page-fullwidth .gv-soft-divider {
	border: 0;
	height: 1px;
	max-width: var(--gv-wide-w);
	background: rgba(0, 0, 0, 0.08);
	margin: 0 auto !important;
}
.page-fullwidth .gv-mini-divider {
	border: 0;
	height: 1px;
	width: 40px;
	background: var(--secondary);
	opacity: .5;
	margin: 1rem 0 !important;
}

/* HASTANE KARTLARI — Media & Text */
.page-fullwidth .gv-hospital-card {
	background: transparent !important;
	box-shadow: none !important;
	border: 0 !important;
	border-radius: 0 !important;
	gap: clamp(1.5rem, 3vw, 3rem) !important;
	padding: 1rem 0;
}
.page-fullwidth .gv-hospital-card .wp-block-media-text__media img {
	width: 100%;
	height: 100%;
	border-radius: 12px;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	box-shadow: 0 4px 16px rgba(0, 26, 65, 0.08);
}
.page-fullwidth .gv-hospital-card .wp-block-media-text__content {
	padding: 0 !important;
}
.page-fullwidth .gv-hospital-title {
	color: var(--primary);
	font-size: clamp(1.15rem, 1.8vw, 1.5rem) !important;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 1rem;
	line-height: 1.35;
}
.page-fullwidth .gv-year {
	color: var(--secondary);
	font-weight: 700;
}

/* KURULLAR — 3 sütun kart */
.page-fullwidth .gv-yonetim-intro {
	text-align: center;
	margin-bottom: 2.5rem !important;
	max-width: 720px;
}
.page-fullwidth .gv-kurullar {
	gap: clamp(1rem, 2vw, 1.5rem) !important;
}
.page-fullwidth .gv-kurullar .wp-block-column {
	background: #fff;
	border: 1px solid rgba(0, 26, 65, 0.08);
	border-radius: 12px;
	padding: 1.75rem;
	box-shadow: 0 2px 8px rgba(0, 26, 65, 0.04);
}
.page-fullwidth .gv-kurul-title {
	color: var(--secondary);
	font-size: .95rem !important;
	font-weight: 700;
	letter-spacing: .15em;
	text-transform: uppercase;
	margin-top: 0 !important;
	margin-bottom: 1.25rem;
	padding-bottom: 0;
	border-bottom: 0;
	border: 0;
}
.page-fullwidth .gv-yedek-title {
	color: var(--secondary);
	font-size: .85rem !important;
	font-weight: 700;
	letter-spacing: .15em;
	text-transform: uppercase;
	margin-top: 0 !important;
	margin-bottom: 1rem;
}
.page-fullwidth .gv-kurul-list {
	list-style: none;
	padding-left: 0;
	margin: 0;
	font-size: .95rem;
}
.page-fullwidth .gv-kurul-list li {
	padding: .35rem 0;
	color: #3a4452;
	line-height: 1.5;
}
.page-fullwidth .gv-kurul-list li + li {
	border-top: 1px dashed rgba(0, 0, 0, 0.06);
}
.page-fullwidth .gv-kurul-list li strong {
	color: var(--primary);
	font-weight: 600;
}

/* GALERİ */
.page-fullwidth .wp-block-gallery {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px !important;
	margin: 2rem auto 0 !important;
	max-width: var(--gv-wide-w) !important;
	width: 100%;
}
.page-fullwidth .wp-block-gallery .wp-block-image {
	width: 100% !important;
	margin: 0 !important;
}
.page-fullwidth .wp-block-gallery .wp-block-image img {
	border-radius: 12px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 3;
}
@media (max-width: 768px) {
	.page-fullwidth .wp-block-gallery {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 480px) {
	.page-fullwidth .wp-block-gallery {
		grid-template-columns: 1fr;
	}
}

/* Landing template */
.is-landing { background: var(--surface-container-low); }
.landing-header {
	padding: 1rem 0;
	background: #fff;
	border-bottom: 1px solid var(--outline-variant);
}
.landing-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
.landing-footer {
	padding: 1.5rem 0;
	background: var(--primary);
	color: var(--on-primary);
	text-align: center;
	font-size: .875rem;
}

/* Contact grid override (4'lü) */
.contact-grid { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: repeat(4, 1fr); } }
.contact-grid .news-item__desc { display: block; margin-top: .5rem; color: var(--on-surface-variant); font-size: .875rem; }

/* ============================================================
   WP Admin Bar uyumu — fixed header'ı admin bar yüksekliği kadar aşağı it.
   ============================================================ */
body.admin-bar .site-header { top: 32px; }
body.admin-bar .nav__drawer,
body.admin-bar .drawer-backdrop { top: 32px; }
@media screen and (max-width: 782px) {
	body.admin-bar .site-header { top: 46px; }
	body.admin-bar .nav__drawer,
	body.admin-bar .drawer-backdrop { top: 46px; }
}

/* ============================================================
   Footer — Hastane kartları
   ============================================================ */
/* Hospital cards — refined */
.site-footer__hospitals {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
}
@media (min-width: 768px) {
	.site-footer__hospitals { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}
.hospital-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.hospital-card__name {
	margin-bottom: 1.1rem;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: -0.01em;
}
.hospital-card__list {
	display: flex;
	flex-direction: column;
	gap: .9rem;
	margin: 0;
	padding: 0;
	list-style: none;
	flex: 1; /* CTA'yı kart altına itmek için kalan yüksekliği doldur */
}
.hospital-card__list li {
	display: grid;
	grid-template-columns: 24px 1fr;
	gap: .65rem;
	align-items: start;
	color: var(--on-surface-variant);
	font-size: .9rem;
	line-height: 1.55;
	margin: 0;
}
.hospital-card__list svg {
	width: 18px; height: 18px;
	color: var(--secondary);
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	margin-top: 3px; /* cap-height ile hizalı */
	justify-self: center;
}
.hospital-card__list a {
	color: inherit;
	text-decoration: none;
	transition: color .15s ease;
}
.hospital-card__list a:hover { color: var(--secondary); }
.hospital-card__cta {
	margin-top: auto; /* tüm kartlarda en altta — aynı hizada */
	padding-top: .9rem;
	border-top: 1px solid var(--outline-variant);
	display: flex;
	align-items: center;
	gap: .65rem;
	color: var(--on-surface-variant);
	font-size: .9rem;
}
.hospital-card__cta svg {
	width: 18px; height: 18px;
	color: var(--secondary);
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	flex-shrink: 0;
}
.hospital-card__cta a {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	color: inherit; /* diğer satırlarla aynı (on-surface-variant) */
	font-weight: 600;
	letter-spacing: .01em;
}
.hospital-card__cta a::after {
	content: "→";
	transition: transform .2s ease;
}
.hospital-card__cta a:hover { color: var(--secondary); }
.hospital-card__cta a:hover::after { transform: translateX(3px); }

/* Footer bottom — Markon kredisi */
.site-footer__copy {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: center;
	gap: .35rem 1rem;
	margin: 0;
	line-height: 1.6;
}
@media (min-width: 768px) {
	.site-footer__copy { justify-content: flex-start; }
}
.site-footer__credit {
	font-size: .8rem;
	color: var(--on-surface-variant);
	opacity: .92;
	letter-spacing: .01em;
	white-space: nowrap;
}
.site-footer__credit strong {
	color: var(--secondary);
	font-weight: 600;
	margin-left: .25rem;
	letter-spacing: .015em;
}
@media (max-width: 600px) {
	.site-footer__copy {
		flex-direction: column;
		gap: .35rem;
	}
}

/* ============================================================
   Polylang dil dropdown — bayrak + dil adı hizalama
   ============================================================ */
.topbar__lang-menu a {
	display: flex;
	align-items: center;
	gap: .55rem;
}
.topbar__lang-menu a img {
	width: 18px;
	height: auto;
	border-radius: 2px;
	box-shadow: 0 0 0 1px rgba(0,0,0,.05);
	flex-shrink: 0;
	display: block;
}
.topbar__lang-menu a span { line-height: 1; }

/* Bayrak yoksa fallback: dil kodu rozeti */
.topbar__lang-menu .lang-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 26px;
	height: 16px;
	padding: 0 4px;
	border-radius: 3px;
	background: var(--surface-container);
	color: var(--primary);
	font-size: .65rem;
	font-weight: 700;
	letter-spacing: .03em;
}

/* ============================================================
   ONLINE İŞLEMLER OVERLAY — glassmorphism + staggered fade-in
   ============================================================ */
.online-overlay {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
	transition: opacity .35s ease, visibility .35s ease;
}
.online-overlay.is-open {
	pointer-events: auto;
	visibility: visible;
	opacity: 1;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
}
.online-overlay__backdrop {
	position: absolute;
	inset: 0;
	background: radial-gradient(1200px 600px at 50% 0%, rgba(5,77,164,0.18), rgba(0,20,50,0.32));
	backdrop-filter: blur(10px) saturate(120%);
	-webkit-backdrop-filter: blur(10px) saturate(120%);
	cursor: pointer;
}
.online-overlay__panel {
	position: relative;
	width: 100%;
	max-width: 1080px;
	margin: clamp(3rem, 8vh, 6rem) 1.5rem 2rem;
	background: rgb(3 22 41 / 39%);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: clamp(1rem, 2vw, 1.5rem);
	box-shadow:
		0 30px 60px -20px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
	transform: translateY(40px) scale(.95);
	opacity: 0;
	transition: transform .5s cubic-bezier(.16, 1, .3, 1), opacity .35s ease;
}
.online-overlay.is-open .online-overlay__panel {
	transform: translateY(0) scale(1);
	opacity: 1;
}
.online-overlay__close {
	position: absolute;
	top: 1.1rem; right: 1.1rem;
	width: 44px; height: 44px;
	border-radius: var(--r-full);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color .2s ease, transform .2s ease, border-color .2s ease;
	z-index: 2;
}
.online-overlay__close:hover {
	background: var(--secondary);
	border-color: var(--secondary);
	transform: rotate(90deg);
}
.online-overlay__close .icon { width: 20px; height: 20px; }

.online-overlay__inner {
	padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.online-overlay__eyebrow {
	display: inline-block;
	align-self: flex-start;
	padding: .35rem .75rem;
	background: rgba(255, 112, 65, 0.18);
	border: 1px solid rgba(255, 112, 65, 0.4);
	border-radius: var(--r-full);
	color: var(--secondary-fixed);
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.online-overlay__title {
	color: #fff;
	font-family: var(--font-headline);
	font-size: clamp(1.85rem, 3.5vw, 2.6rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0;
}
.online-overlay__subtitle {
	color: rgba(255, 255, 255, 0.7);
	font-size: clamp(.95rem, 1.4vw, 1.05rem);
	margin: 0 0 1rem;
}

.online-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}
@media (min-width: 720px) {
	.online-grid { grid-template-columns: repeat(3, 1fr); }
}

.online-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 0;
	transition: border-color .2s ease, background-color .2s ease;
}
.online-card__image {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.04);
}
.online-card__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(3, 22, 41, 0.7) 100%);
	pointer-events: none;
}
.online-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}
.online-card:hover .online-card__image img { transform: scale(1.06); }
.online-card__name { padding: 1rem 1.25rem .15rem; }
.online-card__actions { padding: .85rem 1.25rem 1.25rem; }
/* Kartlar panel ile birlikte açık görünür — staggered fade-in kaldırıldı. */
.online-card:hover {
	border-color: rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.06);
}
.online-card__name {
	color: #fff;
	font-family: var(--font-headline);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.01em;
}
.online-card__actions {
	display: flex;
	gap: .4rem;
	flex-wrap: nowrap;
	align-items: stretch;
}

.online-btn {
	flex: 1 1 0;
	min-width: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .35rem;
	padding: .6rem .5rem;
	border-radius: .65rem;
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: -0.005em;
	text-align: center;
	color: #fff;
	transition: transform .15s ease, box-shadow .25s ease, background-color .2s ease, opacity .2s ease;
	position: relative;
	overflow: hidden;
	white-space: normal;
	line-height: 1.2;
	hyphens: auto;
}
.online-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
	transform: translateX(-100%);
	transition: transform .6s ease;
}
.online-btn:hover::before { transform: translateX(100%); }
.online-btn:hover { transform: translateY(-2px); }
.online-btn:active { transform: translateY(0); }

.online-btn--tahlil {
	background: #16a085;
	box-shadow: 0 4px 14px -4px rgba(22, 160, 133, 0.5);
}
.online-btn--tahlil:hover { background: #138a72; box-shadow: 0 8px 20px -4px rgba(22, 160, 133, 0.7); }

.online-btn--randevu {
	background: var(--secondary);
	box-shadow: 0 4px 14px -4px rgba(255, 112, 65, 0.5);
}
.online-btn--randevu:hover { background: #e85a2a; box-shadow: 0 8px 20px -4px rgba(255, 112, 65, 0.7); }

.online-btn--icon {
	flex: 0 0 44px;
	min-width: 44px;
	padding: .5rem;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
}
.online-btn--icon:hover { background: rgba(255, 255, 255, 0.18); }
.online-btn--icon .icon { width: 20px; height: 20px; }

/* Online overlay admin bar uyumu */
body.admin-bar .online-overlay { top: 32px; }
@media screen and (max-width: 782px) {
	body.admin-bar .online-overlay { top: 46px; }
}

/* ============================================================
   ANLAŞMALI KURUMLAR — Stitch tasarımı
   ============================================================ */

/* HERO — page-hero recipe + arka plan görseli */
.ak-hero {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	color: #fff;
	padding: clamp(8.5rem, 13vw, 11rem) 0 clamp(2.5rem, 5vw, 4rem);
	background:
		radial-gradient(900px 500px at 85% -10%, rgba(255, 112, 65, 0.22) 0%, transparent 60%),
		radial-gradient(900px 500px at 5% 110%, rgba(5, 77, 164, 0.45) 0%, transparent 60%),
		linear-gradient(135deg, #001a41 0%, #00377a 50%, #054da4 100%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ak-hero__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	pointer-events: none;
}
.ak-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .18;
}
.ak-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.07) 1px, transparent 0);
	background-size: 28px 28px;
	mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
	-webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
	pointer-events: none;
	z-index: -1;
}
.ak-hero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 35%;
	background: linear-gradient(to bottom, transparent 0%, rgba(0, 26, 65, 0.85) 100%);
	pointer-events: none;
	z-index: -1;
}
.ak-hero__inner { position: relative; }
/* .ak-hero #breadcrumbs üst seviye #breadcrumbs kuralından miras alır */
.ak-hero__title {
	font-family: var(--font-headline);
	font-size: clamp(2.25rem, 5vw, 3rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #fff;
	margin: 0 0 .65rem;
}
.ak-hero__lead {
	font-size: clamp(1rem, 1.4vw, 1.125rem);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.78);
	max-width: 640px;
	margin: 0;
}

/* CITY TAB BAR */
.ak-citybar {
	background: var(--surface-container-lowest);
	border-bottom: 1px solid var(--outline-variant);
	box-shadow: 0 2px 8px -4px rgba(0,55,122,.05);
	position: relative;
}
.ak-citytabs {
	display: flex;
	gap: .25rem;
	overflow-x: auto;
	padding-top: 1rem;
	scrollbar-width: none;
}
.ak-citytabs::-webkit-scrollbar { display: none; }
.ak-citytab {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .85rem 1.5rem;
	background: var(--surface-container);
	color: var(--on-surface-variant);
	font-family: var(--font-body);
	font-weight: 600;
	font-size: .875rem;
	letter-spacing: .025em;
	border-top-left-radius: var(--r-lg);
	border-top-right-radius: var(--r-lg);
	white-space: nowrap;
	transition: background-color .2s ease, color .2s ease;
	position: relative;
}
.ak-citytab:hover { background: var(--surface-container-high); }
.ak-citytab.is-active {
	background: var(--primary);
	color: #fff;
	box-shadow: 0 -4px 12px -4px rgba(0,55,122,.15);
}
.ak-citytab.is-active::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	background: var(--secondary);
}
.ak-citytab .icon { width: 18px; height: 18px; }

/* WRAP */
.ak-wrap {
	background: var(--surface);
	padding: clamp(2rem, 5vw, 3rem) 0 clamp(3rem, 6vw, 4rem);
}

/* PANELS */
.ak-panel { display: none; }
.ak-panel.is-active { display: block; animation: ak-fade .3s ease both; }
@keyframes ak-fade {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* GRID */
.ak-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: start;
}
@media (min-width: 900px) {
	.ak-grid { grid-template-columns: 320px 1fr; }
}

/* SIDEBAR */
.ak-side {
	background: var(--surface-container-lowest);
	border: 1px solid rgba(195, 198, 210, .5);
	border-radius: 24px;
	box-shadow: 0 10px 30px -16px rgba(0,55,122,.12);
	overflow: hidden;
	position: sticky;
	top: 88px;
}
body.admin-bar .ak-side { top: 120px; }
.ak-side__head {
	padding: 1.5rem;
	border-bottom: 1px solid var(--outline-variant);
	background: rgba(243, 244, 245, .5);
}
.ak-side__title {
	font-family: var(--font-headline);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary);
	margin: 0;
	line-height: 1.2;
}
.ak-side__sub {
	font-size: .875rem;
	color: var(--on-surface-variant);
	margin: .35rem 0 0;
}
.ak-side__list {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	padding: 1rem;
}
.ak-catbtn {
	width: 100%;
	display: flex;
	align-items: center;
	gap: .75rem;
	padding: .85rem 1rem;
	border-radius: var(--r-lg);
	text-align: left;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: .825rem;
	line-height: 1.3;
	letter-spacing: .015em;
	color: var(--on-surface-variant);
	background: transparent;
	transition: background-color .15s ease, color .15s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}
.ak-catbtn .icon {
	width: 20px;
	height: 20px;
	color: var(--outline);
	flex-shrink: 0;
	transition: color .15s ease;
}
.ak-catbtn span { flex: 1; }
.ak-catbtn:hover { background: var(--surface-container); }
.ak-catbtn.is-active {
	background: var(--primary-fixed);
	color: var(--primary);
	font-weight: 700;
}
.ak-catbtn.is-active .icon { color: var(--primary); }
.ak-catbtn.is-active::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--primary);
}

/* MAIN CARD */
.ak-main { min-width: 0; }
.ak-cardpanel {
	display: none;
	background: var(--surface-container-lowest);
	border: 1px solid rgba(195, 198, 210, .5);
	border-radius: 24px;
	box-shadow: 0 10px 30px -16px rgba(0,55,122,.12);
	padding: clamp(1.5rem, 3vw, 2rem);
}
.ak-cardpanel.is-active { display: block; animation: ak-fade .25s ease both; }

/* CARD HEADER */
.ak-card__head {
	display: grid;
	grid-template-columns: 56px 1fr auto;
	gap: 1rem;
	align-items: center;
	padding-bottom: 1.5rem;
	margin-bottom: 1.5rem;
	border-bottom: 1px solid var(--outline-variant);
}
.ak-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--primary-fixed);
	color: var(--primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.ak-card__icon .icon { width: 22px; height: 22px; }
.ak-card__title {
	font-family: var(--font-headline);
	font-size: clamp(1.25rem, 2.4vw, 1.65rem);
	font-weight: 700;
	color: var(--primary);
	letter-spacing: -0.01em;
	line-height: 1.2;
	margin: 0;
}
.ak-card__desc {
	font-size: .9rem;
	color: var(--on-surface-variant);
	margin: .35rem 0 0;
}
.ak-card__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 32px;
	padding: 0 .85rem;
	border-radius: var(--r-full);
	background: var(--surface-container);
	color: var(--primary);
	font-size: .85rem;
	font-weight: 700;
}

/* BENTO LIST */
.ak-bento {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
@media (min-width: 640px)  { .ak-bento { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .ak-bento { grid-template-columns: repeat(3, 1fr); } }

.ak-item {
	display: flex;
	align-items: center;
	gap: .75rem;
	padding: 1rem;
	background: var(--surface);
	border: 1px solid var(--outline-variant);
	border-radius: var(--r-lg);
	font-family: var(--font-body);
	font-weight: 600;
	font-size: .875rem;
	line-height: 1.4;
	color: var(--on-surface);
	transition: background-color .2s ease, border-color .2s ease, transform .15s ease, box-shadow .2s ease;
}
.ak-item__check {
	width: 22px;
	height: 22px;
	color: var(--outline-variant);
	flex-shrink: 0;
	transition: color .2s ease;
}
.ak-item__name { flex: 1; min-width: 0; }
.ak-item:hover {
	background: rgba(216, 226, 255, .35);
	border-color: var(--primary-fixed);
	transform: translateY(-1px);
	box-shadow: 0 6px 18px -8px rgba(0,55,122,.18);
}
.ak-item:hover .ak-item__check { color: var(--primary); }

/* INFO NOTE */
.ak-note {
	margin-top: 2rem;
	padding: 1rem;
	background: var(--surface-container);
	border-radius: var(--r-lg);
	display: flex;
	align-items: flex-start;
	gap: .75rem;
}
.ak-note .icon {
	width: 22px;
	height: 22px;
	color: var(--secondary);
	flex-shrink: 0;
	margin-top: 2px;
}
.ak-note p {
	margin: 0;
	font-size: .875rem;
	color: var(--on-surface-variant);
	line-height: 1.5;
}

/* Online İşlemler CTA — ikon + yazı yan yana */
.nav__cta {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
}
.nav__cta__icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	color: var(--secondary);
}
.nav__drawer__footer .btn .icon { color: var(--secondary); }

/* ============================================================
   HERO SLIDER — Cross-fade + Stagger Reveal + Ken Burns
   Tasarım sabit, sadece geçiş animasyonu
   ============================================================ */

/* Cross-fade transition — bg görseli + içerik */
.hero__bg img,
.hero__content {
	transition: opacity .45s ease, transform .45s ease;
	will-change: opacity, transform;
}
.hero__bg.is-fading img,
.hero__content.is-fading {
	opacity: 0;
}

/* Ken Burns keyframes — actual rule class-based (.gv-burns) aşağıda */
@keyframes gv-kenburns {
	from { transform: scale(1) translate(0, 0); }
	to   { transform: scale(1.10) translate(-1.5%, -1%); }
}
.hero .hero__bg img {
	transform-origin: center center;
}

/* Stagger reveal + Ken Burns artık Web Animations API ile tetikleniyor (main.js).
   CSS sadece will-change hint'ini sağlar. */
.hero .hero__content > * {
	will-change: opacity, transform;
}
.hero .hero__bg img {
	will-change: transform;
}

/* Reduced motion gate kaldırıldı — Ken Burns ve stagger reveal her durumda çalışsın */

/* Slider dots — hero'nun sağ alt köşesinde overlay */
.hero__slider-dots {
	position: absolute;
	right: clamp(1rem, 3vw, 2rem);
	bottom: clamp(1rem, 2.5vw, 1.75rem);
	z-index: 5;
	display: inline-flex;
	gap: .4rem;
	padding: .35rem .55rem;
	background: rgba(0, 26, 65, 0.45);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
}
.hero__slider-dot {
	width: 26px;
	height: 4px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.4);
	border: 0;
	cursor: pointer;
	padding: 0;
	transition: background-color .25s ease, width .35s ease;
}
.hero__slider-dot:hover { background: rgba(255, 255, 255, 0.65); }
.hero__slider-dot.is-active {
	width: 44px;
	background: var(--secondary);
}
.hero__slider-dot > span { display: none; }

@media (max-width: 720px) {
	.hero__slider-dot { width: 18px; }
	.hero__slider-dot.is-active { width: 32px; }
}

@media (prefers-reduced-motion: reduce) {
	.hero__bg img, .hero__content { transition: none !important; }
	.hero__bg.is-fading img, .hero__content.is-fading { opacity: 1 !important; }
}

/* Slider yan navigation okları */
.hero__slider-arrow {
	position: absolute;
	top: 45%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(0, 26, 65, 0.45);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: #fff;
	cursor: pointer;
	z-index: 5;
	opacity: 0;
	transition: background-color .2s ease, border-color .2s ease, opacity .25s ease, transform .2s ease;
}
.hero:hover .hero__slider-arrow,
.hero:focus-within .hero__slider-arrow { opacity: 1; }
.hero__slider-arrow:hover {
	background: var(--secondary);
	border-color: var(--secondary);
	transform: translateY(-50%) scale(1.05);
}
.hero__slider-arrow--prev { left: clamp(.75rem, 2vw, 1.5rem); }
.hero__slider-arrow--next { right: clamp(.75rem, 2vw, 1.5rem); }
.hero__slider-arrow svg { display: block; }

@media (max-width: 720px) {
	.hero__slider-arrow { display: none; }
}

/* Admin: widget media picker preview */
.gozvakfi-media-preview img {
	max-width: 220px;
	height: auto;
	border-radius: 4px;
	display: block;
	border: 1px solid #d0d4d9;
	background: #fff;
	padding: 2px;
}
.gozvakfi-media-pick .dashicons { margin-right: .15em; }

/* ============================================================
   SINGLE POST — yazı detay sayfası
   ============================================================ */
.single-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	margin-top: 1.25rem;
	font-size: .85rem;
	color: rgba(255, 255, 255, 0.78);
}
.single-meta > span {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
}
.single-meta .icon {
	width: 16px;
	height: 16px;
	color: var(--secondary-fixed);
}
.single-meta a {
	color: var(--secondary-fixed);
	text-decoration: none;
	transition: color .15s ease;
}
.single-meta a:hover { color: #fff; }

.single-article { max-width: none; margin: 0; }
.single-article p { font-size: 1.0625rem; line-height: 1.85; }
.single-article > * + * { margin-top: 1.25em; }
.single-article > p + p { margin-top: 1.1em; }

/* Single featured image — floated left, content wraps right & below */
.single-featured-img {
	float: left;
	width: clamp(220px, 34%, 360px);
	aspect-ratio: 1 / 1;
	margin: 0.35rem 1.75rem 1rem 0;
	border-radius: var(--r-xl);
	overflow: hidden;
	shape-outside: inset(0 round var(--r-xl));
	background: var(--surface-container);
}
.single-featured-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 0 !important;
}
/* First-child margin reset şu floated figure'ı içerikteki ilk paragrafa yapıştırıyor */
.single-article > .single-featured-img + * { margin-top: 0; }
.single-article > .single-featured-img + h2,
.single-article > .single-featured-img + h3 { margin-top: 0 !important; }

@media (max-width: 600px) {
	.single-featured-img {
		float: none;
		width: 100%;
		aspect-ratio: 16 / 9;
		margin: 0 0 1.5rem;
	}
}
.single-article h2 { font-size: clamp(1.4rem, 2.4vw, 1.875rem); margin-top: 2.5em !important; margin-bottom: .8em; color: var(--primary); }
.single-article h3 { font-size: clamp(1.15rem, 1.9vw, 1.4rem); margin-top: 1.8em !important; margin-bottom: .6em; }
.single-article ul, .single-article ol { padding-left: 1.6rem; margin: 1.25em 0; }
.single-article ul { list-style: disc; }
.single-article ol { list-style: decimal; }
.single-article ul li::marker { color: var(--secondary); }
.single-article ol li::marker { color: var(--primary); font-weight: 700; }
.single-article ul li, .single-article ol li { margin: .55em 0; line-height: 1.8; }
.single-article blockquote {
	border-left: 4px solid var(--secondary);
	padding: .75rem 1.25rem;
	margin: 1.5em 0;
	background: var(--surface-container-low);
	border-radius: 0 var(--r-md) var(--r-md) 0;
	font-style: italic;
	color: var(--on-surface-variant);
}
.single-article blockquote strong { color: var(--primary); }
.single-article a { color: var(--primary); border-bottom: 1px solid var(--primary-fixed); transition: border-color .15s ease, color .15s ease; }
.single-article a:hover { color: var(--secondary); border-bottom-color: var(--secondary); }

.single-related {
	max-width: none;
	margin: 4rem 0 0;
	padding-top: 3rem;
	border-top: 1px solid var(--outline-variant);
}
.single-related__title {
	font-family: var(--font-headline);
	font-size: clamp(1.5rem, 2.4vw, 1.875rem);
	font-weight: 700;
	color: var(--primary);
	margin: 0 0 2rem;
	letter-spacing: -0.01em;
}

/* ============ 404 ============ */
.error-404 {
	padding-top: clamp(7rem, 11vw, 9.5rem);
	padding-bottom: clamp(3rem, 6vw, 5rem) !important;
	text-align: center;
}
.error-404__inner {
	max-width: 760px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
}
.error-404__code {
	font-family: var(--font-headline);
	font-weight: 800;
	font-size: clamp(6.5rem, 18vw, 12rem);
	line-height: 0.9;
	letter-spacing: -0.05em;
	background: linear-gradient(135deg, #fff 0%, #ffb89b 55%, var(--secondary) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: 0 8px 30px rgba(255, 112, 65, 0.18);
	margin: 0;
	user-select: none;
}
.error-404__title {
	margin: 0;
	max-width: 620px;
}
.error-404__lead {
	margin: 0 auto;
	max-width: 580px;
}
.error-404__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-top: 0.5rem;
}
.error-404__search {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
	max-width: 560px;
	margin-top: 1.5rem;
	padding: 0.45rem 0.45rem 0.45rem 1rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--r-full);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: border-color .2s ease, background .2s ease;
}
.error-404__search:focus-within {
	border-color: rgba(255, 255, 255, 0.4);
	background: rgba(255, 255, 255, 0.12);
}
.error-404__search-icon {
	width: 18px;
	height: 18px;
	color: rgba(255, 255, 255, 0.75);
	flex-shrink: 0;
}
.error-404__search-input {
	flex: 1;
	min-width: 0;
	background: transparent;
	border: 0;
	outline: none;
	color: #fff;
	font: inherit;
	font-size: 0.95rem;
	padding: 0.55rem 0.25rem;
}
.error-404__search-input::placeholder {
	color: rgba(255, 255, 255, 0.55);
}
.error-404__search-btn {
	flex-shrink: 0;
	padding: 0.6rem 1.2rem;
	font-size: 0.9rem;
}
.error-404__suggest-head {
	text-align: center;
	margin-bottom: 2rem;
}
.error-404__suggest-head .section-underline {
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 600px) {
	.error-404__search {
		flex-wrap: wrap;
		border-radius: 1.25rem;
		padding: 0.6rem;
	}
	.error-404__search-input {
		flex: 1 1 calc(100% - 30px);
	}
	.error-404__search-btn {
		flex: 1 1 100%;
	}
}

/* ============ Search hero ============ */
.search-hero__query {
	color: var(--secondary);
}
.search-hero__form {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
	max-width: 560px;
	margin-top: 1.5rem;
	padding: 0.45rem 0.45rem 0.45rem 1rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--r-full);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: border-color .2s ease, background .2s ease;
}
.search-hero__form:focus-within {
	border-color: rgba(255, 255, 255, 0.4);
	background: rgba(255, 255, 255, 0.12);
}
.search-hero__icon {
	width: 18px;
	height: 18px;
	color: rgba(255, 255, 255, 0.75);
	flex-shrink: 0;
}
.search-hero__input {
	flex: 1;
	min-width: 0;
	background: transparent;
	border: 0;
	outline: none;
	color: #fff;
	font: inherit;
	font-size: 0.95rem;
	padding: 0.55rem 0.25rem;
}
.search-hero__input::placeholder {
	color: rgba(255, 255, 255, 0.55);
}
.search-hero__btn {
	flex-shrink: 0;
	padding: 0.6rem 1.2rem;
	font-size: 0.9rem;
}
@media (max-width: 600px) {
	.search-hero__form {
		flex-wrap: wrap;
		border-radius: 1.25rem;
		padding: 0.6rem;
	}
	.search-hero__input {
		flex: 1 1 calc(100% - 30px);
	}
	.search-hero__btn {
		flex: 1 1 100%;
	}
}

/* ============ Category hero ============ */
.category-hero__eyebrow {
	color: var(--secondary);
	margin-bottom: 0.5rem;
}
.category-hero__title {
	margin-top: 0.25rem;
}
.category-hero__count {
	margin: 1rem 0 0;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* ============ Loop grid (archive/category) ============ */
.loop-grid {
	margin-bottom: 3rem;
}
.loop-grid .blog-card__cat {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 2;
	padding: 0.35rem 0.75rem;
	background: rgba(0, 55, 122, 0.85);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	border-radius: var(--r-full);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.loop-grid .blog-card__image {
	position: relative;
}
.blog-card__image--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(circle at 30% 30%, rgba(255, 112, 65, 0.12) 0%, transparent 55%),
		linear-gradient(135deg, #eaf2ff 0%, #f3f6fb 100%);
	overflow: hidden;
}
.blog-card__image--placeholder::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 1px 1px, rgba(0, 55, 122, 0.08) 1px, transparent 0);
	background-size: 18px 18px;
	mask-image: linear-gradient(to bottom right, black 20%, transparent 90%);
	-webkit-mask-image: linear-gradient(to bottom right, black 20%, transparent 90%);
	pointer-events: none;
}
.blog-card__placeholder-icon {
	width: 72px;
	height: 72px;
	color: rgba(0, 55, 122, 0.22);
	stroke-width: 1.5;
	position: relative;
	z-index: 1;
}
.blog-card__image--placeholder .blog-card__placeholder-logo {
	width: clamp(120px, 40%, 180px) !important;
	height: auto !important;
	max-height: 55% !important;
	object-fit: contain !important;
	transform: none !important;
	opacity: 0.55;
	position: relative;
	z-index: 1;
}
.blog-card:hover .blog-card__placeholder-logo { transform: none !important; }

/* ============ Pagination ============ */
.gv-pagination {
	display: flex;
	justify-content: center;
	margin-top: 2.5rem;
}
.gv-pagination__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	list-style: none;
	padding: 0;
	margin: 0;
}
.gv-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	min-width: 42px;
	height: 42px;
	padding: 0 0.85rem;
	border-radius: var(--r-full);
	background: #fff;
	color: var(--primary);
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	border: 1px solid var(--surface-container);
	transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.gv-pagination .page-numbers:hover {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
}
.gv-pagination .page-numbers.current {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
	cursor: default;
}
.gv-pagination .page-numbers.dots {
	background: transparent;
	border-color: transparent;
	cursor: default;
}
.gv-pagination .page-numbers.dots:hover {
	background: transparent;
	color: var(--primary);
}
.gv-pagination .page-numbers .icon {
	width: 16px;
	height: 16px;
}
.gv-pagination .prev,
.gv-pagination .next {
	padding: 0 1rem;
}
@media (max-width: 480px) {
	.gv-pagination .page-numbers {
		min-width: 38px;
		height: 38px;
		font-size: 0.875rem;
		padding: 0 0.65rem;
	}
	.gv-pagination .prev span,
	.gv-pagination .next span {
		display: none;
	}
}

/* ============ Empty state (loop / search) ============ */
.loop-empty {
	max-width: 560px;
	margin: 2rem auto;
	padding: 3rem 1.5rem;
	text-align: center;
	background: #fff;
	border: 1px solid var(--surface-container);
	border-radius: var(--r-xl);
}
.loop-empty__icon {
	width: 56px;
	height: 56px;
	color: var(--primary);
	opacity: 0.5;
	margin-bottom: 1rem;
}
.loop-empty__title {
	font-family: var(--font-headline);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary);
	margin: 0 0 0.75rem;
}
.loop-empty__text {
	color: var(--on-surface-variant, #555);
	line-height: 1.6;
	margin: 0 0 1.5rem;
}
.loop-empty__search {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 0.4rem 0.4rem 1rem;
	background: var(--surface);
	border: 1px solid var(--surface-container);
	border-radius: var(--r-full);
	transition: border-color .2s ease;
}
.loop-empty__search:focus-within {
	border-color: var(--primary);
}
.loop-empty__search-icon {
	width: 18px;
	height: 18px;
	color: var(--primary);
	flex-shrink: 0;
}
.loop-empty__search-input {
	flex: 1;
	min-width: 0;
	background: transparent;
	border: 0;
	outline: none;
	font: inherit;
	font-size: 0.95rem;
	padding: 0.55rem 0.25rem;
	color: var(--primary);
}
.loop-empty__search-btn {
	flex-shrink: 0;
	padding: 0.55rem 1.1rem;
	font-size: 0.9rem;
}
@media (max-width: 480px) {
	.loop-empty__search {
		flex-wrap: wrap;
		border-radius: 1rem;
		padding: 0.5rem;
	}
	.loop-empty__search-btn {
		flex: 1 1 100%;
	}
}

/* =========================================================
 * HEKİMLER (CPT gv_hekim)
 * ========================================================= */

/* =========================================================
 * İletişim — Merkez sayfası (page-templates/iletisim-merkez.php)
 * ========================================================= */
.gv-iletisim-layout {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: clamp(1.5rem, 3vw, 2.5rem);
	align-items: start;
}
.gv-iletisim-side { position: sticky; top: 100px; }
.gv-iletisim-main { min-width: 0; }

.gv-iletisim-card {
	background: #f4f7fb;
	border: 1px solid #e0e6ee;
	border-radius: 12px;
	padding: 1.5rem 1.4rem 1.25rem;
	margin-bottom: 1rem;
}
.gv-iletisim-card__title {
	margin: 0 0 1rem;
	color: #00377a;
	font-size: 1.1rem;
	font-weight: 700;
}
.gv-iletisim-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; }
.gv-iletisim-list li { display: flex; gap: .65rem; color: #2a3340; line-height: 1.55; font-size: .96rem; }
.gv-iletisim-list svg {
	width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
	color: #ff7041; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.gv-iletisim-list a { color: inherit; text-decoration: none; transition: color .2s ease; }
.gv-iletisim-list a:hover { color: #ff7041; }

.gv-iletisim-actions {
	display: flex;
	flex-direction: column;
	gap: .65rem;
}
.gv-il-btn {
	display: flex;
	align-items: center;
	gap: .7rem;
	padding: .95rem 1.1rem;
	border-radius: 10px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border: 1px solid transparent;
	line-height: 1.2;
	transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.gv-il-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,55,122,.14); }
.gv-il-btn svg {
	width: 20px; height: 20px; flex-shrink: 0;
	fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.gv-il-btn.is-ghost   { background: #d8e7f7; color: #00377a; }
.gv-il-btn.is-ghost:hover { background: #c6dbf2; }
.gv-il-btn.is-primary { background: #ff7041; color: #fff; box-shadow: 0 4px 14px rgba(255,112,65,.28); }
.gv-il-btn.is-primary:hover { background: #e85a2c; box-shadow: 0 10px 24px rgba(255,112,65,.36); }
.gv-il-btn.is-success { background: #16a34a; color: #fff; box-shadow: 0 4px 14px rgba(22,163,74,.28); }
.gv-il-btn.is-success:hover { background: #15803d; box-shadow: 0 10px 24px rgba(22,163,74,.36); }

/* Ulaşım accordion */
.gv-ulasim-heading {
	margin: 1rem 0 1rem;
	font-size: clamp(1.4rem, 2.4vw, 1.7rem);
	color: #00377a;
	font-weight: 800;
	letter-spacing: -.01em;
}
.gv-ulasim {
	display: flex;
	flex-direction: column;
	gap: .65rem;
}
.gv-ulasim__item {
	background: #fff;
	border: 1px solid #e0e6ee;
	border-radius: 10px;
	overflow: hidden;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.gv-ulasim__item[open] {
	border-color: #ff7041;
	box-shadow: 0 4px 14px rgba(255,112,65,.10);
}
.gv-ulasim__item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.25rem;
	cursor: pointer;
	list-style: none;
	background: #f9fafc;
	transition: background-color .2s ease;
}
.gv-ulasim__item summary::-webkit-details-marker { display: none; }
.gv-ulasim__item summary:hover { background: #f0f4fa; }
.gv-ulasim__item[open] summary { background: #fff; border-bottom: 1px solid #f0f4fa; }
.gv-ulasim__title {
	flex: 1;
	color: #00377a;
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: .01em;
	text-transform: uppercase;
}
.gv-ulasim__chev {
	width: 18px; height: 18px; flex-shrink: 0;
	fill: none; stroke: #ff7041; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
	transition: transform .25s ease;
}
.gv-ulasim__item[open] .gv-ulasim__chev { transform: rotate(180deg); }
.gv-ulasim__content {
	padding: 1.1rem 1.4rem 1.3rem;
	color: #2a3340;
	font-size: 1rem;
	line-height: 1.75;
}
.gv-ulasim__content p { margin: 0 0 .85rem; }
.gv-ulasim__content p:last-child { margin-bottom: 0; }
.gv-ulasim__content ul { margin: .5rem 0 .85rem 1.25rem; padding: 0; }
.gv-ulasim__content li { padding: .15rem 0; }
.gv-ulasim__content hr { border: 0; border-top: 1px dashed #e0e6ee; margin: 1rem 0; }
.gv-ulasim__content b, .gv-ulasim__content strong { color: #00377a; }

/* Responsive */
@media (max-width: 880px) {
	.gv-iletisim-layout { grid-template-columns: 1fr; }
	.gv-iletisim-side { position: static; }
	.gv-iletisim-actions { flex-direction: row; flex-wrap: wrap; }
	.gv-il-btn { flex: 1 1 calc(50% - .35rem); justify-content: center; padding: .85rem 1rem; }
}
@media (max-width: 480px) {
	.gv-iletisim-actions { flex-direction: column; }
	.gv-il-btn { flex: 1 1 100%; }
}

/* =========================================================
 * Merkez yan paneli (sidebar) — Tıkla Ara / Randevu / Konum
 * ========================================================= */
.gv-with-sidebar {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: clamp(1.5rem, 3vw, 2.5rem);
	align-items: start;
}
.gv-with-sidebar__main { min-width: 0; }

.gv-merkez-sidebar {
	position: sticky;
	top: 100px;
}
.gv-merkez-sidebar__inner {
	display: flex;
	flex-direction: column;
	gap: .75rem;
}
.gv-msb-btn {
	display: flex;
	align-items: center;
	gap: .75rem;
	padding: 1.05rem 1.25rem;
	border-radius: 10px;
	font-size: 1.05rem;
	font-weight: 600;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
	border: 1px solid transparent;
	line-height: 1.2;
}
.gv-msb-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(0,55,122,.14);
}
.gv-msb-btn__icon {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.gv-msb-btn.is-ghost {
	background: #d8e7f7;
	color: #00377a;
}
.gv-msb-btn.is-ghost:hover {
	background: #c6dbf2;
}
.gv-msb-btn.is-primary {
	background: #ff7041;
	color: #fff;
	box-shadow: 0 4px 14px rgba(255,112,65,.28);
}
.gv-msb-btn.is-primary:hover {
	background: #e85a2c;
	box-shadow: 0 10px 24px rgba(255,112,65,.36);
}

/* Tedavi Birimleri nav */
.gv-msb-tedavi {
	margin-top: 1.25rem;
	background: #fff;
	border: 1px solid #dce3ed;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(0,55,122,.05);
}
.gv-msb-tedavi__title {
	margin: 0;
	padding: .95rem 1.25rem;
	font-size: .82rem;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(135deg, #00377a 0%, #0a4a99 100%);
	letter-spacing: .1em;
	text-transform: uppercase;
}
.gv-msb-tedavi__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.gv-msb-tedavi__list li + li {
	border-top: 1px solid #eef1f5;
}
.gv-msb-tedavi__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .5rem;
	padding: .9rem 1.1rem;
	color: #00377a;
	font-weight: 600;
	font-size: .92rem;
	letter-spacing: -.005em;
	text-decoration: none;
	transition: background-color .2s ease, color .2s ease, padding-left .2s ease;
	position: relative;
}
.gv-msb-tedavi__link > span {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	min-width: 0;
	flex: 1;
}
.gv-msb-tedavi__link::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: transparent;
	transition: background-color .2s ease;
}
.gv-msb-tedavi__link:hover {
	background: #f4f7fb;
	color: #ff7041;
	padding-left: 1.5rem;
}
.gv-msb-tedavi__link:hover::before {
	background: #ff7041;
}
.gv-msb-tedavi__link.is-current {
	background: #f4f7fb;
	color: #ff7041;
}
.gv-msb-tedavi__link.is-current::before {
	background: #ff7041;
}
.gv-msb-tedavi__arrow {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	opacity: .6;
	transition: opacity .2s ease, transform .2s ease;
}
.gv-msb-tedavi__link:hover .gv-msb-tedavi__arrow {
	opacity: 1;
	transform: translateX(2px);
}

/* Tedavi nav on mobile: open by default but compact */
@media (max-width: 880px) {
	.gv-msb-tedavi {
		margin-top: 1rem;
	}
	.gv-msb-tedavi__link {
		padding: .8rem 1rem;
		font-size: .95rem;
	}
}

/* Responsive: stack sidebar above content on tablet/mobile */
@media (max-width: 880px) {
	.gv-with-sidebar {
		grid-template-columns: 1fr;
	}
	.gv-merkez-sidebar {
		position: static;
	}
	.gv-merkez-sidebar__inner {
		flex-direction: row;
		flex-wrap: wrap;
		gap: .6rem;
	}
	.gv-msb-btn {
		flex: 1 1 auto;
		min-width: 0;
		justify-content: center;
		padding: .9rem 1rem;
		font-size: 1rem;
	}
}
@media (max-width: 480px) {
	.gv-merkez-sidebar__inner {
		flex-direction: column;
	}
	.gv-msb-btn {
		flex: 1 1 100%;
	}
}

/* Live search input */
.gv-hekim-search {
	position: relative;
	margin: 1.5rem 0 .25rem;
	max-width: 560px;
	display: flex;
	align-items: center;
	gap: .5rem;
	background: #fff;
	border: 1px solid #c8d4e6;
	border-radius: 999px;
	padding: .35rem .45rem .35rem 1rem;
	box-shadow: 0 4px 14px rgba(0,55,122,.06);
	transition: border-color .2s ease, box-shadow .2s ease;
}
.gv-hekim-search:focus-within {
	border-color: #ff7041;
	box-shadow: 0 4px 18px rgba(255,112,65,.18);
}
.gv-hekim-search__icon {
	display: flex;
	color: #6a7480;
	flex-shrink: 0;
}
.gv-hekim-search__input {
	flex: 1;
	border: 0;
	background: transparent;
	padding: .65rem .25rem;
	font-size: 1rem;
	color: #2a3340;
	outline: none;
	min-width: 0;
}
.gv-hekim-search__input::placeholder { color: #98a2b3; }
.gv-hekim-search__input::-webkit-search-cancel-button { display: none; }
.gv-hekim-search__clear {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border: 0;
	background: rgba(0,55,122,.08);
	color: #00377a;
	border-radius: 50%;
	font-size: 1.2rem;
	line-height: 1;
	cursor: pointer;
	transition: background .2s ease, color .2s ease;
}
.gv-hekim-search__clear:hover { background: #ff7041; color: #fff; }
.gv-hekim-search__count {
	flex-shrink: 0;
	padding: 0 .85rem 0 .35rem;
	font-size: .82rem;
	font-weight: 600;
	color: #6a7480;
	white-space: nowrap;
}
.gv-hekim-empty {
	margin: 2rem 0;
	padding: 2rem;
	text-align: center;
	background: #fff;
	border: 1px dashed #c8d4e6;
	border-radius: 12px;
	color: #6a7480;
	font-style: italic;
}
.gv-hekim-card.is-hidden { display: none !important; }

/* Listing grid (page-templates/hekimler-merkez.php) */
.gv-hekim-grid {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1.5rem;
}
.gv-hekim-card {
	background: #fff;
	border: 1px solid #e0e6ee;
	border-radius: 10px;
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.gv-hekim-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 28px rgba(0,55,122,.10);
	border-color: #c8d4e6;
}
.gv-hekim-card.is-yonetim {
	border-color: #ff7041;
	box-shadow: 0 4px 14px rgba(255,112,65,.18);
}
.gv-hekim-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}
.gv-hekim-card__foto {
	position: relative;
	aspect-ratio: 1 / 1;
	background: #eaf0f9;
	overflow: hidden;
}
.gv-hekim-card__foto img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .35s ease;
}
.gv-hekim-card:hover .gv-hekim-card__foto img {
	transform: scale(1.04);
}
.gv-hekim-card__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	color: #b8c4d8;
}
.gv-hekim-card__body {
	padding: 1rem 1.1rem 1.15rem;
	display: flex;
	flex-direction: column;
	gap: .25rem;
	flex: 1;
}
.gv-hekim-card__ad {
	color: #00377a;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
}
.gv-hekim-card__unvan {
	color: #5a6678;
	font-size: .88rem;
	line-height: 1.4;
}
.gv-hekim-card.is-yonetim .gv-hekim-card__unvan {
	color: #ff7041;
	font-weight: 600;
}

/* Detail page (single-gv_hekim.php) */
.gv-hekim-detay {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: start;
	margin-bottom: 2.5rem;
}

/* Merkez badge(s) under doctor title */
.gv-hekim-detay__merkezler {
	display: flex;
	flex-wrap: wrap;
	gap: .55rem;
	margin-top: .25rem;
}
.gv-hekim-detay__merkez-badge {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	padding: .5rem .9rem;
	background: rgba(255,112,65,.12);
	color: #ff7041;
	border-radius: 999px;
	font-weight: 600;
	font-size: .92rem;
	text-decoration: none;
	transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.gv-hekim-detay__merkez-badge svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.gv-hekim-detay__merkez-badge:hover {
	background: #ff7041;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 6px 14px rgba(255,112,65,.25);
}

/* Linear bio flow */
.gv-hekim-akis {
	color: #2a3340;
	font-size: 1.0625rem;
	line-height: 1.75;
}
.gv-hekim-akis--top {
	margin-top: 1.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid #e0e6ee;
}
.gv-hekim-akis--top .gv-hekim-row { margin-bottom: .75rem; }
.gv-hekim-akis--bottom {
	margin-top: 2rem;
}
.gv-hekim-row {
	margin: 0 0 1.1rem;
}
.gv-hekim-row strong {
	color: #1a1f29;
	font-weight: 700;
}
.gv-hekim-row--label {
	margin-bottom: .35rem;
}
.gv-hekim-block-inline {
	margin: 0 0 1.4rem;
}
.gv-hekim-inline-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.gv-hekim-inline-list li {
	color: #00377a;
	padding: .2rem 0;
	line-height: 1.6;
}
.gv-hekim-yayin-title {
	margin: 2.25rem 0 1rem;
	font-size: clamp(1.55rem, 3vw, 2.1rem);
	font-weight: 800;
	color: #00377a;
	letter-spacing: -.01em;
}
.gv-hekim-yayinlar {
	color: #2a3340;
	font-size: 1rem;
	line-height: 1.75;
}
.gv-hekim-yayinlar p { margin: 0 0 .85rem; }

.gv-hekim-yayin-list {
	list-style: none;
	margin: 0;
	padding: 0;
	color: #2a3340;
	font-size: .97rem;
	line-height: 1.65;
	counter-reset: gv-yayin;
}
.gv-hekim-yayin-list li {
	padding: .7rem 0 .7rem 0;
	border-bottom: 1px dashed #e6ebf2;
}
.gv-hekim-yayin-list li:last-child { border-bottom: 0; }
.gv-hekim-extra { margin-top: 2rem; }
.gv-hekim-detay__foto {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0,55,122,.10);
	aspect-ratio: 3 / 4;
}
.gv-hekim-detay__foto img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.gv-hekim-detay__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 6rem;
	color: #b8c4d8;
	background: #eaf0f9;
}
.gv-hekim-detay__bilgi { min-width: 0; }
.gv-hekim-detay__unvan {
	display: inline-block;
	margin: 0 0 1.25rem;
	padding: .35rem .85rem;
	font-size: .95rem;
	font-weight: 600;
	color: #00377a;
	background: rgba(0,55,122,.08);
	border-radius: 999px;
}
.gv-hekim-detay__unvan.is-yonetim {
	background: rgba(255,112,65,.12);
	color: #ff7041;
}
.gv-hekim-detay__meta {
	margin: 0;
	display: grid;
	gap: 1rem;
}
.gv-hekim-detay__meta > div {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 1rem;
	padding: .75rem 0;
	border-top: 1px solid #e0e6ee;
}
.gv-hekim-detay__meta > div:first-child { border-top: 0; padding-top: 0; }
.gv-hekim-detay__meta dt {
	font-size: .85rem;
	color: #6a7480;
	text-transform: uppercase;
	letter-spacing: .06em;
	font-weight: 600;
	margin: 0;
}
.gv-hekim-detay__meta dd {
	margin: 0;
	color: #2a3340;
	line-height: 1.55;
}
.gv-hekim-detay__meta dd a {
	color: #00377a;
	text-decoration: underline;
	text-decoration-color: rgba(0,55,122,.3);
}
.gv-hekim-detay__meta dd a:hover { color: #ff7041; }

.gv-hekim-blocks {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}
.gv-hekim-block h3 {
	margin: 0 0 .85rem;
	padding: 0 0 .5rem;
	border-bottom: 2px solid #ff7041;
	color: #00377a;
	font-size: 1.05rem;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.gv-hekim-block ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.gv-hekim-block li {
	padding: .55rem 0;
	border-bottom: 1px dashed #e0e6ee;
	color: #2a3340;
	line-height: 1.55;
}
.gv-hekim-block li:last-child { border-bottom: 0; }

.gv-hekim-yayinlar {
	color: #2a3340;
	line-height: 1.75;
	font-size: 1rem;
}
.gv-hekim-yayinlar p { margin: 0 0 .85rem; }

@media (max-width: 720px) {
	.gv-hekim-detay {
		grid-template-columns: 1fr;
	}
	.gv-hekim-detay__foto {
		max-width: 280px;
		margin: 0 auto;
	}
	.gv-hekim-detay__meta > div {
		grid-template-columns: 1fr;
		gap: .25rem;
	}
}

/* ============================================================
   MERKEZ DETAY — HEKİMLERİMİZ BLOĞU
   Üst sıra: yönetim kartları (gri bg + turuncu sol şerit)
   Alt: normal hekimler (beyaz bg + mavi sol şerit)
   ============================================================ */
.gv-merkez-hekimler-sec .gv-eyebrow { color: #ff7041; }
.gv-merkez-hekimler-sec .gv-section-title {
	color: #00377a;
	margin-bottom: 1.75rem;
}
.gv-mhk-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: .85rem 1.1rem;
}
.gv-mhk-card {
	position: relative;
	display: block;
	padding: 1.05rem 1.25rem 1.05rem 1.5rem;
	background: #fff;
	border-radius: 6px;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 1px 2px rgba(20, 40, 80, .04);
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.gv-mhk-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 12%;
	bottom: 12%;
	width: 5px;
	border-radius: 3px;
	background: #00377a;
	transition: background .18s ease, top .18s ease, bottom .18s ease;
}
.gv-mhk-card.is-yonetim {
	background: #eef1f5;
}
.gv-mhk-card.is-yonetim::before {
	background: #ff7041;
}
.gv-mhk-card__name {
	display: block;
	font-weight: 700;
	color: #00377a;
	font-size: 1.02rem;
	line-height: 1.3;
}
.gv-mhk-card__role {
	display: block;
	margin-top: .35rem;
	font-size: .82rem;
	letter-spacing: .04em;
	color: #5b6877;
}
.gv-mhk-card.is-yonetim .gv-mhk-card__role {
	color: #ff7041;
	font-weight: 700;
	text-transform: uppercase;
	font-size: .78rem;
	letter-spacing: .08em;
}
.gv-mhk-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 55, 122, .12);
}
.gv-mhk-card:hover::before {
	top: 0;
	bottom: 0;
}
@media ( max-width: 900px ) {
	.gv-mhk-grid { grid-template-columns: repeat(2, 1fr); }
}
@media ( max-width: 560px ) {
	.gv-mhk-grid { grid-template-columns: 1fr; }
}

/* NOT: content-visibility:auto kaldırıldı — ekran-dışı bölümler scroll'la
   görünür olunca senkron render edilip scroll'u kısa süre donduruyordu
   (intrinsic-size tahmini gerçek yükseklikten farklı olunca sıçrama/kasma).
   Smooth scroll, küçük perf kazancından önemli. */

/* ============================================================
   FIX: Kapalı overlay panellerinde backdrop-filter'i kapat.
   Bazı mobil tarayıcılar, panel gizli (opacity:0 / visibility:hidden)
   olsa bile backdrop-filter efektini render edip ekranda hayalet bir
   panel (yuvarlak "arch") gösterebiliyor. Açıkken (.is-open) normal blur döner.
   ============================================================ */
.online-overlay:not(.is-open) .online-overlay__panel,
.search-overlay:not(.is-open) .search-overlay__panel {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* ============================================================
   Slider noktaları (mobil): görselin (slide) alt-ortasında.
   NOT: Bu kural, base .hero__slider-dots (yukarıda, bottom:clamp)
   kuralından SONRA gelmeli — yoksa base 'bottom' bizim 'bottom:auto'yu
   ezip kutuyu top→bottom geriyordu (179x935 dev arch bug'ı).
   ============================================================ */
@media (max-width: 767px) {
  .hero__slider-dots {
    top: calc(640px - 1.75rem);
    bottom: auto;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}
