/* ===================================================================
   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.12; letter-spacing: -0.025em; margin-top: 14px; color: var(--ink); padding-bottom: 6px; }
.section-title em { font-style: italic; font-weight: 600; padding-right: 0.08em; display: inline-block; }
.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; padding-block: clamp(50px, 7vw, 90px); }
.president-grid { display: grid; grid-template-columns: 3.2fr 7fr; gap: clamp(40px, 5vw, 70px); align-items: center; max-width: 1100px; margin: 0 auto; }
@media (max-width: 900px) { .president-grid { grid-template-columns: 1fr; max-width: 520px; } }
.president-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  max-width: 360px;
}
.president-image::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(6,182,212,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(245,158,11,0.08) 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: 16px; left: 16px;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #67e8f9;
  font-weight: 800;
}
.president-image .sign {
  position: absolute;
  bottom: -14px; right: -10px;
  background: var(--grad-gold);
  padding: 8px 16px;
  border-radius: 10px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  z-index: 3;
}
.president-quote {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.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: 2377 / 1055;
  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: 36px;
  align-items: stretch;
}
@media (max-width: 1100px) { .nh-wrap { gap: 28px; } }
@media (max-width: 960px) { .nh-wrap { grid-template-columns: 1fr; gap: 20px; } }

/* 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 {
  width: auto !important;
  min-width: 140px;
  height: 46px !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: hidden;
}
.logo-mark.has-image img {
  width: auto !important;
  height: 100% !important;
  max-height: 46px;
  object-fit: contain !important;
  display: block;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
}

/* Küçük ekranda logo daha kompakt */
@media (max-width: 600px) {
  .logo-mark.has-image {
    min-width: 0 !important;
    height: 40px !important;
    max-width: 150px;
  }
}

/* ===================================================================
   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;
}

/* ===================================================================
   ANA SAYFA MODERN HABER HERO — sol büyük + sağ thumbnail list
   =================================================================== */
.nws-hero {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 20px;
  margin-top: 24px;
  align-items: stretch;
}
@media (max-width: 960px) { .nws-hero { grid-template-columns: 1fr; } }

/* SOL BÜYÜK KART */
.nws-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0a0f1e;
  aspect-ratio: 16/11;
  min-height: 460px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
@media (max-width: 700px) { .nws-main { min-height: 360px; aspect-ratio: 4/3; } }

.nws-main-card {
  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;
}
.nws-main-card.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.nws-main-media {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.nws-main-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 10s ease-out;
}
.nws-main-card.active .nws-main-media img {
  transform: scale(1.08);
}

.nws-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.5) 65%, rgba(0,0,0,0.9) 100%);
  pointer-events: none;
}

.nws-main-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px;
  z-index: 2;
}
@media (max-width: 600px) { .nws-main-body { padding: 24px; } }

.nws-main-tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 14px;
}

.nws-main-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: white;
  margin-bottom: 12px;
  max-width: 95%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nws-main-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  max-width: 85%;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 600px) { .nws-main-excerpt { display: none; } }

.nws-main-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}
.nws-readmore {
  color: #fbbf24;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.2s;
}
.nws-main-card:hover .nws-readmore { transform: translateX(4px); }

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

/* Dots */
.nws-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.nws-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.2s;
}
.nws-dot.active {
  background: #fbbf24;
  width: 24px;
  border-radius: 4px;
}

/* SAĞ THUMB LIST */
.nws-side {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  max-height: 100%;
}
.nws-side-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--ink);
  color: white;
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 800;
}
.nws-side-head .nws-all {
  font-size: 12px;
  color: #fbbf24;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.nws-side-head .nws-all:hover { color: white; transform: translateX(2px); }

.nws-thumbs {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
}
.nws-thumb {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 10px;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  width: 100%;
  transition: all 0.2s;
  margin-bottom: 4px;
}
.nws-thumb:hover {
  background: var(--surface-2);
}
.nws-thumb.active {
  background: linear-gradient(135deg, rgba(11,61,145,0.08), rgba(6,182,212,0.04));
  border-color: var(--brand);
}

.nws-thumb-media {
  position: relative;
  width: 90px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink);
}
.nws-thumb-media img,
.nws-thumb-media > div {
  width: 100%; height: 100%;
  object-fit: cover;
}

.nws-thumb-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.nws-thumb-meta {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.nws-thumb-title {
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.nws-thumb.active .nws-thumb-title { color: var(--brand); }

/* Scrollbar styling */
.nws-thumbs::-webkit-scrollbar { width: 6px; }
.nws-thumbs::-webkit-scrollbar-track { background: transparent; }
.nws-thumbs::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
.nws-thumbs::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* ===================================================================
   HABERLER SAYFASI — KESIN 3 SÜTUN
   =================================================================== */
.news-list-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 28px !important;
  padding-block: clamp(60px, 8vw, 100px);
}
@media (max-width: 900px) {
  .news-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 560px) {
  .news-list-grid {
    grid-template-columns: 1fr !important;
  }
}

.news-list-grid .news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
  color: inherit;
}
.news-list-grid .news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: var(--brand);
}
.news-list-grid .news-card-media {
  aspect-ratio: 16/9 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  position: relative;
}
.news-list-grid .news-card-title {
  font-size: 17px;
  font-weight: 700;
  padding: 14px 18px 6px;
  margin: 0;
  line-height: 1.3;
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-list-grid .news-card-excerpt {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
  padding: 0 18px 10px;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-list-grid .news-card-meta {
  padding: 10px 18px 16px;
  border-top: 1px solid #f1f5f9;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: auto;
}

/* ===================================================================
   İÇ SAYFA MODERNLEŞME — kart hover, section geçişleri, typography
   =================================================================== */

/* Tüm link butonları daha zarif */
.btn-primary, .btn-ghost {
  position: relative;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(11,61,145,0.25);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

/* Sayfa başlıkları — gradient underline */
.content-page h2,
.content-page h3 {
  position: relative;
}

/* Branch detail sayfası yine daha göze çarpsın */
.branch-leader-card {
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.branch-leader-card:hover {
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.branch-module .module-h {
  position: relative;
  display: inline-block;
}
.branch-module .module-h::after {
  content: '';
  position: absolute;
  left: 0; bottom: -8px;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: 2px;
}

/* Form inputlarda modern look */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="password"],
textarea,
select {
  transition: all 0.2s;
  border-radius: 10px !important;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
  border-color: var(--brand) !important;
  box-shadow: 0 0 0 3px rgba(11,61,145,0.12) !important;
  outline: none !important;
}

/* Haritada ise tıklama alanları gözükecek şekilde daha büyük daire */
.tr-zone-hit {
  r: 45;
}
.tr-zone:hover .tr-zone-hit {
  fill: rgba(245, 158, 11, 0.35);
  stroke: #f59e0b;
  stroke-width: 3;
}

/* Tooltip tanzanı  */
.map-tooltip {
  min-width: 160px;
}

/* Section padding yumuşat */
.content-page {
  padding-block: clamp(50px, 6vw, 90px);
}

/* ===================================================================
   HABERLER SAYFASI — DEMO61 TARZI HABER SİTESİ FORMATI
   =================================================================== */

/* Öne çıkan büyük kart — sayfanın üstünde */
.news-featured-hero {
  padding: 40px 0 20px;
  background: linear-gradient(180deg, #f8fafc 0%, transparent 100%);
}
.nfh-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid var(--line);
}
.nfh-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}
@media (max-width: 800px) {
  .nfh-card { grid-template-columns: 1fr; }
}
.nfh-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.nfh-media img, .nfh-media > div {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.nfh-card:hover .nfh-media img { transform: scale(1.05); }
.nfh-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 50%, rgba(0,0,0,0.1));
  pointer-events: none;
}

.nfh-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 800px) { .nfh-body { padding: 28px; } }

.nfh-tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  border-radius: 999px;
  margin-bottom: 18px;
  align-self: flex-start;
}
.nfh-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nfh-excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nfh-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.nfh-branch {
  padding: 4px 10px;
  background: var(--surface-2);
  color: var(--brand);
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Kategori filtre barı */
.news-filter-bar {
  background: white;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.95);
}
.nfilter-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.nfilter-tabs::-webkit-scrollbar { height: 4px; }
.nfilter-tabs::-webkit-scrollbar-thumb { background: var(--line); border-radius: 2px; }

