/* ===================================================================
   UEB - Uluslararası Esnaf Birliği
   Modern, gradient-mesh, no-dots design system
   =================================================================== */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Manrope', system-ui, sans-serif; color: #0f172a; background: #ffffff; line-height: 1.6; overflow-x: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* --- Design tokens --- */
:root {
  --ink: #0a0f1e;
  --ink-2: #0f172a;
  --ink-3: #1e293b;
  --text: #334155;
  --text-muted: #64748b;
  --line: #e2e8f0;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --surface-3: #f1f5f9;

  --brand: #0b3d91;
  --brand-2: #1e40af;
  --accent: #06b6d4;
  --accent-2: #0ea5e9;
  --gold: #f59e0b;
  --gold-2: #d97706;

  --grad-hero: linear-gradient(120deg, #0b3d91 0%, #1e40af 30%, #06b6d4 65%, #f59e0b 100%);
  --grad-btn: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 50%, #1e40af 100%);
  --grad-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 30px -10px rgba(15, 23, 42, 0.2);
  --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --display: 'Fraunces', Georgia, serif;
  --sans: 'Manrope', system-ui, sans-serif;

  --container: 1280px;
}

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(16px, 4vw, 32px); }

/* --- Typography helpers --- */
.display { font-family: var(--display); font-weight: 500; letter-spacing: -0.02em; line-height: 1.05; }
.display em { font-style: italic; font-weight: 600; }
.eyebrow { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 700; color: var(--brand); }
.eyebrow.on-dark { color: #67e8f9; }

/* ===================================================================
   TOP BAR (utility strip)
   =================================================================== */
.topbar {
  background: var(--ink);
  color: #cbd5e1;
  font-size: 12.5px;
  height: 38px;
  display: flex;
  align-items: center;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-left a { display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; }
.topbar-left a:hover { color: #fff; }
.topbar-left svg { width: 14px; height: 14px; opacity: 0.7; }
.topbar-right { display: flex; gap: 14px; align-items: center; }
.topbar-right a { opacity: 0.7; transition: opacity 0.2s; }
.topbar-right a:hover { opacity: 1; }
.topbar-right .divider { width: 1px; height: 14px; background: rgba(255,255,255,0.15); }
@media (max-width: 768px) { .topbar-left .hide-mobile { display: none; } }

/* ===================================================================
   HEADER / NAV
   =================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(1.5) blur(16px);
  -webkit-backdrop-filter: saturate(1.5) blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad-btn);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 900; font-size: 14px; letter-spacing: 0.08em;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.3);
}
.logo-text .name { font-family: var(--display); font-size: 17px; font-weight: 600; color: var(--ink); line-height: 1.1; letter-spacing: -0.01em; }
.logo-text .sub { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav > li { position: relative; }
.nav > li > a {
  display: block;
  padding: 10px 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  border-radius: 10px;
  transition: all 0.2s;
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap;
}
.nav > li > a:hover { background: var(--surface-3); color: var(--brand); }
.nav > li > a svg { width: 12px; height: 12px; opacity: 0.5; }
.nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 260px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}
.nav > li:hover > .nav-submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-submenu a {
  display: block;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  border-radius: 10px;
  transition: all 0.15s;
}
.nav-submenu a:hover { background: var(--surface-3); color: var(--brand); padding-left: 18px; }

.header-cta { display: flex; align-items: center; gap: 10px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--ink);
  color: white;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-btn);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-1px); }
.btn-primary svg { width: 14px; height: 14px; transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: white;
  color: var(--ink-2);
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-ghost svg { width: 14px; height: 14px; }

.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; background: var(--surface-3); }
.menu-toggle svg { width: 20px; height: 20px; margin: auto; }

@media (max-width: 1180px) {
  .nav { display: none; position: fixed; top: 76px; left: 0; right: 0; background: white; flex-direction: column; padding: 20px; gap: 4px; box-shadow: var(--shadow-lg); max-height: calc(100vh - 76px); overflow-y: auto; }
  .nav.open { display: flex; }
  .nav > li { width: 100%; }
  .nav > li > a { width: 100%; justify-content: space-between; }
  .nav-submenu { position: static; transform: none; min-width: 0; width: 100%; box-shadow: none; border: none; padding: 4px 0 4px 16px; margin-top: 4px; display: none; }
  .nav > li.open > .nav-submenu { display: block; opacity: 1; visibility: visible; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
  .header-cta .btn-ghost { display: none; }
}
@media (max-width: 480px) {
  .header-cta .btn-primary span { display: none; }
  .header-cta .btn-primary { padding: 11px 14px; }
}

/* ===================================================================
   HERO — Video slider + gradient mesh overlay
   =================================================================== */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  background: var(--ink);
  color: white;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide video,
.hero-slide .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-slide .hero-bg-img { background: var(--grad-hero); }

/* Gradient mesh overlay (subtle noise-free) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(6, 182, 212, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 70%, rgba(30, 64, 175, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(245, 158, 11, 0.25) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10, 15, 30, 0.7) 0%, rgba(10, 15, 30, 0.55) 50%, rgba(10, 15, 30, 0.85) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,0.08), transparent 30%),
    linear-gradient(180deg, transparent 70%, rgba(10, 15, 30, 0.95) 100%);
  z-index: 3;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  padding-block: clamp(60px, 10vw, 120px);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #67e8f9;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease both;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.4; } }

.hero-title {
  font-family: var(--display);
  font-size: clamp(44px, 8vw, 112px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-top: 28px;
  animation: fadeInUp 1s 0.15s ease both;
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, #67e8f9 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  max-width: 620px;
  margin-top: 28px;
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  animation: fadeInUp 1s 0.3s ease both;
}
.hero-actions { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 12px; animation: fadeInUp 1s 0.45s ease both; }
.hero-actions .btn-primary { background: white; color: var(--ink); padding: 14px 28px; }
.hero-actions .btn-primary::before { background: var(--grad-btn); }
.hero-actions .btn-primary:hover { color: white; }
.hero-actions .btn-ghost {
  background: rgba(255,255,255,0.08);
  color: white;
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 14px 28px;
}
.hero-actions .btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); }

.hero-stats {
  margin-top: clamp(60px, 10vw, 100px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 40px);
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  animation: fadeInUp 1s 0.6s ease both;
}
.hero-stat .n { font-family: var(--display); font-weight: 300; font-size: clamp(36px, 5vw, 68px); line-height: 1; letter-spacing: -0.03em; }
.hero-stat .l { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 8px; }
@media (max-width: 640px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* Slider controls */
.hero-slider-controls {
  position: absolute;
  bottom: 28px; right: clamp(16px, 4vw, 40px);
  z-index: 6;
  display: flex; gap: 8px; align-items: center;
}
.hero-slider-controls button {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  backdrop-filter: blur(8px);
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.hero-slider-controls button:hover { background: rgba(255,255,255,0.2); }
.hero-slider-controls svg { width: 16px; height: 16px; }
.hero-slider-dots { display: flex; gap: 6px; margin: 0 10px; }
.hero-slider-dots button {
  width: 10px; height: 10px; padding: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  transition: all 0.3s;
}
.hero-slider-dots button.active { background: white; width: 28px; border-radius: 5px; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }

/* ===================================================================
   SECTIONS common
   =================================================================== */
.section { padding-block: clamp(70px, 10vw, 130px); }
.section-header { max-width: 780px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-header.center { margin-inline: auto; text-align: center; }
.section-title { font-family: var(--display); font-size: clamp(32px, 5vw, 64px); font-weight: 500; line-height: 1.05; letter-spacing: -0.025em; margin-top: 14px; color: var(--ink); }
.section-title em { font-style: italic; font-weight: 600; }
.section-lead { margin-top: 18px; font-size: clamp(15px, 1.2vw, 17px); color: var(--text-muted); max-width: 580px; line-height: 1.6; }

/* ===================================================================
   QUICK ACCESS GRID
   =================================================================== */
.qa-bg { background: var(--surface-2); position: relative; overflow: hidden; }
.qa-bg::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(6,182,212,0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.qa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .qa-grid { grid-template-columns: 1fr; } }
.qa-card {
  position: relative;
  padding: 40px 32px;
  border-radius: var(--radius-xl);
  background: white;
  border: 1px solid var(--line);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.qa-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.qa-card.feat {
  background: linear-gradient(145deg, var(--ink) 0%, var(--ink-3) 100%);
  color: white;
  border-color: transparent;
}
.qa-card.feat::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(6,182,212,0.35), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.qa-card.feat::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(245,158,11,0.2), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.qa-card > * { position: relative; z-index: 1; }
.qa-card .eyebrow { color: var(--brand); }
.qa-card.feat .eyebrow { color: #67e8f9; }
.qa-card h3 { font-family: var(--display); font-size: clamp(26px, 3vw, 38px); font-weight: 500; line-height: 1.1; margin-top: 10px; letter-spacing: -0.02em; }
.qa-card p { margin-top: 14px; font-size: 14.5px; color: var(--text-muted); line-height: 1.6; }
.qa-card.feat p { color: rgba(255,255,255,0.75); }
.qa-card .arrow { margin-top: 28px; display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink); transition: gap 0.25s; }
.qa-card.feat .arrow { color: #67e8f9; }
.qa-card:hover .arrow { gap: 12px; }
.qa-card .arrow svg { width: 14px; height: 14px; }

/* ===================================================================
   BAŞKAN MESAJI (split layout with portrait)
   =================================================================== */
.president-bg { background: white; }
.president-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
@media (max-width: 900px) { .president-grid { grid-template-columns: 1fr; } }
.president-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  box-shadow: var(--shadow-xl);
}
.president-image::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(6,182,212,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(245,158,11,0.15) 0%, transparent 60%);
}
.president-image .silhouette {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 52%; height: 70%;
  background: linear-gradient(180deg, #334155 0%, #0f172a 100%);
  border-radius: 50% 50% 0 0 / 35% 35% 0 0;
  clip-path: polygon(50% 0%, 20% 30%, 15% 100%, 85% 100%, 80% 30%);
}
.president-image .role-tag {
  position: absolute;
  top: 24px; left: 24px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #67e8f9;
  font-weight: 700;
}
.president-image .sign {
  position: absolute;
  bottom: -20px; right: -14px;
  background: var(--grad-gold);
  padding: 12px 22px;
  border-radius: 14px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-xl);
  z-index: 2;
}
.president-quote {
  font-family: var(--display);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.president-quote em { font-style: italic; font-weight: 500; color: var(--brand); }
.president-meta { display: flex; align-items: center; gap: 14px; margin-top: 36px; }
.president-meta .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #475569, #0f172a);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 14px;
}
.president-meta .name { font-weight: 700; color: var(--ink); }
.president-meta .title { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.president-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 30px;
  font-size: 13px; font-weight: 700;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  padding-bottom: 4px;
  transition: gap 0.2s;
}
.president-link:hover { gap: 12px; }
.president-link svg { width: 14px; height: 14px; }

/* ===================================================================
   HABERLER
   =================================================================== */
.news-bg { background: var(--surface-2); }
.news-header-row { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: clamp(36px, 5vw, 56px); }
.news-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.news-card { cursor: pointer; transition: transform 0.3s; }
.news-card:hover { transform: translateY(-4px); }
.news-card-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--ink-2), var(--ink));
  aspect-ratio: 16/10;
}
.news-card-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,15,30,0.8) 100%);
}
.news-card-media .gradient-bg {
  position: absolute; inset: 0;
  background: var(--grad-hero);
  opacity: 0.85;
}
.news-card-media .gradient-bg.variant-1 { background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%); }
.news-card-media .gradient-bg.variant-2 { background: linear-gradient(135deg, #0f766e 0%, #0ea5e9 100%); }
.news-card-media .gradient-bg.variant-3 { background: linear-gradient(135deg, #b45309 0%, #ef4444 100%); }
.news-card-media .gradient-bg.variant-4 { background: linear-gradient(135deg, #7c3aed 0%, #0ea5e9 100%); }
.news-card-media .gradient-bg.variant-5 { background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%); }
.news-card-media .gradient-bg.variant-6 { background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%); }

.news-card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.news-card:hover .news-card-media img { transform: scale(1.05); }

.news-card-media .tag {
  position: absolute; top: 14px; left: 14px;
  z-index: 2;
  background: white;
  color: var(--ink);
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
}
.news-card-media .tag.gold { background: var(--gold); color: var(--ink); }

.news-card-meta {
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}
.news-card-title {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.2;
  margin-top: 8px;
  color: var(--ink);
  letter-spacing: -0.015em;
  transition: color 0.2s;
}
.news-card:hover .news-card-title { color: var(--brand); }
.news-card-excerpt { margin-top: 10px; font-size: 14px; color: var(--text-muted); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Grid item sizes */
.news-card.featured { grid-column: span 7; grid-row: span 2; }
.news-card.featured .news-card-media { aspect-ratio: 16/10; }
.news-card.featured .news-card-title { font-size: clamp(24px, 2.8vw, 34px); }
.news-card.half { grid-column: span 5; }
.news-card.half .news-card-media { aspect-ratio: 2/1; }
.news-card.half .news-card-title { font-size: clamp(18px, 1.6vw, 22px); }
.news-card.third { grid-column: span 4; }
.news-card.third .news-card-media { aspect-ratio: 16/10; }
.news-card.third .news-card-title { font-size: clamp(17px, 1.4vw, 20px); }
@media (max-width: 900px) {
  .news-card.featured, .news-card.half, .news-card.third { grid-column: span 12; }
}

.news-all-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 800; color: var(--ink); transition: gap 0.2s; }
.news-all-link:hover { gap: 12px; }
.news-all-link svg { width: 16px; height: 16px; }

/* ===================================================================
   KOMİSYONLAR
   =================================================================== */
.commissions-bg { background: white; }
.commissions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .commissions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .commissions-grid { grid-template-columns: 1fr; } }
.comm-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: white;
  cursor: pointer;
  transition: transform 0.4s;
}
.comm-card:hover { transform: translateY(-6px) scale(1.01); }
.comm-card::before {
  content: '';
  position: absolute; inset: 0;
  background: inherit;
}
.comm-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.4) 100%);
}
.comm-card > * { position: relative; z-index: 1; }
.comm-card.c1 { background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%); }
.comm-card.c2 { background: linear-gradient(145deg, #1e40af 0%, #06b6d4 100%); }
.comm-card.c3 { background: linear-gradient(145deg, #047857 0%, #0d9488 100%); }
.comm-card.c4 { background: linear-gradient(145deg, #b45309 0%, #ea580c 100%); }
.comm-card-top { display: flex; align-items: flex-start; justify-content: space-between; }
.comm-card-icon { width: 40px; height: 40px; }
.comm-card-num { font-family: var(--display); font-style: italic; font-size: 18px; opacity: 0.5; }
.comm-card h3 { font-family: var(--display); font-size: clamp(26px, 3vw, 34px); font-weight: 500; line-height: 1.05; letter-spacing: -0.02em; }
.comm-card .sub { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.65; margin-top: 6px; }
.comm-card .arrow {
  margin-top: 20px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}
.comm-card:hover .arrow { opacity: 1; }
.comm-card .arrow svg { width: 12px; height: 12px; }

/* ===================================================================
   DUYURULAR + ETKİNLİKLER
   =================================================================== */
.announcements-bg { background: var(--surface-2); position: relative; overflow: hidden; }
.announcements-bg::before {
  content: '';
  position: absolute;
  left: -300px; bottom: -300px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,158,11,0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }
.list-panel {
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--line);
}
.list-panel h3 { font-family: var(--display); font-size: 28px; font-weight: 500; letter-spacing: -0.015em; color: var(--ink); }
.list-panel .list-panel-sub { font-size: 13px; color: var(--text-muted); margin-top: 6px; }
.list-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
  cursor: pointer;
  transition: transform 0.2s;
}
.list-item:last-child { border-bottom: none; }
.list-item:hover { transform: translateX(4px); }
.list-item-date {
  width: 58px;
  flex-shrink: 0;
  text-align: center;
  padding: 8px 4px;
  background: var(--surface-3);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
}
.list-item-date .day { font-family: var(--display); font-size: 22px; font-weight: 600; color: var(--ink); display: block; line-height: 1; }
.list-item-date .mon { color: var(--brand); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; display: block; }
.list-item-body h4 { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.35; }
.list-item-body p { font-size: 13px; color: var(--text-muted); margin-top: 4px; line-height: 1.5; }

.list-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.list-items { margin-top: 8px; }

/* ===================================================================
   CTA STRIP
   =================================================================== */
.cta-bg {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: white;
  text-align: center;
}
.cta-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 25%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,0.4), transparent 60%);
  border-radius: 50%;
  filter: blur(20px);
}
.cta-bg::after {
  content: '';
  position: absolute;
  bottom: 0; right: 25%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.3), transparent 60%);
  border-radius: 50%;
  filter: blur(20px);
}
.cta-bg .container { position: relative; z-index: 1; }
.cta-eyebrow { color: #67e8f9; font-weight: 800; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; }
.cta-title { font-family: var(--display); font-size: clamp(40px, 7vw, 96px); font-weight: 300; line-height: 0.95; margin-top: 16px; letter-spacing: -0.03em; }
.cta-title em { font-style: italic; font-weight: 500; background: linear-gradient(120deg, #67e8f9 0%, #fbbf24 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-lead { margin-top: 26px; font-size: 17px; color: rgba(255,255,255,0.75); max-width: 600px; margin-inline: auto; }
.cta-btn { margin-top: 44px; }
.cta-btn .btn-primary { background: white; color: var(--ink); padding: 16px 36px; font-size: 14px; }
.cta-btn .btn-primary:hover { color: white; }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: var(--ink); color: #cbd5e1; padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1.3fr 1.3fr 1.8fr; gap: 48px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .logo-text .name { color: white; }
.footer-brand .logo-text .sub { color: #64748b; }
.footer-about { margin-top: 20px; font-size: 14px; color: #94a3b8; line-height: 1.6; max-width: 340px; }
.footer h5 { font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: #64748b; margin-bottom: 18px; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 14px; color: #cbd5e1; transition: color 0.2s; }
.footer ul a:hover { color: white; }
.footer-contact .row { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; margin-bottom: 16px; }
.footer-contact .row > svg { width: 18px; height: 18px; color: #64748b; margin-top: 2px; flex-shrink: 0; }
.footer-contact .row a { color: #cbd5e1; transition: color 0.2s; }
.footer-contact .row a:hover { color: white; }
.footer-bottom {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: #64748b;
}
.footer-bottom a { transition: color 0.2s; }
.footer-bottom a:hover { color: white; }
.footer-legal { display: flex; gap: 20px; }

/* ===================================================================
   Float buttons (WhatsApp)
   =================================================================== */
.float-whatsapp {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 50;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
  animation: floatPulse 2.5s ease-in-out infinite;
}
.float-whatsapp:hover { transform: scale(1.08); }
.float-whatsapp svg { width: 28px; height: 28px; fill: white; }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.6); }
  50% { box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ===================================================================
   NEWS LIST PAGE
   =================================================================== */
.page-head {
  padding-block: clamp(60px, 8vw, 100px) clamp(40px, 5vw, 60px);
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-3) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.page-head .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; gap: 8px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #67e8f9; font-weight: 600; }
.breadcrumb a { opacity: 0.7; }
.breadcrumb a:hover { opacity: 1; }
.page-title { font-family: var(--display); font-size: clamp(40px, 6vw, 72px); font-weight: 500; margin-top: 16px; letter-spacing: -0.025em; }

.news-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding-block: clamp(60px, 8vw, 100px); }
@media (max-width: 900px) { .news-list-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .news-list-grid { grid-template-columns: 1fr; } }

/* ===================================================================
   NEWS DETAIL
   =================================================================== */
.article-hero {
  padding-block: 80px 40px;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-3) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(6,182,212,0.25), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(245,158,11,0.15), transparent 50%);
}
.article-hero .container { position: relative; z-index: 1; max-width: 960px; }
.article-meta { display: flex; gap: 14px; align-items: center; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #67e8f9; font-weight: 700; }
.article-meta .tag { background: rgba(6,182,212,0.15); padding: 5px 10px; border-radius: 6px; }
.article-title { font-family: var(--display); font-size: clamp(32px, 5vw, 56px); font-weight: 500; line-height: 1.1; margin-top: 20px; letter-spacing: -0.025em; }
.article-lead { margin-top: 24px; font-size: 18px; color: rgba(255,255,255,0.85); line-height: 1.5; max-width: 780px; }

.article-body { padding-block: clamp(50px, 6vw, 80px); }
.article-body .container { max-width: 780px; }
.article-image {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #1e40af, #06b6d4);
  margin-bottom: 40px;
  overflow: hidden;
}
.article-image img { width: 100%; height: 100%; object-fit: cover; }
.article-text p { font-size: 17px; line-height: 1.8; color: var(--ink-2); margin-bottom: 20px; }
.article-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--brand);
  margin-bottom: 40px;
}
.article-back svg { width: 16px; height: 16px; }

/* ===================================================================
   Utility
   =================================================================== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (max-width: 640px) { .hide-sm { display: none !important; } }

/* ===================================================================
   TURKEY MAP — Gerçek il sınırlarıyla harita görseli + clickable overlay
   =================================================================== */
.map-panel {
  background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%);
  border-radius: var(--radius-xl);
  padding: clamp(16px, 2vw, 28px);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-panel .map-head {
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
}
.map-panel .map-head .b-eyebrow { color: var(--brand); }
.map-panel .map-head h2 {
  font-family: var(--display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 4px;
}

.map-container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.tr-map-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 970 / 450;
  user-select: none;
}
.tr-map-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  pointer-events: none;
  filter: contrast(1.02);
}
.tr-map-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.tr-zone {
  pointer-events: auto;
  cursor: pointer;
}

/* Hit zone — transparent ama tıklanabilir */
.tr-zone-hit {
  fill: rgba(255, 255, 255, 0);
  stroke: transparent;
  stroke-width: 0;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.tr-zone:hover .tr-zone-hit {
  fill: rgba(245, 158, 11, 0.35);
  stroke: #f59e0b;
  stroke-width: 2;
  filter: drop-shadow(0 2px 8px rgba(245, 158, 11, 0.45));
}

/* Aktif il — sabit nokta + pulse */
.tr-zone-dot {
  fill: #06b6d4;
  stroke: white;
  stroke-width: 2;
  filter: drop-shadow(0 2px 6px rgba(6, 182, 212, 0.6));
  pointer-events: none;
}
.tr-zone-pulse {
  fill: none;
  stroke: #06b6d4;
  stroke-width: 2;
  opacity: 0.8;
  transform-origin: center;
  animation: trPulse 2s ease-out infinite;
  pointer-events: none;
}
.tr-zone.active:hover .tr-zone-dot {
  fill: #f59e0b;
  stroke: #fbbf24;
  filter: drop-shadow(0 3px 10px rgba(245, 158, 11, 0.7));
  transform: scale(1.3);
  transition: all 0.2s;
}
@keyframes trPulse {
  0% { r: 5; opacity: 0.8; }
  100% { r: 20; opacity: 0; }
}

/* Tooltip */
.map-tooltip {
  position: absolute;
  background: white;
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 40px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.04);
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
  min-width: 140px;
}
.map-tooltip.show { opacity: 1; transform: translateY(0); }
.map-tooltip .t-province {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.map-tooltip .t-leader {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
  font-weight: 600;
}
.map-tooltip .t-status {
  display: inline-block;
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 800;
}
.map-tooltip .t-status.active { background: #d1fae5; color: #047857; }
.map-tooltip .t-status.vacant { background: #fef3c7; color: #92400e; }
.map-tooltip::before {
  content: ''; position: absolute; left: 50%; bottom: -6px;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: white;
}

/* Legend */
.map-legend {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--surface-2);
  border-radius: 12px;
  position: relative;
  z-index: 1;
}
.map-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text);
  font-weight: 600;
}
.map-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.map-legend-dot.active { background: #06b6d4; box-shadow: 0 0 8px rgba(6,182,212,0.4); }
.map-legend-dot.inactive {
  background: transparent;
  border: 2px dashed #94a3b8;
}
.map-legend-dot.hover { background: #f59e0b; }

/* Mobilde tooltip yerleşimi */
@media (max-width: 640px) {
  .map-tooltip { font-size: 12px; padding: 10px 12px; min-width: 120px; }
}

/* ===================================================================
   BRANCHES GRID
   =================================================================== */
.branches-page { padding-block: clamp(40px, 5vw, 70px); }
.branches-intro {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  margin-bottom: clamp(40px, 5vw, 60px);
  align-items: start;
}
@media (max-width: 900px) { .branches-intro { grid-template-columns: 1fr; } }

.branches-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.branch-stat {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  text-align: center;
}
.branch-stat .n { font-family: var(--display); font-size: clamp(28px, 3.5vw, 40px); font-weight: 600; color: var(--brand); letter-spacing: -0.02em; line-height: 1; }
.branch-stat .l { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-top: 8px; font-weight: 700; }

.branches-tabs { display: flex; gap: 8px; margin-bottom: 24px; border-bottom: 2px solid var(--line); padding-bottom: 0; }
.branches-tab {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  bottom: -2px;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}
.branches-tab:hover { color: var(--ink); }
.branches-tab.active { color: var(--brand); border-bottom-color: var(--brand); }

.branches-search {
  position: relative;
  margin-bottom: 20px;
  max-width: 400px;
}
.branches-search input {
  width: 100%;
  padding: 12px 14px 12px 42px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font: inherit;
}
.branches-search input:focus { outline: none; border-color: var(--brand); }
.branches-search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--text-muted); }

.branch-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.branch-list-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  transition: all 0.25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.branch-list-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(180deg, rgba(6,182,212,0.08), transparent);
}
.branch-list-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.branch-list-card.intl::before { background: linear-gradient(180deg, rgba(245,158,11,0.1), transparent); }
.branch-list-card .avatar {
  position: relative;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--ink-3), var(--ink));
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  overflow: hidden;
  border: 3px solid white;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.branch-list-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.branch-list-card .avatar.vacant { background: var(--surface-3); color: var(--text-muted); }
.branch-list-card .province {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}
.branch-list-card .province-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 2px;
}
.branch-list-card .flag { font-size: 28px; margin-bottom: 8px; }
.branch-list-card .leader-name {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.branch-list-card .leader-title {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 600;
}
.branch-list-card .status-pill {
  display: inline-block;
  margin-top: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: #d1fae5;
  color: #047857;
}
.branch-list-card .status-pill.planning { background: #fef3c7; color: #92400e; }

/* ===================================================================
   GENERIC PAGE CONTENT
   =================================================================== */
.content-page {
  padding-block: clamp(40px, 5vw, 70px);
}
.content-page .container { max-width: 900px; }
.content-page .prose p { font-size: 17px; line-height: 1.8; color: var(--ink-2); margin-bottom: 18px; }
.content-page .prose p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 54px;
  font-weight: 500;
  float: left;
  line-height: 0.9;
  padding-right: 10px;
  padding-top: 4px;
  color: var(--brand);
}
.content-page .prose h2 {
  font-family: var(--display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--ink);
  margin-top: 40px;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}
.content-page .prose .lead {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink-3);
  margin-bottom: 32px;
  padding-left: 20px;
  border-left: 3px solid var(--brand);
  font-style: italic;
}

.president-page-hero {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
  margin-bottom: clamp(40px, 5vw, 60px);
}
@media (max-width: 900px) { .president-page-hero { grid-template-columns: 1fr; } }
.president-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, #1e293b 0%, #0a0f1e 100%);
  box-shadow: var(--shadow-xl);
}
.president-portrait::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(6,182,212,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(245,158,11,0.2) 0%, transparent 60%);
}
.president-portrait .silhouette {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 52%; height: 70%;
  background: linear-gradient(180deg, #334155 0%, #0f172a 100%);
  border-radius: 50% 50% 0 0 / 35% 35% 0 0;
  clip-path: polygon(50% 0%, 20% 30%, 15% 100%, 85% 100%, 80% 30%);
}
.president-portrait img { width: 100%; height: 100%; object-fit: cover; }
.president-intro .role {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 800;
}
.president-intro h1 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-top: 12px;
  color: var(--ink);
}
.president-intro .titles {
  margin-top: 20px;
  padding: 18px 22px;
  background: var(--surface-2);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 600;
  line-height: 1.6;
}