.nftab {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
  border: 1px solid var(--line);
  background: white;
}
.nftab:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.nftab.active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

/* Haberler sayfasında news-bg padding güncelleme */
.news-bg {
  padding-block: 40px 80px;
}

/* ===================================================================
   HABERLER SAYFASI ÜST SLIDER (10 haber)
   =================================================================== */
.hhero-section {
  padding: 30px 0;
  background: linear-gradient(180deg, #f8fafc 0%, transparent 100%);
}
.hhero-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0a0f1e;
  aspect-ratio: 21/9;
  min-height: 380px;
  max-height: 540px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
@media (max-width: 700px) {
  .hhero-wrap { aspect-ratio: 4/3; min-height: 360px; }
}

.hhero-slider {
  position: absolute;
  inset: 0;
}

.hhero-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;
}
.hhero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hhero-media {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.hhero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 10s ease-out;
}
.hhero-slide.active .hhero-media img { transform: scale(1.08); }

.hhero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.55) 65%, rgba(0,0,0,0.92) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.3), transparent 50%);
  pointer-events: none;
}

.hhero-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 50px 60px;
  z-index: 2;
  max-width: 900px;
}
@media (max-width: 700px) { .hhero-body { padding: 28px 24px 60px; } }

.hhero-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
}
.hhero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hhero-excerpt {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin-bottom: 12px;
  max-width: 85%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 600px) { .hhero-excerpt { display: none; } }
.hhero-date {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

/* Nav ok butonları */
.hhero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  cursor: pointer;
  z-index: 5;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.hhero-nav:hover {
  background: white;
  color: var(--ink);
  transform: translateY(-50%) scale(1.08);
}
.hhero-nav svg { width: 22px; height: 22px; }
.hhero-prev { left: 20px; }
.hhero-next { right: 20px; }

/* 1-10 dotlar */
.hhero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 60px;
}
.hhero-dot {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hhero-dot:hover {
  background: rgba(255,255,255,0.2);
  color: white;
}
.hhero-dot.active {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: scale(1.1);
}

/* ===================================================================
   ŞEHİR HABERLERİ — il butonları (grid)
   =================================================================== */
.city-news-section {
  padding: 50px 0 30px;
}
.city-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.city-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}
.city-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11,61,145,0.1);
}
.city-card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.city-card-body {
  flex: 1;
  min-width: 0;
}
.city-card-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.city-card-meta {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.city-card-arrow {
  width: 16px; height: 16px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.city-card:hover .city-card-arrow {
  color: var(--brand);
  transform: translateX(3px);
}

/* ===================================================================
   ANA SAYFA HABER MODÜLÜ — DÜZGÜN ORANLAR (düzeltme)
   =================================================================== */
/* Eski nws-hero stilini override et - sol büyük + sağ thumb yine var
   ama boyutlar modern */
.nws-hero {
  grid-template-columns: 1.6fr 1fr !important;
  gap: 20px !important;
}
@media (max-width: 960px) {
  .nws-hero { grid-template-columns: 1fr !important; }
}

.nws-main {
  aspect-ratio: 16/10 !important;
  min-height: 420px !important;
}
@media (max-width: 700px) {
  .nws-main { min-height: 340px !important; aspect-ratio: 4/3 !important; }
}

.nws-main-body {
  padding: 36px 40px !important;
}
@media (max-width: 600px) {
  .nws-main-body { padding: 24px !important; }
}

.nws-main-title {
  font-size: clamp(22px, 2.6vw, 32px) !important;
  -webkit-line-clamp: 2 !important;
}

.nws-main-excerpt {
  font-size: 14.5px !important;
  -webkit-line-clamp: 2 !important;
  max-width: 85% !important;
}

/* Sağ thumb listeyi ana kart boyutuyla eşleştir */
.nws-side {
  max-height: none;
}
.nws-thumbs {
  max-height: 420px;
}
@media (min-width: 961px) {
  .nws-thumbs {
    max-height: none;
  }
}

/* Thumbnail listesi daha sıkı */
.nws-thumb {
  padding: 8px !important;
  grid-template-columns: 100px 1fr !important;
  gap: 10px !important;
}
.nws-thumb-media {
  width: 100px !important;
  height: 70px !important;
}
.nws-thumb-title {
  font-size: 13px !important;
  -webkit-line-clamp: 2 !important;
}


/* ===================================================================
   ADMIN: BİRİM EDITOR — üye listesi, küçük butonlar
   =================================================================== */
.members-editor-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.member-row {
  padding: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}
.member-row input {
  min-width: 0;
}
.btn-icon-small {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: white;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  color: #64748b;
}
.btn-icon-small:hover:not(:disabled) {
  background: #f1f5f9;
  color: #0a0f1e;
  border-color: #cbd5e1;
}
.btn-icon-small:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.btn-icon-small.del {
  border-color: #fecaca;
  color: #dc2626;
}
.btn-icon-small.del:hover {
  background: #fef2f2;
  border-color: #fca5a5;
}
.btn-icon-small svg {
  width: 14px;
  height: 14px;
}

/* ===================================================================
   BİRİM SAYFASI — modern hero + başkan + üyeler
   =================================================================== */
.comm-hero-card {
  position: relative;
  padding: 50px 40px;
  border-radius: 24px;
  color: white;
  margin-bottom: 40px;
  overflow: hidden;
  min-height: 220px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.chc-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
}
.chc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.2), transparent 60%);
  z-index: 1;
}
.chc-body {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 28px;
  align-items: center;
}
@media (max-width: 600px) {
  .chc-body { flex-direction: column; align-items: flex-start; gap: 16px; }
  .comm-hero-card { padding: 32px 24px; }
}
.chc-icon {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  flex-shrink: 0;
}
.chc-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 800;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}
.chc-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.chc-description {
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  max-width: 640px;
}

/* Başkan kartı */
.comm-chairman-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  padding: 36px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
@media (max-width: 600px) {
  .comm-chairman-card { grid-template-columns: 1fr; text-align: center; }
  .comm-chairman-card .cc-avatar { margin: 0 auto; }
}
.cc-avatar {
  width: 140px; height: 140px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 500;
  overflow: hidden;
  flex-shrink: 0;
}
.cc-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cc-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 8px 0 6px;
}
.cc-body .b-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 800;
  color: var(--brand);
}
.cc-title {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 12px;
}
.cc-bio {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}

/* Üyeler grid */
.comm-members-section {
  margin-top: 50px;
}
.comm-members-section .module-h {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 6px;
}
.comm-members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.comm-member-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: all 0.2s;
}
.comm-member-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11,61,145,0.06);
}
.cmc-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 500;
  flex-shrink: 0;
}
.cmc-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.cmc-role {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2px;
}

.comm-content-section {
  margin-top: 40px;
}
.comm-content-section .module-h {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 6px;
}

/* ===================================================================
   ANA SAYFA YENİ SON HABERLER MODÜLÜ (mhn - modern homepage news)
   =================================================================== */
.mhn-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  margin-top: 24px;
  align-items: start;
}
@media (max-width: 1100px) { .mhn-grid { gap: 28px; } }
@media (max-width: 900px) {
  .mhn-grid { grid-template-columns: 1fr; gap: 20px; }
}

.mhn-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  display: block;
  background: #0a0f1e;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mhn-card:hover { transform: translateY(-3px); }

.mhn-card.mhn-big {
  aspect-ratio: 4/3.5;
  min-height: 540px;
}
@media (max-width: 900px) {
  .mhn-card.mhn-big { aspect-ratio: 16/10; min-height: 300px; }
}

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

.mhn-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55) 75%, rgba(0,0,0,0.92) 100%);
  pointer-events: none;
}

.mhn-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px;
  z-index: 2;
}
.mhn-big .mhn-body { padding: 32px; }

.mhn-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 10px;
}
.mhn-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: white;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mhn-big .mhn-title {
  font-size: clamp(22px, 2.4vw, 30px);
  -webkit-line-clamp: 3;
}
.mhn-small .mhn-title {
  font-size: 15px;
}
.mhn-excerpt {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
  max-width: 90%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mhn-date {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

/* Sağ 2x2+1 grid */
.mhn-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mhn-side .mhn-small {
  aspect-ratio: 4/3;
  min-height: 130px;
}
/* Son kart (5. küçük) tam satır */
.mhn-side .mhn-small:nth-child(5) {
  grid-column: 1 / -1;
  aspect-ratio: 16/6;
  min-height: 130px;
}
@media (max-width: 700px) {
  .mhn-side { grid-template-columns: 1fr; }
  .mhn-side .mhn-small:nth-child(5) { grid-column: auto; aspect-ratio: 4/3; }
}

/* ===================================================================
   ADMIN: PHOTO CARD, VIDEO CARD
   =================================================================== */
.photo-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s;
}
.photo-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.photo-card-cover {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0a0f1e;
}
.photo-card-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.photo-card-count {
  position: absolute;
  top: 10px; right: 10px;
  padding: 4px 10px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
}
.video-play-overlay, .video-play-big {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  pointer-events: none;
}
.video-play-overlay svg {
  width: 48px; height: 48px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.video-play-big svg {
  width: 64px; height: 64px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}
.photo-card-body {
  padding: 14px 16px;
}
.photo-card-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.photo-card-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.photo-card-actions {
  display: flex;
  gap: 6px;
  justify-content: space-between;
  align-items: center;
}

/* Admin galeri resimleri grid */
.gallery-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}
.gallery-img-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: #f1f5f9;
}
.gallery-img-item img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.gallery-img-item .cover-badge {
  position: absolute;
  top: 6px; left: 6px;
  padding: 3px 8px;
  background: var(--gold);
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  border-radius: 4px;
}
.gallery-img-actions {
  position: absolute;
  top: 6px; right: 6px;
  display: flex;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.2s;
}
.gallery-img-item:hover .gallery-img-actions {
  opacity: 1;
}

/* ===================================================================
   FRONTEND GALERİ SAYFALARI
   =================================================================== */
.galleries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.gallery-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gallery-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 16px 30px rgba(0,0,0,0.08);
}
.gallery-card-cover {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gallery-card-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.gallery-card:hover .gallery-card-cover img {
  transform: scale(1.05);
}
.gallery-card-count {
  position: absolute;
  bottom: 12px; right: 12px;
  padding: 5px 12px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
}
.gallery-card-body {
  padding: 18px;
}
.gallery-card-cat {
  font-size: 11px;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.gallery-card-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 8px;
}
.gallery-card-date {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Galeri detay sayfa */
.gallery-viewer {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.gv-item {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #f1f5f9;
  transition: transform 0.3s;
}
.gv-item:hover {
  transform: scale(1.03);
}
.gv-item img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  border: none;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.lightbox-close:hover {
  background: white;
  color: #0a0f1e;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  border: none;
  font-size: 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-nav:hover { background: white; color: #0a0f1e; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
  background: rgba(0,0,0,0.5);
  padding: 6px 14px;
  border-radius: 999px;
}

/* Video Galeri sayfa */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.video-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}
.video-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}
.video-card-cover {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0a0f1e;
}
.video-card-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-card-body {
  padding: 14px 16px;
}
.video-card-body h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
  color: var(--ink);
}
.video-card-date {
  font-size: 12px;
  color: var(--text-muted);
}

/* Active video player */
.active-video-wrap {
  background: #0a0f1e;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 30px;
}
.active-video-player {
  aspect-ratio: 16/9;
  width: 100%;
}
.active-video-player iframe {
  width: 100%; height: 100%;
  border: 0;
}
.active-video-info {
  padding: 24px 30px;
  color: white;
}
.active-video-info h2 { color: white; }
.active-video-info p { color: rgba(255,255,255,0.8); }

/* ===================================================================
   DUYURU/ETKİNLİK DETAY SAYFASI
   =================================================================== */
.detail-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 0;
}
.detail-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.detail-meta .pill {
  padding: 5px 12px;
  background: var(--brand);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
}
.detail-image {
  margin: 24px 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.detail-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.detail-content {
  font-size: 16px;
  line-height: 1.7;
}

/* Custom page */
.custom-page-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 0;
}
.custom-page-image {
  margin-bottom: 30px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/8;
}
.custom-page-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.custom-page-lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-muted);
  font-weight: 500;
  padding: 16px 20px;
  border-left: 3px solid var(--brand);
  background: #f8fafc;
  border-radius: 0 10px 10px 0;
  margin-bottom: 30px;
}

/* ===================================================================
   RAKAMLARLA UEB (counter stats)
   =================================================================== */
.stats-bg {
  background:
    radial-gradient(circle at 20% 20%, rgba(11,61,145,0.06), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(6,182,212,0.05), transparent 40%),
    #0a0f1e;
  color: white;
  padding-block: clamp(60px, 8vw, 100px);
}
.stats-bg .section-header .eyebrow { color: #fbbf24; }
.stats-bg .section-title { color: white; }
.stats-bg .section-title em {
  font-style: italic;
  color: #fbbf24;
}

.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .stats-counter-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .stats-counter-grid { grid-template-columns: 1fr; }
}

.stat-counter-card {
  padding: 30px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.stat-counter-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(251,191,36,0.4);
  transform: translateY(-4px);
}
.stat-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0a0f1e;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-icon svg { width: 26px; height: 26px; }
.stat-value {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.stat-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}


/* ===================================================================
   GLOBAL SVG BOYUT KORUMASI — İkonların taşmasını engeller
   =================================================================== */
/* prose içinde ve detail sayfasında açık kalan svg'lere boyut ver */
.prose svg,
.detail-content svg,
.custom-page-article svg {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
/* içerik render edilirken svg çıkmamalı ama emniyet için max-width */
.detail-article svg,
.detail-content svg {
  max-width: 32px !important;
  max-height: 32px !important;
}
/* float-whatsapp svg büyük kalabilir ama genel timeline düzelt */
.event-item svg {
  max-width: 24px !important;
  max-height: 24px !important;
}
.event-item .event-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f1f5f9;
  flex-shrink: 0;
  transition: all 0.2s;
}
.event-item:hover .event-action {
  background: var(--brand);
}
.event-item:hover .event-action svg {
  color: white !important;
}

/* Detay sayfada footer'da svg render olursa kontrol */
.detail-article .btn-ghost svg {
  width: 16px !important;
  height: 16px !important;
}


/* ===================================================================
   ADMIN: İstatistik Editor
   =================================================================== */
.stats-editor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}
.stat-editor-card {
  position: relative;
  padding: 16px;
  background: linear-gradient(145deg, #f8fafc, #f1f5f9);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}
.stat-editor-card .stat-editor-num {
  position: absolute;
  top: 12px; right: 12px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-editor-card .field {
  margin-bottom: 10px;
}
.stat-editor-card .field:last-child {
  margin-bottom: 0;
}
.stat-editor-card label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 4px;
  display: block;
}
.stat-editor-card input {
  width: 100%;
  padding: 8px 10px;
  font-size: 13.5px;
}

/* ===================================================================
   FOOTER SOSYAL MEDYA + DESTEK BUTON
   =================================================================== */
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-support-btn {
  margin-top: 20px;
  width: 100%;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s;
  box-shadow: 0 6px 20px rgba(11,61,145,0.3);
}
.footer-support-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11,61,145,0.45);
}
.footer-support-btn svg {
  width: 18px;
  height: 18px;
}

/* ===================================================================
   DESTEK MODALI
   =================================================================== */