/* ===================================================================
   KURUMSAL SIDEBAR LAYOUT
   =================================================================== */
.sidebar-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) { .sidebar-layout { grid-template-columns: 1fr; gap: 24px; } }
.side-nav {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 12px;
  position: sticky;
  top: 116px;
}
.side-nav h4 {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 800;
  padding: 10px 14px 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}
.side-nav a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-radius: 8px;
  transition: all 0.15s;
  margin-bottom: 2px;
}
.side-nav a:hover { background: var(--surface-2); color: var(--ink); }
.side-nav a.active { background: var(--ink); color: white; }

/* ===================================================================
   CONTACT PAGE
   =================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(30px, 4vw, 50px);
  margin-bottom: clamp(40px, 5vw, 60px);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info {
  background: linear-gradient(145deg, #0a0f1e 0%, #1e293b 100%);
  color: white;
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3vw, 40px);
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(6,182,212,0.25), transparent 60%);
  border-radius: 50%;
}
.contact-info > * { position: relative; z-index: 1; }
.contact-info h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 8px;
}
.contact-info .c-eyebrow { color: #67e8f9; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 800; }
.contact-list { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.contact-list-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-list-item .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-list-item .icon svg { width: 18px; height: 18px; color: #67e8f9; }
.contact-list-item .label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #94a3b8; font-weight: 700; }
.contact-list-item .value { color: white; font-size: 15px; font-weight: 600; margin-top: 2px; }
.contact-list-item .value a { color: white; }

.contact-form-wrap {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3vw, 40px);
}
.contact-form-wrap h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.contact-form-wrap p { font-size: 14px; color: var(--text-muted); margin-top: 8px; line-height: 1.6; }
.contact-form { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: inherit;
  transition: border-color 0.15s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--brand);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button { grid-column: 1 / -1; margin-top: 10px; }

/* ===================================================================
   COMMISSIONS PAGE
   =================================================================== */