.support-modal {
  position: fixed;
  inset: 0;
  background: rgba(10,15,30,0.6);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
.support-modal.active {
  opacity: 1;
  visibility: visible;
}

.support-modal-content {
  background: white;
  border-radius: 20px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 36px 32px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.support-modal.active .support-modal-content {
  transform: translateY(0);
}
@media (max-width: 600px) {
  .support-modal-content { padding: 24px 20px; }
}

.support-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  font-size: 24px;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.15s;
}
.support-close:hover {
  background: #e2e8f0;
  color: var(--ink);
}

.support-header {
  margin-bottom: 24px;
}
.support-header h2 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 10px;
  margin-bottom: 6px;
  color: var(--ink);
}
.support-header p {
  color: var(--text-muted);
  font-size: 14px;
}

.support-form .field {
  margin-bottom: 14px;
}
.support-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.support-form input,
.support-form textarea,
.support-form select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 14px;
  transition: all 0.15s;
  background: white;
}
.support-form input:focus,
.support-form textarea:focus,
.support-form select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(11,61,145,0.12);
  outline: none;
}
.support-form .field-row.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 500px) {
  .support-form .field-row.split { grid-template-columns: 1fr; }
}

.support-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.support-actions button {
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13.5px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.support-actions .btn-light {
  background: #f1f5f9;
  color: var(--ink);
}
.support-actions .btn-dark {
  background: var(--ink);
  color: white;
}
.support-actions .btn-dark:hover {
  background: var(--brand);
}

.support-success {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.support-success h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
}
.support-success p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 340px;
}
.support-success button {
  margin-top: 12px;
  padding: 10px 24px;
  background: var(--ink);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

/* ===================================================================
   ADMIN: DESTEK MESAJLARI
   =================================================================== */
.new-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #dc2626;
  border-radius: 50%;
  animation: pulse-new 1.5s infinite;
}
@keyframes pulse-new {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.unread-row {
  background: linear-gradient(145deg, #fef9c3, #fef3c7);
}
.unread-row td {
  font-weight: 700;
}
.info-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
.info-row:last-child {
  border-bottom: none;
}
.info-row .lbl {
  color: var(--text-muted);
  font-weight: 600;
}
.info-row .val {
  color: var(--ink);
  font-weight: 700;
}
.info-row .val a {
  color: var(--brand);
}

/* ===================================================================
   NEDEN UEB (Üye Ayrıcalıkları)
   =================================================================== */
.why-ueb-bg {
  background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
}

.why-card {
  padding: 32px 28px;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--line);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: transparent;
}
.why-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(11,61,145,0.15);
}
.why-icon svg {
  width: 28px; height: 28px;
}
.why-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Komisyon page card (birimler.html) */
.commissions-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.comm-page-card {
  position: relative;
  padding: 28px;
  border-radius: 20px;
  color: white;
  text-decoration: none;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  overflow: hidden;
  min-height: 220px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 14px 30px rgba(11,61,145,0.18);
}
.comm-page-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(11,61,145,0.3);
}
.comm-page-card .cpc-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
}
.comm-page-card .cpc-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.comm-page-card .cpc-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  color: white;
}
.comm-page-card .cpc-body p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.comm-page-card .cpc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}
.comm-page-card .cpc-arrow {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.comm-page-card .cpc-arrow svg {
  width: 16px; height: 16px;
  transition: transform 0.2s;
}
.comm-page-card:hover .cpc-arrow svg {
  transform: translateX(4px);
}


/* ===================================================================
   TOP BAR QUICK LINKS — Admin'den yönetilen hızlı linkler
   =================================================================== */
.topbar-quicklinks {
  display: inline-flex;
  gap: 14px;
  align-items: center;
}
.topbar-quicklinks .tb-link {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 4px 2px;
  position: relative;
  transition: color 0.15s;
  letter-spacing: 0.01em;
}
.topbar-quicklinks .tb-link:hover {
  color: white;
}
.topbar-quicklinks .tb-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: #fbbf24;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.topbar-quicklinks .tb-link:hover::after {
  transform: scaleX(1);
}

/* Mobilde hızlı linkler gizli zaten ama güvenlik için */
@media (max-width: 768px) {
  .topbar-quicklinks { display: none; }
}

/* ===================================================================
   ADMIN: MENU ITEM ROW düzen iyileştirme (topbar editor için)
   =================================================================== */
.menu-item-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 8px;
}
.menu-item-row .mir-handle {
  color: #94a3b8;
  cursor: grab;
  display: flex;
}
.menu-item-row .mir-handle svg {
  width: 18px; height: 18px;
}
.menu-item-row .mir-body {
  min-width: 0;
}
.menu-item-row .mir-actions {
  display: flex;
  gap: 4px;
}

/* ===================================================================
   GLOBAL SVG BOYUT ZORLAMASI — İkonların taşmasını kesin engeller
   =================================================================== */
/* Varsayılan SVG boyutu */
svg:not([width]):not([height]) {
  max-width: 100%;
  height: auto;
}

/* Event-item içindeki SVG'ler her durumda 20px */
.event-item svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
}
.event-action {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  border-radius: 50% !important;
  background: #f1f5f9 !important;
  flex-shrink: 0 !important;
  transition: all 0.2s !important;
}
.event-item:hover .event-action {
  background: var(--brand) !important;
}
.event-item:hover .event-action svg {
  color: white !important;
}

/* Detail sayfada tüm SVG'lere sert sınırlama */
.detail-article svg,
.detail-content svg,
.detail-meta svg {
  max-width: 24px;
  max-height: 24px;
  display: inline-block;
}
.detail-article .btn-ghost svg {
  width: 16px !important;
  height: 16px !important;
}

/* Breadcrumb, pill ikonları */
.detail-meta .pill {
  display: inline-flex;
  align-items: center;
}
.detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}


/* ===================================================================
   CANLI TOPLULUK PULSE (WOW MODULE)
   =================================================================== */
.pulse-bg {
  position: relative;
  background:
    radial-gradient(circle at 20% 30%, rgba(6,182,212,0.12), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(245,158,11,0.08), transparent 50%),
    linear-gradient(135deg, #0a0f1e 0%, #1e293b 100%);
  color: white;
  overflow: hidden;
  padding-block: clamp(80px, 10vw, 140px);
}

/* Arka plan noktalar */
.pulse-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 20%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 85% 40%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 45% 80%, rgba(251,191,36,0.5), transparent),
    radial-gradient(1px 1px at 70% 15%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1.5px 1.5px at 25% 65%, rgba(6,182,212,0.4), transparent);
  background-size: 300px 300px, 200px 200px, 400px 400px, 250px 250px, 350px 350px;
  pointer-events: none;
}

.pulse-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .pulse-wrap { grid-template-columns: 1fr; gap: 40px; }
}

/* SOL: Text kısmı */
.pulse-left .pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #10b981;
  margin-bottom: 20px;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseAnim 2s infinite;
}
@keyframes pulseAnim {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.pulse-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: white;
  margin-bottom: 18px;
  padding-bottom: 6px;
}
.pulse-title em {
  font-style: italic;
  color: #fbbf24;
  font-weight: 500;
}

.pulse-desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  max-width: 440px;
}

.pulse-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0a0f1e;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 14px 35px rgba(245, 158, 11, 0.35);
}
.pulse-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(245, 158, 11, 0.5);
}
.pulse-cta svg {
  width: 18px; height: 18px;
  transition: transform 0.2s;
}
.pulse-cta:hover svg {
  transform: translateX(4px);
}

/* SAĞ: Visual + Feed */
.pulse-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Orbital visual */
.pulse-visual {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .pulse-visual { height: 260px; }
}