.commissions-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: clamp(30px, 4vw, 50px);
}
@media (max-width: 700px) { .commissions-page-grid { grid-template-columns: 1fr; } }
.comm-page-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  min-height: 260px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.comm-page-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.comm-page-card.c1 { background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%); color: white; }
.comm-page-card.c2 { background: linear-gradient(145deg, #1e40af 0%, #06b6d4 100%); color: white; }
.comm-page-card.c3 { background: linear-gradient(145deg, #047857 0%, #0d9488 100%); color: white; }
.comm-page-card.c4 { background: linear-gradient(145deg, #b45309 0%, #ea580c 100%); color: white; }
.comm-page-card::after {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 60%);
  border-radius: 50%;
}
.comm-page-card > * { position: relative; z-index: 1; }
.comm-page-card .num {
  font-family: var(--display); font-style: italic; opacity: 0.4; font-size: 18px;
}
.comm-page-card h3 {
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 30px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-top: 10px;
}
.comm-page-card .sub { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.7; margin-top: 6px; }
.comm-page-card .desc { margin-top: 16px; font-size: 14px; line-height: 1.6; opacity: 0.85; }

/* ===================================================================
   MEMBERS GRID (yonetim/denetim kurulu)
   =================================================================== */
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.member-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all 0.25s;
}
.member-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.member-card .avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--ink-3), var(--ink));
  color: white;
  font-family: var(--display);
  font-weight: 600;
  font-size: 30px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.member-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.member-card h3 { font-family: var(--display); font-size: 19px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.member-card .title { font-size: 12px; color: var(--brand); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; margin-top: 6px; }

/* Gallery placeholder */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item .gradient-bg { position: absolute; inset: 0; }
.gallery-item .overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.75));
  color: white;
}
.gallery-item .overlay .type { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.8; }
.gallery-item .overlay .title { font-weight: 700; margin-top: 2px; font-size: 14px; }
.gallery-item .play-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
}
.gallery-item .play-icon svg { width: 18px; height: 18px; color: var(--ink); margin-left: 3px; }