.pulse-ring {
  position: absolute;
  left: 50%; top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  transform: translate(-50%, -50%);
}
.pulse-ring.r1 {
  width: 160px; height: 160px;
  animation: ringPulse 3s ease-out infinite;
}
.pulse-ring.r2 {
  width: 220px; height: 220px;
  animation: ringPulse 3s ease-out infinite 1s;
}
.pulse-ring.r3 {
  width: 280px; height: 280px;
  animation: ringPulse 3s ease-out infinite 2s;
}
@keyframes ringPulse {
  0% { opacity: 0.8; transform: translate(-50%, -50%) scale(0.85); border-color: rgba(251,191,36,0.5); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.4); border-color: rgba(6,182,212,0.1); }
}

.pulse-core {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b3d91, #06b6d4);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 40px rgba(6,182,212,0.5),
    0 0 80px rgba(11,61,145,0.4),
    inset 0 -8px 20px rgba(0,0,0,0.2);
  position: relative;
  z-index: 10;
}
.pulse-core svg {
  width: 48px; height: 48px;
  animation: spin 40s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Orbital gezegenler */
.pulse-planets {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pulse-planet {
  position: absolute;
  left: 50%; top: 50%;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  color: white;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  transform-origin: -120px 0;
  animation: orbitPlanet 20s linear infinite;
  animation-delay: var(--delay, 0s);
}
@media (max-width: 600px) {
  .pulse-planet {
    font-size: 10px;
    padding: 4px 8px;
    transform-origin: -90px 0;
  }
}

@keyframes orbitPlanet {
  from { transform: translate(-50%, -50%) rotate(0deg) translateX(120px) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg) translateX(120px) rotate(-360deg); }
}
@media (max-width: 600px) {
  @keyframes orbitPlanet {
    from { transform: translate(-50%, -50%) rotate(0deg) translateX(90px) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg) translateX(90px) rotate(-360deg); }
  }
}

/* Her gezegen farklı açıdan başlasın */
.pulse-planet.p1 { animation-name: orbitPlanet; }
.pulse-planet.p2 { animation: orbitPlanet2 22s linear infinite; animation-delay: var(--delay, 0s); }
.pulse-planet.p3 { animation: orbitPlanet3 24s linear infinite; animation-delay: var(--delay, 0s); }
.pulse-planet.p4 { animation: orbitPlanet4 26s linear infinite; animation-delay: var(--delay, 0s); }
.pulse-planet.p5 { animation: orbitPlanet5 28s linear infinite; animation-delay: var(--delay, 0s); }
.pulse-planet.p6 { animation: orbitPlanet6 21s linear infinite; animation-delay: var(--delay, 0s); }

@keyframes orbitPlanet2 {
  from { transform: translate(-50%, -50%) rotate(60deg) translateX(120px) rotate(-60deg); }
  to { transform: translate(-50%, -50%) rotate(420deg) translateX(120px) rotate(-420deg); }
}
@keyframes orbitPlanet3 {
  from { transform: translate(-50%, -50%) rotate(120deg) translateX(140px) rotate(-120deg); }
  to { transform: translate(-50%, -50%) rotate(480deg) translateX(140px) rotate(-480deg); }
}
@keyframes orbitPlanet4 {
  from { transform: translate(-50%, -50%) rotate(180deg) translateX(120px) rotate(-180deg); }
  to { transform: translate(-50%, -50%) rotate(540deg) translateX(120px) rotate(-540deg); }
}
@keyframes orbitPlanet5 {
  from { transform: translate(-50%, -50%) rotate(240deg) translateX(140px) rotate(-240deg); }
  to { transform: translate(-50%, -50%) rotate(600deg) translateX(140px) rotate(-600deg); }
}
@keyframes orbitPlanet6 {
  from { transform: translate(-50%, -50%) rotate(300deg) translateX(120px) rotate(-300deg); }
  to { transform: translate(-50%, -50%) rotate(660deg) translateX(120px) rotate(-660deg); }
}

@media (max-width: 600px) {
  @keyframes orbitPlanet2 {
    from { transform: translate(-50%, -50%) rotate(60deg) translateX(90px) rotate(-60deg); }
    to { transform: translate(-50%, -50%) rotate(420deg) translateX(90px) rotate(-420deg); }
  }
  @keyframes orbitPlanet3 {
    from { transform: translate(-50%, -50%) rotate(120deg) translateX(105px) rotate(-120deg); }
    to { transform: translate(-50%, -50%) rotate(480deg) translateX(105px) rotate(-480deg); }
  }
  @keyframes orbitPlanet4 {
    from { transform: translate(-50%, -50%) rotate(180deg) translateX(90px) rotate(-180deg); }
    to { transform: translate(-50%, -50%) rotate(540deg) translateX(90px) rotate(-540deg); }
  }
  @keyframes orbitPlanet5 {
    from { transform: translate(-50%, -50%) rotate(240deg) translateX(105px) rotate(-240deg); }
    to { transform: translate(-50%, -50%) rotate(600deg) translateX(105px) rotate(-600deg); }
  }
  @keyframes orbitPlanet6 {
    from { transform: translate(-50%, -50%) rotate(300deg) translateX(90px) rotate(-300deg); }
    to { transform: translate(-50%, -50%) rotate(660deg) translateX(90px) rotate(-660deg); }
  }
}

/* CANLI AKIŞ FEED */
.pulse-feed {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.pulse-feed-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.65);
}
.pulse-feed-head .live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ef4444;
  animation: blink 1.4s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.pulse-feed-items {
  display: flex;
  flex-direction: column;
  max-height: 240px;
  overflow: hidden;
}

.pulse-feed-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  padding: 12px 18px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  animation: none;
}
.pulse-feed-item:last-child {
  border-bottom: none;
}
.pulse-feed-item.is-new {
  animation: slideInFade 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes slideInFade {
  from {
    opacity: 0;
    transform: translateY(-12px);
    background: rgba(251, 191, 36, 0.12);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    background: transparent;
  }
}

.pfi-icon {
  font-size: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pfi-body {
  font-size: 13px;
  line-height: 1.45;
  min-width: 0;
}
.pfi-body strong {
  color: white;
  font-weight: 700;
}
.pfi-time {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  font-weight: 600;
}


/* ===================================================================
   DÜNYA HARİTASI — ULUSLARARASI TEMSİLCİLİK
   =================================================================== */
.worldmap-section {
  position: relative;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(11,61,145,0.25), transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(251,191,36,0.12), transparent 55%),
    linear-gradient(135deg, #050912 0%, #0f1629 100%);
  color: white;
  overflow: hidden;
  padding-block: clamp(70px, 9vw, 120px);
}

/* Arka plan yıldızlar */
.worldmap-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 15%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 30% 45%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1.5px 1.5px at 65% 20%, rgba(251,191,36,0.5), transparent),
    radial-gradient(1px 1px at 80% 60%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1.5px 1.5px at 50% 85%, rgba(6,182,212,0.4), transparent),
    radial-gradient(1px 1px at 90% 25%, rgba(255,255,255,0.3), transparent);
  background-size: 400px 400px, 300px 300px, 500px 500px, 350px 350px, 450px 450px, 380px 380px;
  pointer-events: none;
  opacity: 0.7;
  animation: starsFade 8s ease-in-out infinite alternate;
}
@keyframes starsFade {
  from { opacity: 0.4; }
  to { opacity: 0.8; }
}

.worldmap-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 2;
}
.worldmap-header .pulse-badge {
  margin: 0 auto 20px;
}
.worldmap-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: white;
  margin-bottom: 16px;
  padding-bottom: 6px;
}
.worldmap-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 0.08em;
  display: inline-block;
}
.worldmap-subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin: 0 auto;
}

/* SVG Harita Sahnesi */
.worldmap-stage {
  position: relative;
  z-index: 2;
}

.worldmap-svg {
  width: 100%;
  height: auto;
  max-height: 540px;
  filter: drop-shadow(0 20px 60px rgba(6, 182, 212, 0.15));
}

/* Kıtalar hover için */
.wm-continents path {
  transition: fill 0.3s;
}

/* Arc animasyonu için gradient */
.wm-arc {
  fill: none;
  stroke-linecap: round;
  filter: drop-shadow(0 0 4px rgba(251,191,36,0.6));
}

/* Metin boyutları responsive */
@media (max-width: 700px) {
  .worldmap-svg text {
    font-size: 14px !important;
  }
}

/* Bilgi kartları altta */
.worldmap-info-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .worldmap-info-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
  .worldmap-info-cards { grid-template-columns: repeat(2, 1fr); }
}

.wm-card {
  padding: 20px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.wm-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(251,191,36,0.15) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.3s;
}
.wm-card:hover {
  transform: translateY(-4px);
  border-color: rgba(251,191,36,0.4);
  background: rgba(255,255,255,0.08);
}
.wm-card:hover::before {
  opacity: 1;
}
.wm-card-flag {
  font-size: 32px;
  margin-bottom: 8px;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.wm-card-num {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 500;
  color: #fbbf24;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.wm-card-label {
  font-size: 12px;
  color: white;
  font-weight: 700;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}
.wm-card-tag {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

/* Pulse modülü tek sütuna indir (harita öne çıktığı için) */
.pulse-bg .pulse-wrap {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px) {
  .pulse-bg .pulse-wrap { grid-template-columns: 1fr; }
}
.pulse-bg .pulse-right {
  display: block;
}


/* Komisyon kartı icon box (SVG için) */
.comm-card-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.comm-card-icon-box svg {
  width: 26px;
  height: 26px;
}
.comm-card-icon-box span {
  font-size: 22px;
  color: white;
}
.comm-page-card .cpc-icon svg {
  width: 26px;
  height: 26px;
  color: white;
}

/* ===================================================================
   DİL SWİTCHER (TR/EN)
   =================================================================== */
.lang-switcher {
  display: inline-flex;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  padding: 3px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}
.lang-btn:hover {
  color: white;
}
.lang-btn.active {
  background: white;
  color: var(--brand);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.lang-flag {
  font-size: 14px;
  line-height: 1;
}

/* Google Translate üst banner'ı tamamen gizle */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame,
div.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover,
body > .skiptranslate {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
}
body {
  top: 0 !important;
  position: static !important;
}
font[style*="background-color: rgb(255, 255, 102)"] {
  background: transparent !important;
  box-shadow: none !important;
}

/* ===================================================================
   ADMIN: PULSE FEED EDITOR
   =================================================================== */
.pulse-item-row {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 10px;
}
.pir-preview {
  display: flex;
  justify-content: center;
  padding-top: 24px;
}
.pir-preview .pfi-icon {
  background: white;
  border: 1px solid #e2e8f0;
}
.pir-fields {
  min-width: 0;
}
.pir-fields .field-row.split {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.pir-fields .field-row.split:last-child {
  grid-template-columns: 1fr 180px;
  margin-bottom: 0;
}
.pir-fields .field {
  margin: 0;
}
.pir-fields label {
  font-size: 10px;
  color: #64748b;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.pir-fields .input {
  padding: 7px 10px;
  font-size: 13px;
}
.pir-actions {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 18px;
}
.btn-icon-small {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: white;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.15s;
}
.btn-icon-small svg {
  width: 14px;
  height: 14px;
}
.btn-icon-small:hover:not(:disabled) {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}
.btn-icon-small:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.btn-icon-small.del:hover {
  background: #ef4444;
  border-color: #ef4444;
}

@media (max-width: 700px) {
  .pulse-item-row {
    grid-template-columns: 1fr;
  }
  .pir-preview { padding-top: 0; }
  .pir-fields .field-row.split {
    grid-template-columns: 70px 1fr !important;
  }
  .pir-fields .field-row.split:last-child {
    grid-template-columns: 1fr !important;
  }
  .pir-actions {
    flex-direction: row;
    padding-top: 0;
  }
}

/* Admin login note code tag */
.login-note code {
  background: #fef3c7;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: #78350f;
  font-weight: 700;
}

/* ===================================================================
   ÜYELİK AVANTAJI HESAPLAYICI
   =================================================================== */
.savings-calc-bg {
  background:
    radial-gradient(circle at 15% 30%, rgba(11,61,145,0.08), transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(251,191,36,0.06), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding-block: clamp(60px, 9vw, 120px);
}

.savings-calc-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  margin-top: 50px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .savings-calc-wrap { grid-template-columns: 1fr; gap: 24px; }
}

.scalc-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}
@media (max-width: 600px) { .scalc-form { padding: 22px; } }

.scalc-field {
  margin-bottom: 20px;
}
.scalc-field:last-child {
  margin-bottom: 0;
}
.scalc-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 800;
  margin-bottom: 8px;
}
.scalc-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: white;
  cursor: pointer;
  transition: all 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.scalc-input:focus {
  border-color: var(--brand);
  outline: none;
  box-shadow: 0 0 0 3px rgba(11,61,145,0.12);
}

.scalc-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (max-width: 500px) { .scalc-checks { grid-template-columns: 1fr; } }
.scalc-checks label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  transition: all 0.15s;
  letter-spacing: normal;
  text-transform: none;
  margin: 0;
}
.scalc-checks label:hover {
  border-color: var(--brand);
  background: #eff6ff;
}
.scalc-checks input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--brand);
  cursor: pointer;
}
.scalc-checks label:has(input:checked) {
  background: #eff6ff;
  border-color: var(--brand);
  color: var(--brand);
}
.scalc-checks span {
  flex: 1;
}

.scalc-result {
  display: flex;
  flex-direction: column;
}

.scalc-result-card {
  background: linear-gradient(145deg, #0b3d91 0%, #0a2456 100%);
  color: white;
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 20px 50px rgba(11,61,145,0.25);
}
.scalc-result-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,191,36,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.scalc-badge {
  display: inline-block;
  background: rgba(251,191,36,0.15);
  color: #fbbf24;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 14px;
  border: 1px solid rgba(251,191,36,0.3);
}

.scalc-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.scalc-currency {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}
.scalc-value {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 500;
  color: #fbbf24;
  letter-spacing: -0.03em;
  line-height: 1;
  transition: color 0.3s;
}
.scalc-sub {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 500;
}
.scalc-sub strong {
  color: #fbbf24;
  font-weight: 800;
}

.scalc-breakdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  background: rgba(0,0,0,0.2);
  border-radius: 14px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}
.scalc-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 13.5px;
  padding: 4px 0;
}
.scalc-row-icon {
  font-size: 16px;
  text-align: center;
}
.scalc-row-label {
  color: rgba(255,255,255,0.85);
}
.scalc-row-val {
  color: #fbbf24;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.scalc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0a0f1e;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  transition: all 0.2s;
  box-shadow: 0 8px 24px rgba(251,191,36,0.35);
}
.scalc-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(251,191,36,0.5);
}
.scalc-cta svg {
  width: 16px; height: 16px;
}

.scalc-note {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin-top: 12px;
  line-height: 1.4;
}

/* ===================================================================
   ÜYE KARTI ÖNİZLEME (3D FLIP)
   =================================================================== */
.member-card-bg {
  background:
    radial-gradient(circle at 10% 20%, rgba(11,61,145,0.06), transparent 55%),
    radial-gradient(circle at 90% 80%, rgba(251,191,36,0.05), transparent 55%),
    #f8fafc;
  padding-block: clamp(70px, 9vw, 120px);
  overflow: hidden;
}

.member-card-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .member-card-wrap { grid-template-columns: 1fr; gap: 40px; }
}

.mc-content .eyebrow { color: var(--brand); }
.mc-content .section-title { margin-top: 14px; }
.mc-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-top: 20px;
  margin-bottom: 28px;
  max-width: 500px;
}
.mc-lead strong {
  color: var(--ink);
  font-weight: 700;
}

.mc-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.mc-features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.mc-feat-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(11,61,145,0.15);
}
.mc-feat-icon svg {
  width: 20px; height: 20px;
}
.mc-features li b {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.mc-features li span {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.mc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14.5px;
  transition: all 0.2s;
  box-shadow: 0 12px 28px rgba(11,61,145,0.3);
}
.mc-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(11,61,145,0.4);
}
.mc-cta svg { width: 16px; height: 16px; }