/* Events list */
.events-timeline {
  display: flex; flex-direction: column; gap: 16px;
}
.event-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.2s;
  cursor: pointer;
}
@media (max-width: 700px) { .event-item { grid-template-columns: 80px 1fr; } .event-item > .event-action { display: none; } }
.event-item:hover { border-color: var(--accent); transform: translateX(4px); }
.event-item .event-date {
  text-align: center;
  padding: 10px 4px;
  background: linear-gradient(145deg, var(--ink), var(--ink-3));
  color: white;
  border-radius: 10px;
}
.event-item .event-date .day { font-family: var(--display); font-size: 26px; font-weight: 600; display: block; line-height: 1; }
.event-item .event-date .mon { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #67e8f9; margin-top: 4px; display: block; font-weight: 700; }
.event-item .event-body h4 { font-size: 17px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.event-item .event-body p { font-size: 13px; color: var(--text-muted); margin-top: 4px; line-height: 1.5; }
.event-item .event-body .meta { margin-top: 8px; display: flex; gap: 12px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }
.event-item .event-action svg { width: 20px; height: 20px; color: var(--text-muted); }

/* ===================================================================
   BRANCH DETAIL PAGE
   =================================================================== */
.branch-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .branch-detail-grid { grid-template-columns: 1fr; } }

.branch-leader-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  padding: 32px;
  background: linear-gradient(145deg, #fafbfc 0%, #ffffff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
@media (max-width: 700px) { .branch-leader-card { grid-template-columns: 1fr; text-align: center; } }
.branch-leader-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(6,182,212,0.08), transparent 60%);
  border-radius: 50%;
}

.branch-leader-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, #1e293b, #0a0f1e);
  box-shadow: var(--shadow-lg);
}
.branch-leader-photo img { width: 100%; height: 100%; object-fit: cover; }
.branch-leader-photo .silhouette {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 52%; height: 70%;
  background: linear-gradient(180deg, #334155 0%, #0f172a 100%);
  border-radius: 50% 50% 0 0 / 35% 35% 0 0;
  clip-path: polygon(50% 0%, 20% 30%, 15% 100%, 85% 100%, 80% 30%);
}
.branch-leader-photo .intl-flag-big {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  background: linear-gradient(145deg, rgba(6,182,212,0.08), rgba(245,158,11,0.08));
}
.branch-leader-photo .leader-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(245,158,11,0.4);
}
.branch-leader-badge svg,
.leader-badge svg { width: 20px; height: 20px; color: white; }