.mc-hint {
  margin-top: 16px;
  font-size: 13px;
  color: #94a3b8;
  font-style: italic;
}

/* 3D KART */
.mc-stage {
  perspective: 1500px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}

.mc-flip {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1.586 / 1;
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  transform: rotateY(-8deg) rotateX(4deg);
}
.mc-flip.flipped {
  transform: rotateY(-172deg) rotateX(4deg);
}
.mc-flip:hover:not(.flipped) {
  transform: rotateY(-14deg) rotateX(6deg) translateY(-8px);
}

.mc-card {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.25),
    0 10px 20px rgba(11,61,145,0.15);
}

/* ÖN YÜZ */
.mc-front {
  background: linear-gradient(135deg, #0a1e4a 0%, #0b3d91 50%, #1e3a8a 100%);
  color: white;
  padding: 28px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0;
}
.mc-front-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(251,191,36,0.25), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(6,182,212,0.2), transparent 50%);
  pointer-events: none;
}

.mc-chip {
  position: relative;
  width: 48px; height: 36px;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  border-radius: 6px;
  padding: 3px;
  z-index: 2;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.3), 0 2px 4px rgba(0,0,0,0.2);
}
.mc-chip-inner {
  position: absolute;
  inset: 3px;
  background:
    linear-gradient(135deg, #f59e0b 0%, #92400e 100%);
  border-radius: 4px;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 4px, rgba(0,0,0,0.2) 4px, rgba(0,0,0,0.2) 5px),
    repeating-linear-gradient(0deg, transparent, transparent 4px, rgba(0,0,0,0.2) 4px, rgba(0,0,0,0.2) 5px);
}

.mc-brand {
  position: relative;
  z-index: 2;
  text-align: right;
  margin-top: -30px;
}
.mc-logo {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.02em;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.mc-brand-sub {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #fbbf24;
  font-weight: 800;
  margin-top: 4px;
}

.mc-holo {
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #fbbf24, #06b6d4, #ec4899, #fbbf24);
  opacity: 0.5;
  filter: blur(1px);
  z-index: 1;
  animation: mcHoloSpin 8s linear infinite;
}
@keyframes mcHoloSpin {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

.mc-info {
  position: relative;
  z-index: 2;
  align-self: end;
}
.mc-info-row { margin-bottom: 12px; }
.mc-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.mc-info-label {
  font-size: 8.5px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.55);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.mc-info-value {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.mc-info-value.mc-no {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.15em;
  font-size: 15px;
}

.mc-front-watermark {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-family: 'Fraunces', serif;
  font-size: 100px;
  font-weight: 600;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  line-height: 1;
}

/* ARKA YÜZ */
.mc-back {
  background: linear-gradient(135deg, #1e3a8a 0%, #0a1e4a 100%);
  color: white;
  transform: rotateY(180deg);
  padding: 0;
  display: flex;
  flex-direction: column;
}
.mc-strip {
  width: 100%;
  height: 44px;
  background: #0a0f1e;
  margin-top: 16px;
}
.mc-back-body {
  flex: 1;
  padding: 18px 22px 8px;
  display: grid;
  grid-template-columns: 1fr 80px;
  gap: 16px;
}
.mc-signature {
  grid-column: 1;
}
.mc-sig-label {
  font-size: 8px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.55);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.mc-sig-line {
  background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 100%);
  color: #1e3a8a;
  padding: 6px 10px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  border-radius: 4px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}
.mc-qr {
  grid-row: 1 / 3;
  grid-column: 2;
  background: white;
  padding: 6px;
  border-radius: 6px;
  align-self: start;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.mc-qr svg {
  width: 100%;
  height: auto;
  display: block;
}
.mc-back-info {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}
.mc-back-row {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  padding: 3px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mc-back-row:last-child { border-bottom: none; }
.mc-back-row .lbl {
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.mc-back-row .val {
  color: white;
  font-weight: 700;
}
.mc-back-note {
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.6);
  padding: 8px 22px;
  font-size: 9px;
  text-align: center;
  letter-spacing: 0.05em;
}

/* ===================================================================
   BAŞARI HİKAYELERİ CAROUSEL
   =================================================================== */
.success-stories-bg {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding-block: clamp(70px, 9vw, 120px);
}

.stories-carousel {
  position: relative;
  max-width: 900px;
  margin: 50px auto 0;
}

.stories-track {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .stories-track { min-height: 420px; }
}

.story-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.story-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.story-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px 40px 32px;
  position: relative;
  box-shadow: 0 14px 40px rgba(0,0,0,0.06);
}
@media (max-width: 600px) {
  .story-card { padding: 28px 24px 24px; }
}

.story-quote-mark {
  position: absolute;
  top: -20px;
  left: 36px;
  font-family: 'Fraunces', serif;
  font-size: 120px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  opacity: 0.18;
  pointer-events: none;
}

.story-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 28px;
  font-style: italic;
  letter-spacing: -0.01em;
}

.story-person {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
@media (max-width: 600px) {
  .story-person {
    grid-template-columns: auto 1fr;
    gap: 12px;
  }
}

.story-avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  overflow: hidden;
  flex-shrink: 0;
}
.story-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.story-person-info {
  min-width: 0;
}
.story-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 2px;
}
.story-meta {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.story-achievement {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(251,191,36,0.3);
}
@media (max-width: 600px) {
  .story-achievement {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 10px;
  }
}

/* Navigation */
.story-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.2s;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.story-nav:hover {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
  transform: translateY(-50%) scale(1.08);
}
.story-nav svg {
  width: 20px; height: 20px;
}
.story-prev { left: -24px; }
.story-next { right: -24px; }
@media (max-width: 960px) {
  .story-prev { left: 6px; }
  .story-next { right: 6px; }
}

/* Dots */
.stories-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.story-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.story-dot:hover {
  background: #94a3b8;
}
.story-dot.active {
  background: var(--brand);
  width: 30px;
  border-radius: 999px;
}

/* ===================================================================
   BAŞKAN PORTRESİ (gerçek foto)
   =================================================================== */
.president-portrait {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #0b3d91, #1e3a8a);
}
.president-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}
.president-portrait:hover .president-photo {
  transform: scale(1.03);
}

/* Başarı hikayesi avatarında image fallback */
.story-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===================================================================
   CUMHURBAŞKANLIĞI KARARNAMESİ BANNER
   =================================================================== */
.decree-banner {
  padding: 32px 0;
  background:
    linear-gradient(135deg, rgba(220, 38, 38, 0.04) 0%, rgba(251, 191, 36, 0.04) 50%, rgba(11, 61, 145, 0.04) 100%),
    #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.decree-wrap {
  display: flex;
  justify-content: center;
}

.decree-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  max-width: 1080px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.decree-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(220, 38, 38, 0.05), transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(251, 191, 36, 0.06), transparent 40%);
  pointer-events: none;
}
@media (max-width: 780px) {
  .decree-content {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 18px;
    text-align: center;
  }
}

.decree-seal {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25), inset 0 2px 4px rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 1;
}
.decree-seal svg {
  width: 36px;
  height: 36px;
}
@media (max-width: 780px) {
  .decree-seal { margin: 0 auto; }
}

.decree-text {
  position: relative;
  z-index: 1;
}
.decree-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #dc2626;
  margin-bottom: 6px;
}
.decree-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.decree-title strong {
  font-weight: 700;
  color: #dc2626;
  font-family: inherit;
}
.decree-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 720px;
}
.decree-desc strong {
  color: var(--ink);
  font-weight: 700;
}

.decree-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, #dc2626, #991b1b);
  color: white;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.25);
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.decree-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(220, 38, 38, 0.35);
}
.decree-btn svg {
  width: 15px;
  height: 15px;
}