.branch-leader-info { position: relative; z-index: 1; }
.b-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 800;
}
.branch-leader-info h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-top: 8px;
  color: var(--ink);
}
.b-title {
  margin-top: 8px;
  color: var(--brand);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.branch-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
  padding: 16px;
  background: var(--surface-2);
  border-radius: var(--radius-md);
}
.b-stat { text-align: center; }
.b-stat-n {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}
.b-stat-l {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  margin-top: 4px;
}

.branch-contact-row {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 700px) { .branch-contact-row { justify-content: center; } }
.b-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.15s;
}
.b-chip:hover { border-color: var(--brand); color: var(--brand); }
.b-chip svg { width: 14px; height: 14px; }

.branch-about-card,
.branch-address-card {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.branch-about-card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 12px;
  color: var(--ink);
}
.branch-about-card p {
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
}
.b-addr {
  margin-top: 10px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
  font-weight: 500;
}

.branch-news-section {
  margin-top: 50px;
}
.section-head-inline {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===================================================================
   BRANCH DETAIL PAGE - EK MODÜLLER
   =================================================================== */
.branch-info-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 18px;
  margin-top: 24px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .branch-info-grid { grid-template-columns: 1fr; } }

.branch-quick-contact {
  padding: 24px;
  background: linear-gradient(145deg, #0a0f1e 0%, #1e293b 100%);
  border-radius: 16px;
  color: white;
  position: relative;
  overflow: hidden;
}
.branch-quick-contact::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(6,182,212,0.18), transparent 60%);
  border-radius: 50%;
}
.branch-quick-contact > * { position: relative; z-index: 1; }
.branch-quick-contact .b-eyebrow { color: #67e8f9; }

.qc-list { margin-top: 18px; display: flex; flex-direction: column; gap: 14px; }
.qc-item { display: flex; gap: 12px; align-items: flex-start; }
.qc-item svg { width: 18px; height: 18px; color: #67e8f9; flex-shrink: 0; margin-top: 3px; }
.qc-l { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #94a3b8; font-weight: 700; margin-bottom: 3px; }
.qc-v { color: white; font-size: 14px; line-height: 1.4; font-weight: 500; }
.qc-v:hover { color: #67e8f9; }

.branch-module { margin: 40px 0; }
.module-h {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 6px;
  color: var(--ink);
}
.module-h2 {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-top: 6px;
  margin-bottom: 16px;
  color: var(--ink);
}

.branch-map-embed {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.branch-module-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 800px) { .branch-module-split { grid-template-columns: 1fr; } }

.module-box {
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.mini-list { display: flex; flex-direction: column; gap: 10px; }

.branch-cta {
  margin-top: 50px;
  padding: 48px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0b3d91 0%, #06b6d4 50%, #f59e0b 100%);
  background-size: 200% 200%;
  color: white;
  position: relative;
  overflow: hidden;
}
.branch-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 30%, rgba(255,255,255,0.15), transparent 50%);
  pointer-events: none;
}
.branch-cta-content { position: relative; z-index: 1; max-width: 640px; }
.branch-cta h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-top: 10px;
}
.branch-cta p {
  margin-top: 14px;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  line-height: 1.6;
}
.branch-cta .btn-primary {
  background: white !important;
  color: var(--ink) !important;
}
.branch-cta .btn-ghost {
  background: rgba(255,255,255,0.15) !important;
  color: white !important;
  border-color: rgba(255,255,255,0.3) !important;
}
.branch-cta .btn-ghost:hover {
  background: rgba(255,255,255,0.25) !important;
}

/* Leader card responsive tek düzen */
.branch-leader-card { margin-bottom: 24px; }

/* ===================================================================
   IMPACT HERO — TÜM ALT SAYFALARDA TRANSFORMASYON
   =================================================================== */

/* Page-head'i büyütüp hareketli gradient ile güçlendir */
.page-head {
  padding-block: clamp(80px, 10vw, 140px) clamp(50px, 6vw, 80px);
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(6,182,212,0.18) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 100% 100%, rgba(245,158,11,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 70%, rgba(11,61,145,0.3) 0%, transparent 50%),
    linear-gradient(180deg, #0a0f1e 0%, #0f172a 60%, #1e293b 100%);
  position: relative;
}

/* Hareketli noise overlay (çok hafif) */
.page-head::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 3px);
  pointer-events: none;
  z-index: 0;
}

/* Yüzen altın süsleme */
.page-head .container::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(245,158,11,0.08), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatSlow 8s ease-in-out infinite;
}
@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 10px); }
}

/* Başlığa italic vurgu kolaylığı - page-title içindeki em */
.page-title em {
  background: linear-gradient(135deg, #67e8f9 0%, #fbbf24 60%, #fb923c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 500;
  display: inline-block;
}

.page-head .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  color: rgba(255,255,255,0.9);
}
.page-head .breadcrumb a { color: #67e8f9; opacity: 0.9; }
.page-head .breadcrumb a:hover { color: #fbbf24; opacity: 1; }
.page-head .breadcrumb span { color: rgba(255,255,255,0.6); }

/* ===================================================================
   SCROLL-IN ANIMASYONLAR
   =================================================================== */
@keyframes riseFade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes subtleZoom {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.page-title, .page-head p {
  animation: riseFade 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.page-head .breadcrumb {
  animation: riseFade 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Content sections için in-view observer */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================================
   NAV AKTIF SAYFA İŞARETİ
   =================================================================== */
.nav > li > a.active-page {
  color: var(--brand);
  position: relative;
}
.nav > li > a.active-page::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(245,158,11,0.6);
}

/* ===================================================================
   HABER KARTLARI — KATEGORI BAZLI GRADIENT RENK PALETLERI
   =================================================================== */
.news-card-media {
  position: relative;
}
.news-card:nth-child(3n+1) .news-card-media > div:first-child {
  background: linear-gradient(135deg, #0b3d91 0%, #1e40af 40%, #06b6d4 100%) !important;
}
.news-card:nth-child(3n+2) .news-card-media > div:first-child {
  background: linear-gradient(135deg, #7c2d12 0%, #c2410c 40%, #f59e0b 100%) !important;
}
.news-card:nth-child(3n+3) .news-card-media > div:first-child {
  background: linear-gradient(135deg, #134e4a 0%, #047857 40%, #10b981 100%) !important;
}

/* Haber kartı üzerine gelince şimşek efekti */
.news-card {
  position: relative;
  overflow: hidden;
}
.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transition: left 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  z-index: 2;
}
.news-card:hover::before {
  left: 120%;
}

/* ===================================================================
   ŞUBE KARTLARI — ZARİF HOVER ETKİSİ
   =================================================================== */
.branch-list-card {
  position: relative;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.branch-list-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, #06b6d4, #f59e0b);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.branch-list-card:hover::after { opacity: 1; }
.branch-list-card:hover { transform: translateY(-6px); }

.branch-list-card .avatar {
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.branch-list-card:hover .avatar {
  transform: scale(1.08) rotate(-3deg);
}

/* ===================================================================
   BAŞKAN KARTI — PREMIUM DOKUNUŞLAR
   =================================================================== */
.branch-leader-card {
  position: relative;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(6,182,212,0.06), transparent 40%),
    linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

.branch-leader-photo {
  position: relative;
}
.branch-leader-photo::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(6,182,212,0.4), rgba(245,158,11,0.3), rgba(11,61,145,0.4));
  z-index: -1;
  filter: blur(12px);
  opacity: 0;
  transition: opacity 0.4s;
}
.branch-leader-card:hover .branch-leader-photo::after {
  opacity: 1;
}

/* Silüet daha zarif */
.branch-leader-photo .silhouette {
  background: linear-gradient(180deg, #475569 0%, #1e293b 100%);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* ===================================================================
   İÇERİK SAYFALARINA DEKORATIF UNSURLAR
   =================================================================== */
.content-page {
  position: relative;
}
.content-page::before {
  content: '';
  position: absolute;
  top: 80px;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,0.04), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.content-page::after {
  content: '';
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245,158,11,0.03), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.content-page .container { position: relative; z-index: 1; }

/* Prose İnce Geliştirmeler */
.content-page .prose p::first-letter {
  font-family: var(--display);
  font-size: 64px;
  font-weight: 500;
  float: left;
  line-height: 0.9;
  padding: 6px 12px 0 0;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.content-page .prose p:not(:first-of-type)::first-letter {
  font-family: inherit; font-size: inherit; float: none;
  padding: 0; background: none; -webkit-text-fill-color: inherit;
}

/* ===================================================================
   KOMISYON KARTLARI — 3D EĞİLİM HOVER
   =================================================================== */
.comm-page-card {
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
}
.comm-page-card:hover {
  transform: translateY(-6px) rotateX(2deg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.comm-page-card h3 {
  transition: transform 0.3s;
}
.comm-page-card:hover h3 {
  transform: translateX(4px);
}

/* ===================================================================
   ŞUBE SAYFASI — DAHA DRAMATIK
   =================================================================== */
.branch-leader-info h2 {
  background: linear-gradient(135deg, #0a0f1e 0%, #0b3d91 60%, #06b6d4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Stats'e "sayılar büyüsün" animasyon */
.b-stat-n {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* CTA'da arka plan yavaşça kaysın */
.branch-cta {
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ===================================================================
   ANA SAYFA EKLEMELERİ
   =================================================================== */

/* Hero'da başlıklarda gold vurgu */
.hero-title em {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 60%, #ef4444 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 500;
}

/* Section başlıkları */
section h2 em, h2 em {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 500;
}

/* Footer premium görünüm */
.footer {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(6,182,212,0.1), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(245,158,11,0.08), transparent 50%),
    linear-gradient(180deg, #0a0f1e 0%, #020617 100%);
}

/* ===================================================================
   BUTONLAR — MIKRO İNCE TIKLAMA GERİBİLDİRİMİ
   =================================================================== */
.btn-primary, .btn-ghost, .btn-grad {
  position: relative;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn-primary::after, .btn-grad::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
  pointer-events: none;
}
.btn-primary:active::after, .btn-grad:active::after {
  width: 300px; height: 300px;
  transition: 0s;
}

/* ===================================================================
   HARITA — SELINGORIA DOKUNUŞU
   =================================================================== */
.map-province circle {
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.map-province:hover circle {
  transform-origin: center;
  animation: mapPulse 1.5s ease-in-out infinite;
}
@keyframes mapPulse {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(245,158,11,0.7)); }
  50% { filter: drop-shadow(0 0 20px rgba(245,158,11,1)); }
}

/* ===================================================================
   MOBIL UYARLAMALAR
   =================================================================== */
@media (max-width: 600px) {
  .page-title { font-size: clamp(32px, 9vw, 48px); }
  .page-head .container::after { display: none; }
  .branch-cta { padding: 32px 24px; }
  .content-page::before, .content-page::after { display: none; }
}

/* ===================================================================
   SEÇIM RENGI
   =================================================================== */
::selection {
  background: #fbbf24;
  color: #0a0f1e;
}

/* ===================================================================
   FOCUS RING (ERIŞILEBILIRLIK)
   =================================================================== */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(6,182,212,0.6);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ===================================================================
   BAŞARI MESAJI KARTLARI
   =================================================================== */
.success-banner {
  padding: 16px 20px;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  border-left: 4px solid #047857;
  border-radius: 12px;
  color: #064e3b;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  margin: 20px 0;
}

/* ===================================================================
   HABER DETAY — DRAMATİK HERO
   =================================================================== */
.article-hero {
  padding-block: clamp(80px, 10vw, 140px) clamp(50px, 6vw, 80px) !important;
  background:
    radial-gradient(ellipse 100% 70% at 50% 0%, rgba(6,182,212,0.15) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 100% 100%, rgba(245,158,11,0.12) 0%, transparent 60%),
    linear-gradient(180deg, #0a0f1e 0%, #0f172a 60%, #1e293b 100%);
  position: relative;
}
.article-hero .article-title {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-top: 20px;
  color: white;
  max-width: 900px;
}
.article-hero .article-lead {
  margin-top: 20px;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  font-weight: 400;
}
.article-hero .breadcrumb,
.article-hero .article-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  color: rgba(255,255,255,0.9);
  flex-wrap: wrap;
  width: auto;
}
.article-hero .article-meta .tag {
  background: rgba(245,158,11,0.2);
  color: #fbbf24;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
}

/* Article image with overlay frame */
.article-image {
  position: relative;
  margin-top: -60px;
  z-index: 3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.25),
    0 0 0 1px rgba(0,0,0,0.05);
  aspect-ratio: 16/9;
}
.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-image > div:first-child {
  width: 100%; height: 100%;
}

/* Article text elegance */
.article-body { padding-top: 40px; }
.article-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #334155;
  max-width: 740px;
  margin: 0 auto 24px;
}
.article-text p:first-of-type {
  font-size: 21px;
  color: #0a0f1e;
  font-weight: 500;
}

/* Back link with icon */
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #f1f5f9;
  border-radius: 999px;
  color: #475569;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 30px;
  transition: all 0.2s;
}
.article-back:hover { background: #0b3d91; color: white; }
.article-back svg { width: 16px; height: 16px; }

/* ===================================================================
   KURUMSAL SIDEBAR — MODERN BADGE
   =================================================================== */
.side-nav {
  background: white;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 16px;
}
.side-nav h4 {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 800;
  padding: 8px 14px 16px;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--line);
}
.side-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-radius: 10px;
  transition: all 0.15s;
  margin-bottom: 4px;
  position: relative;
}
.side-nav a::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--line);
  transition: background 0.15s;
}
.side-nav a:hover::before { background: var(--accent); }
.side-nav a.active::before { background: var(--gold); box-shadow: 0 0 6px rgba(245,158,11,0.6); }
.side-nav a.active {
  background: linear-gradient(135deg, rgba(11,61,145,0.08), rgba(6,182,212,0.04));
  color: var(--ink);
}

/* ===================================================================
   HERO DEKORATIF ÇIZGI — alt kısımda altın şerit
   =================================================================== */
.page-head::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(11,61,145,0.4) 15%,
    rgba(6,182,212,0.8) 40%,
    rgba(245,158,11,0.8) 60%,
    rgba(11,61,145,0.4) 85%,
    transparent 100%
  );
  z-index: 2;
  /* Önceki gradient mesh'i korumak için background birleştir */
}

/* ===================================================================
   NEWS LISTESİ — 3×7 SABIT GRID + PAGINATION
   =================================================================== */

/* Haberler listesinde tüm kartlar aynı 16:9 orantı */
.news-list-grid .news-card-media {
  aspect-ratio: 16 / 9 !important;
}

/* Kartların içeriği sabit boyutta — title 2 satır */
.news-list-grid .news-card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
  min-height: 2.6em;
}
.news-list-grid .news-card-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
  min-height: 3em;
}

/* Pagination */
.news-pagination {
  margin-top: clamp(30px, 4vw, 50px);
  padding-bottom: clamp(40px, 5vw, 70px);
  text-align: center;
}
.pg-wrap {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.pg-numbers {
  display: inline-flex;
  gap: 2px;
  padding: 0 8px;
}
.pg-item {
  min-width: 38px;
  height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  transition: all 0.2s;
  text-decoration: none;
  cursor: pointer;
}
.pg-item:hover:not(.active):not(.disabled) {
  background: var(--surface-2);
  color: var(--brand);
}
.pg-item.active {
  background: var(--ink);
  color: white;
  box-shadow: 0 4px 12px rgba(10, 15, 30, 0.2);
}
.pg-item.pg-arrow {
  color: var(--text-muted);
  font-size: 12.5px;
}
.pg-item.pg-arrow:hover {
  color: var(--ink);
  background: var(--surface-2);
}
.pg-item.disabled {
  color: #cbd5e1;
  cursor: default;
}
.pg-info {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Ana sayfa ve şube sayfasındaki haber grid'i için de sabit oran */
.news-grid .news-card-media,
#branchNewsGrid .news-card-media {
  aspect-ratio: 16 / 9 !important;
}
#branchNewsGrid .news-card-title,
.news-grid .news-card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}

/* Ana sayfa 12-kolonlu grid'de de düzenli hücreler */
.news-grid .news-card {
  grid-column: span 4;
}
@media (max-width: 900px) {
  .news-grid .news-card { grid-column: span 6; }
}
@media (max-width: 560px) {
  .news-grid .news-card { grid-column: span 12; }
}

/* ===================================================================
   ANASAYFA HABER HERO — demo61 tarzı slider + 6'lı grid
   =================================================================== */
.news-hero-layout {
  margin-top: 24px;
}

.nh-wrap {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 960px) { .nh-wrap { grid-template-columns: 1fr; } }

/* SOLDA BÜYÜK SLIDER */
.nh-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0a0f1e;
  aspect-ratio: 16/10;
  min-height: 420px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
@media (max-width: 700px) { .nh-main { min-height: 320px; } }

.nh-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.nh-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  color: white;
  text-decoration: none;
  z-index: 1;
}
.nh-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.nh-slide-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.nh-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease-out;
}
.nh-slide.active .nh-slide-media img {
  transform: scale(1.08);
}
.nh-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.85) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.3), transparent 40%);
  pointer-events: none;
}
.nh-slide-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 36px;
  z-index: 2;
}
@media (max-width: 600px) { .nh-slide-body { padding: 24px 20px; } }