/* Decree modal */
.decree-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.2s;
}
.decree-modal.active {
  display: flex;
  opacity: 1;
}
.decree-modal img {
  max-width: min(90vw, 800px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.decree-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: none;
  font-size: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.2s;
  backdrop-filter: blur(10px);
}
.decree-modal-close:hover {
  background: white;
  color: #0a0f1e;
  transform: rotate(90deg);
}


/* ===================================================================
   PULSE PLANET - SVG BAYRAK
   =================================================================== */
.pulse-planet > span.pp-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 14px;
  border-radius: 3px;
  overflow: hidden;
  margin-right: 6px;
  vertical-align: middle;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}
.pulse-planet > span.pp-flag svg {
  width: 100%;
  height: 100%;
  display: block;
}
.pulse-planet {
  display: inline-flex !important;
  align-items: center;
}
.pulse-planet > span.pp-name {
  font-size: inherit;
  vertical-align: middle;
}

/* Ana sayfa başkan kartı - gerçek fotoğraf */
.president-image-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Başkan fotoğrafı üzerine hafif koyu overlay (rol-tag ve sign okunaklı kalsın) */
.president-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.4) 100%);
  z-index: 2;
  pointer-events: none;
}
.president-image .role-tag,
.president-image .sign {
  z-index: 3 !important;
}

/* Başkan meta avatarı - gerçek foto ile */
.president-meta .avatar {
  overflow: hidden;
}
.president-meta .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===================================================================
   SAĞ-SOL REKLAM ALANLARI (sabit, sadece geniş ekranlarda)
   =================================================================== */
.side-ad-container {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 6px;
  pointer-events: none;  /* container tıklanamaz, içerik tıklanır */
}
.side-ad-left {
  left: 12px;
}
.side-ad-right {
  right: 12px;
}

.side-ad-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #94a3b8;
  text-align: center;
  padding: 3px 6px;
  background: rgba(241, 245, 249, 0.8);
  border-radius: 4px;
  backdrop-filter: blur(6px);
  pointer-events: auto;
}

.side-ad-container a,
.side-ad-container > div:not(.side-ad-label) {
  display: block;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: all 0.2s;
  pointer-events: auto;
  text-decoration: none;
}
.side-ad-container a:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.15);
}
.side-ad-container img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 600px;
  object-fit: cover;
}

/* Küçük ekranlarda reklamlar gizli (site içeriği ezilmesin) */
@media (max-width: 1400px) {
  .side-ad-container { display: none; }
}


/* ===================================================================
   MOBIL REKLAM - alt sabit, kapatılabilir
   =================================================================== */
.mobile-ad-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: white;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
  padding: 6px 40px 8px 12px;
}

.mobile-ad-label {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #94a3b8;
  text-align: center;
  margin-bottom: 3px;
}

.mobile-ad-body {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-ad-body a,
.mobile-ad-body > div {
  display: block;
  text-decoration: none;
  max-width: 100%;
  border-radius: 6px;
  overflow: hidden;
}
.mobile-ad-body img {
  max-width: 100%;
  max-height: 60px;
  height: auto;
  width: auto;
  display: block;
  object-fit: contain;
}

.mobile-ad-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  border: none;
  background: rgba(15, 23, 42, 0.85);
  color: white;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-weight: 600;
  transition: all 0.15s;
  padding: 0;
}
.mobile-ad-close:hover {
  background: #dc2626;
}

/* Sadece mobil ve tabletlerde mobil reklam */
@media (max-width: 900px) {
  .mobile-ad-container { display: block; }
  /* Footer alt reklam yerini tutması için body'ye padding */
  body { padding-bottom: 90px !important; }
}


/* ===================================================================
   MOBİL GENEL İYİLEŞTİRMELER (tüm ekranlar için)
   =================================================================== */

/* Mobilde font ve paddingler genel olarak daha küçük olmalı */
@media (max-width: 640px) {
  /* Container padding'i daha az olsun — ekran daralmasın */
  .container { padding-left: 16px; padding-right: 16px; }

  /* Hero başlığı çok büyük gelmesin */
  .hero h1 { font-size: clamp(32px, 9vw, 48px) !important; line-height: 1.1; }
  .hero .hero-lead { font-size: 15px !important; }

  /* Section başlıkları */
  .section-title { font-size: clamp(26px, 7vw, 40px) !important; line-height: 1.15; }

  /* Section padding'leri daha makul */
  .section { padding-block: 40px !important; }

  /* Card padding */
  .card, .panel { padding: 16px !important; }

  /* Buton genişlikleri */
  .btn { padding: 10px 18px; font-size: 13.5px; }

  /* Tablolarda scroll */
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .table { font-size: 13px; }

  /* Form alanları yeterince büyük olmalı (iOS auto-zoom engellemek için font-size >= 16px) */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="url"],
  input[type="password"],
  input[type="date"],
  input[type="number"],
  input[type="search"],
  textarea,
  select {
    font-size: 16px !important;
  }

  /* Mobil menüde modül çakışmaları */
  .header { padding: 10px 0; }

  /* Hero section minimum yükseklik limitlenmeli */
  .hero { min-height: auto !important; padding-block: 70px 50px; }

  /* Haberler mobilde tek sütun */
  .mhn-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .mhn-side { grid-template-columns: 1fr !important; }
  .mhn-card.mhn-big { min-height: 320px !important; aspect-ratio: 16/10 !important; }
  .mhn-side .mhn-small { aspect-ratio: 16/10 !important; }
  .mhn-side .mhn-small:nth-child(5) { aspect-ratio: 16/10 !important; }

  /* Başarı hikayeleri mobil */
  .story-card { padding: 24px 20px !important; }
  .story-text { font-size: 16px !important; }
  .story-nav { width: 40px; height: 40px; }
  .story-prev { left: 4px !important; }
  .story-next { right: 4px !important; }

  /* Üye kartı 3D mobilde */
  .mc-flip { transform: rotateY(0) rotateX(0) !important; max-width: 320px !important; }
  .mc-flip:hover:not(.flipped) { transform: rotateY(-3deg) rotateX(2deg) !important; }
  .mc-flip.flipped { transform: rotateY(180deg) !important; }

  /* Pulse planet (yörüngeler) küçük ekranda */
  .pulse-planet { font-size: 11px !important; padding: 6px 10px !important; }

  /* Kararname banner mobil */
  .decree-content { padding: 18px 16px !important; gap: 12px !important; }
  .decree-seal { width: 56px !important; height: 56px !important; }
  .decree-seal svg { width: 28px !important; height: 28px !important; }
  .decree-title { font-size: 16px !important; }
  .decree-desc { font-size: 12.5px !important; }
  .decree-btn { padding: 10px 18px !important; font-size: 12px !important; }

  /* Footer mobil */
  .footer-grid { grid-template-columns: 1fr !important; gap: 30px !important; }

  /* Mobil mapte fazla büyük olmasın */
  .turkey-map-container { max-width: 100% !important; }

  /* Topbar dark gizle (çok yer kaplıyor) */
  .topbar-minimal { display: none !important; }

  /* Hero slider kontrol butonları mobilde daha makul */
  .hero-slider-controls { bottom: 16px !important; }
}

/* Çok küçük ekranlar */
@media (max-width: 400px) {
  .container { padding-left: 12px; padding-right: 12px; }
  .hero h1 { font-size: 28px !important; }
  .section-title { font-size: 22px !important; }
  .logo-mark.has-image { max-width: 120px !important; height: 36px !important; }
}

/* Touch cihazlarda hover davranışları */
@media (hover: none) {
  /* Touch cihazlarda :hover efektleri kalıcı kalmasın */
  .btn:hover,
  .mc-cta:hover,
  .decree-btn:hover,
  .scalc-cta:hover,
  .story-nav:hover {
    transform: none;
  }
}

/* Yatay scroll engelleme güvencesi */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Tüm img'lerin responsive olmasını garanti et */
img {
  max-width: 100%;
  height: auto;
}

/* ===================================================================
   HERO - ANIMASYONLU GRADIENT
   =================================================================== */
.hero-bg-animated {
  animation: heroGradientFlow 15s ease infinite;
}

@keyframes heroGradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