.nh-slide-date {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  margin-bottom: 12px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
}
.nh-slide-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: white;
  margin-bottom: 12px;
  max-width: 92%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nh-slide-excerpt {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  max-width: 80%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 600px) {
  .nh-slide-excerpt { display: none; }
}

/* Navigasyon okları */
.nh-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.nh-nav:hover {
  background: white;
  color: var(--ink);
  transform: translateY(-50%) scale(1.05);
}
.nh-nav svg { width: 20px; height: 20px; }
.nh-prev { left: 16px; }
.nh-next { right: 16px; }

/* SAĞDA 6'LI MINI GRID */
.nh-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 12px;
}
@media (max-width: 700px) {
  .nh-side { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 1fr); }
}
@media (max-width: 450px) {
  .nh-side { grid-template-columns: 1fr; grid-template-rows: auto; }
}

.nh-mini {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  color: white;
  text-decoration: none;
  background: #0a0f1e;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nh-mini:hover { transform: translateY(-3px); }
.nh-mini-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.nh-mini-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.nh-mini:hover .nh-mini-media img { transform: scale(1.08); }

.nh-mini-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.nh-mini-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px;
  z-index: 2;
}
.nh-mini-title {
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.3;
  color: white;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nh-mini-date {
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* FOOTER: Sayfa pill'leri + Tüm Haberler butonu */
.nh-footer {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  background: #0a0f1e;
  padding: 12px 16px;
  border-radius: 14px;
  color: white;
}
.nh-pagepills {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.nh-pagepill {
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.15s;
  background: rgba(255,255,255,0.05);
}
.nh-pagepill:hover {
  background: rgba(255,255,255,0.15);
  color: white;
}
.nh-pagepill.active {
  background: var(--gold);
  color: var(--ink);
}
.nh-allbtn {
  padding: 10px 20px;
  background: var(--brand);
  color: white;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.nh-allbtn:hover { background: var(--ink); transform: translateX(2px); }

/* ===================================================================
   LOGO MARK - ADMIN'DEN YÜKLENEN LOGO
   =================================================================== */
.logo-mark.has-image {
  padding: 0 !important;
  background: white !important;
  overflow: hidden;
}
.logo-mark.has-image img {
  padding: 3px !important;
}

/* ===================================================================
   VISIBILITY CHECKBOX (Süper admin haber edit formu)
   =================================================================== */
.visibility-controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  background: linear-gradient(145deg, #f0f9ff 0%, #ecfeff 100%);
  border: 1px solid #a5f3fc;
  border-radius: 10px;
}
.visibility-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 12px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
  margin: 0;
}
.visibility-check:hover {
  border-color: #0b3d91;
  box-shadow: 0 2px 8px rgba(11,61,145,0.08);
}
.visibility-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.visibility-check .box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid #cbd5e1;
  flex-shrink: 0;
  position: relative;
  transition: all 0.15s;
  background: white;
}
.visibility-check input:checked ~ .box {
  background: #0b3d91;
  border-color: #0b3d91;
}
.visibility-check input:checked ~ .box::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.visibility-check .txt {
  flex: 1;
  display: block;
}
.visibility-check .txt b {
  font-size: 13.5px;
  color: #0a0f1e;
  font-weight: 700;
  display: block;
}
.visibility-check .txt em {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
  font-style: normal;
  display: block;
  margin-top: 2px;
}
