/* ===== MBP v3 — Zafer Partisi Esinli Modern Tasarım ===== */
:root {
  --red:      #c8102e;
  --red-dk:   #9e0b22;
  --navy:     #1a1f36;
  --dark:     #222;
  --gray:     #666;
  --gray-lt:  #f5f6f8;
  --border:   #e4e6ea;
  --white:    #fff;
  --font:     'Roboto', 'Segoe UI', Arial, sans-serif;
  --radius:   4px;
  --shadow:   0 2px 16px rgba(0,0,0,.09);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: #333; background: #fff; font-size: 15px; line-height: 1.65; }
a { text-decoration: none; color: inherit; transition: color .2s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  font-size: 12px;
  padding: 0;
  position: relative;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.top-bar .slogan { font-size: 11.5px; letter-spacing: .2px; }
.top-bar .social-links { display: flex; gap: 2px; }
.top-bar .social-links a {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  padding: 0 10px; height: 38px;
  transition: background .2s, color .2s;
}
.top-bar .social-links a:hover { background: var(--red); color: #fff; }
.top-bar .social-links a i { font-size: 13px; }

/* ===== HEADER ===== */
.site-header { background: #fff; border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: center; padding: 14px 0; }
.site-logo { display: flex; align-items: center; gap: 14px; }
.site-logo img { height: 64px; width: auto; object-fit: contain; }
.logo-text strong { display: block; font-size: 17px; font-weight: 900; color: var(--navy); letter-spacing: .4px; line-height: 1.15; }
.logo-text span { font-size: 10.5px; color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; }

/* ===== NAV — Zafer Partisi style (white bg, red/dark links) ===== */
.nav-wrap { background: var(--red); border-bottom: none; position: sticky; top: 0; z-index: 900; box-shadow: 0 2px 12px rgba(200,16,46,.35); }
.nav-wrap .container { display: flex; align-items: center; justify-content: center; }
nav.main-nav ul.nav-list { display: flex; }
nav.main-nav ul.nav-list > li { position: relative; }
nav.main-nav ul.nav-list > li > a {
  display: flex; align-items: center; gap: 4px;
  color: #fff;
  padding: 14px 15px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: color .15s, border-color .15s, background .15s;
}
nav.main-nav ul.nav-list > li > a:hover,
nav.main-nav ul.nav-list > li.active > a { color: #fff; border-bottom-color: rgba(255,255,255,.7); background: rgba(0,0,0,.15); }
nav.main-nav .arrow { font-size: 8px; opacity: .6; }

/* Dropdown */
nav.main-nav .sub-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; min-width: 220px;
  box-shadow: 0 6px 30px rgba(0,0,0,.13);
  border-top: 3px solid var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 999;
}
nav.main-nav .has-children:hover > .sub-menu { display: block; }
nav.main-nav .sub-menu li a {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  font-size: 13px; color: #333;
  border-bottom: 1px solid #f5f5f5;
  transition: all .15s;
}
nav.main-nav .sub-menu li a:hover { color: var(--red); background: #fef5f7; padding-left: 22px; }
nav.main-nav .sub-menu li:last-child a { border-bottom: none; }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 1.5px solid var(--border); border-radius: 4px; cursor: pointer; padding: 8px 10px; margin-left: auto; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }

/* ===== HERO SLIDER — boxed container style ===== */
/* ===== BOXED SLIDER ===== */
.hero-slider-section { background: #fff; padding: 36px 0 44px; }

/* Oklar + slider yan yana — oklar SLIDER KUTUSUNUN DIŞINDA */
.hero-slider-outer {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Slider kutusu — boxed kart görünümü */
.hero-slider {
  position: relative;
  overflow: hidden;
  flex: 1;
  border-radius: 14px;
  box-shadow: 0 4px 28px rgba(0,0,0,.16);
}
.slider-track { display: flex; transition: transform .65s cubic-bezier(.4,0,.2,1); will-change: transform; }
.slider-slide { min-width: 100%; position: relative; }
.slider-slide img { width: 100%; height: 400px; object-fit: cover; object-position: center; display: block; }
.slider-slide a { display: block; }

/* Ok butonları — kare, kırmızı kenarlık, slider DIŞINDA */
.slider-arrow {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 8px;
  background: #fff;
  border: 2px solid var(--red);
  color: var(--red);
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s, color .18s;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.slider-arrow:hover { background: var(--red); color: #fff; }

/* Noktalar — slider altında, dışarıda, daire şeklinde */
.slider-dots { display: flex; justify-content: center; gap: 9px; margin-top: 18px; }
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none; cursor: pointer;
  transition: background .2s;
  padding: 0;
}
.slider-dot.active { background: var(--red); }

/* ===== QUICK LINKS — Zafer Partisi style ===== */
.quick-links { background: #fff; }
.quick-links-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 4px solid var(--red); }
.quick-link-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 32px 24px; text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 4px solid transparent;
  transition: border-color .25s, background .25s;
  color: #333; cursor: pointer; position: relative;
}
.quick-link-item:last-child { border-right: none; }
.quick-link-item:hover { border-bottom-color: var(--red); background: #fef8f9; }
.quick-link-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: #fff0f2; border: 2px solid #f5c6cf;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.quick-link-item:hover .quick-link-icon { background: var(--red); border-color: var(--red); }
.quick-link-icon i { font-size: 24px; color: var(--red); transition: color .3s; }
.quick-link-item:hover .quick-link-icon i { color: #fff; }
.quick-link-item h3 { font-size: 14px; font-weight: 700; color: var(--navy); letter-spacing: .3px; text-transform: uppercase; }

/* ===== SECTION BAŞLIKLARI ===== */
.section-wrap { padding: 56px 0; }
.section-wrap.bg-dark { background: var(--navy); }
.section-wrap.bg-light { background: var(--gray-lt); }
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; }
.section-title { position: relative; display: flex; align-items: center; gap: 12px; }
.section-title::before { content: ''; width: 5px; height: 100%; min-height: 26px; background: var(--red); border-radius: 3px; display: inline-block; flex-shrink: 0; }
.section-title h2 { font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -.2px; }
/* Centered title (Zafer Partisi "HABERLER" / "VİDEOLAR" style) */
.section-title-center { text-align: center; margin-bottom: 36px; }
.section-title-center h2 { font-size: 24px; font-weight: 900; color: var(--navy); text-transform: uppercase; letter-spacing: 2px; display: inline-flex; align-items: center; gap: 14px; }
.section-title-center h2::before, .section-title-center h2::after { content: ''; flex: 1; width: 50px; height: 3px; background: var(--red); border-radius: 2px; display: inline-block; }
.section-title-center.light h2 { color: #fff; }
.btn-see-all { font-size: 12px; font-weight: 700; color: var(--red); border: 2px solid var(--red); padding: 6px 18px; border-radius: 30px; transition: all .2s; white-space: nowrap; }
.btn-see-all:hover { background: var(--red); color: #fff; }

/* ===== VİDEOLAR BÖLÜMÜ ===== */
.videos-section { background: var(--navy); padding: 48px 0; }
.videos-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.video-card { position: relative; cursor: pointer; border-radius: 12px; overflow: hidden; background: #000; aspect-ratio: 16/9; }
.video-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s, opacity .3s; opacity: .85; }
.video-card:hover img { transform: scale(1.06); opacity: .6; }
.video-card .play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.video-card:hover .play-btn { background: rgba(200,16,46,.25); }
.video-card .play-btn i { font-size: 42px; color: #fff; filter: drop-shadow(0 2px 8px rgba(0,0,0,.5)); transition: transform .2s; }
.video-card:hover .play-btn i { transform: scale(1.15); }
.video-card .video-title { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px; font-size: 12px; font-weight: 600; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.8)); }
/* Video modal */
.video-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 9999; align-items: center; justify-content: center; }
.video-modal.open { display: flex; }
.video-modal .vm-inner { position: relative; width: 90vw; max-width: 900px; }
.video-modal iframe { width: 100%; height: 50.625vw; max-height: 506px; border: none; border-radius: var(--radius); }
.vm-close { position: absolute; top: -40px; right: 0; color: #fff; font-size: 32px; cursor: pointer; line-height: 1; opacity: .8; background: none; border: none; }
.vm-close:hover { opacity: 1; color: var(--red); }

/* ===== HABER KARTLARI — Zafer Partisi style ===== */
.news-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--border); }
.news-card {
  display: flex; flex-direction: column;
  border-right: 1px solid var(--border);
  transition: box-shadow .25s;
  background: #fff;
}
.news-card:last-child { border-right: none; }
.news-card:nth-child(4n) { border-right: none; }
.news-card:nth-child(n+5) { border-top: 1px solid var(--border); }
.news-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.1); z-index: 1; }
.news-card-img-wrap { position: relative; overflow: hidden; height: 180px; background: var(--gray-lt); flex-shrink: 0; }
.news-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.news-card:hover .news-card-img-wrap img { transform: scale(1.05); }
.news-card-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--red) 0%, var(--navy) 100%); display: flex; align-items: center; justify-content: center; }
.news-card-img-placeholder i { font-size: 40px; color: rgba(255,255,255,.25); }
.news-card-cat { position: absolute; top: 10px; left: 10px; background: var(--red); color: #fff; font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 2px; text-transform: uppercase; letter-spacing: .5px; }
.news-card-date { font-size: 11px; color: var(--red); font-weight: 600; margin-top: 12px; padding: 0 14px; }
.news-card-body { padding: 8px 14px 16px; flex: 1; display: flex; flex-direction: column; }
.news-card-title { font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.45; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-card-title a:hover { color: var(--red); }
.news-card-excerpt { font-size: 12.5px; color: #777; line-height: 1.6; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 12px; }
.news-card-link { font-size: 12px; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 4px; border-bottom: 1px solid transparent; transition: border-color .2s; }
.news-card-link:hover { border-bottom-color: var(--red); }

/* Featured news (big card) */
.news-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); margin-bottom: 0; }
.news-featured .news-card-big { position: relative; overflow: hidden; min-height: 400px; }
.news-featured .news-card-big img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.news-featured .news-card-big::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75) 40%, transparent 100%); }
.news-card-big-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; z-index: 1; color: #fff; }
.news-card-big-caption .date { font-size: 11px; color: var(--red); font-weight: 700; margin-bottom: 6px; }
.news-card-big-caption h3 { font-size: 18px; font-weight: 800; line-height: 1.35; }
.news-featured .news-small-list { display: flex; flex-direction: column; }
.news-small-item { display: flex; gap: 0; border-bottom: 1px solid var(--border); }
.news-small-item:last-child { border-bottom: none; }
.news-small-item .img-wrap { width: 120px; flex-shrink: 0; }
.news-small-item .img-wrap img { width: 100%; height: 90px; object-fit: cover; }
.news-small-item .body { padding: 12px; flex: 1; }
.news-small-item .body .date { font-size: 11px; color: var(--red); font-weight: 600; margin-bottom: 4px; }
.news-small-item .body h4 { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ===== KADRO CAROUSEL ===== */
.staff-carousel-wrap { position: relative; }
.staff-carousel { display: flex; gap: 0; overflow: hidden; }
.staff-card {
  min-width: calc(100% / 5);
  border: 1px solid var(--border);
  border-left: none;
  text-align: center;
  padding: 24px 16px;
  transition: all .25s;
  background: #fff;
  flex-shrink: 0;
}
.staff-card:first-child { border-left: 1px solid var(--border); }
.staff-card:hover { background: #fef5f7; border-color: var(--red); z-index: 1; }
.staff-card-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px; border: 3px solid var(--border); transition: border-color .25s; }
.staff-card:hover .staff-card-photo { border-color: var(--red); }
.staff-card-photo-placeholder { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--navy)); margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; }
.staff-card-photo-placeholder i { font-size: 32px; color: rgba(255,255,255,.7); }
.staff-card-name { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.staff-card-pos { font-size: 11.5px; color: #888; line-height: 1.4; }
.staff-card-proto { display: inline-block; background: var(--red); color: #fff; font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 2px; margin-top: 6px; text-transform: uppercase; letter-spacing: .5px; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%; background: var(--red); border: none; color: #fff; font-size: 14px; cursor: pointer; z-index: 5; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.carousel-btn:hover { background: var(--red-dk); }
.carousel-btn.prev { left: -18px; }
.carousel-btn.next { right: -18px; }

/* ===== PROTOCOL PROFİL SAYFASI ===== */
.protocol-hero { background: linear-gradient(135deg, var(--navy) 0%, #2d3561 100%); padding: 56px 0; }
.protocol-hero-inner { display: flex; gap: 40px; align-items: flex-start; }
.protocol-photo { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; border: 5px solid rgba(255,255,255,.25); flex-shrink: 0; }
.protocol-photo-placeholder { width: 180px; height: 180px; border-radius: 50%; background: rgba(255,255,255,.1); border: 5px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.protocol-photo-placeholder i { font-size: 70px; color: rgba(255,255,255,.4); }
.protocol-info { color: #fff; flex: 1; }
.protocol-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .5px; }
.protocol-name { font-size: 32px; font-weight: 900; margin-bottom: 6px; line-height: 1.2; }
.protocol-position { font-size: 16px; color: rgba(255,255,255,.75); margin-bottom: 20px; }
.protocol-contacts { display: flex; flex-wrap: wrap; gap: 12px; }
.protocol-contact-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,.7); }
.protocol-contact-item i { color: var(--red); }
.protocol-body { display: grid; grid-template-columns: 1fr 280px; gap: 40px; padding: 48px 0; }
.protocol-bio { font-size: 15px; line-height: 1.85; color: #444; }
.protocol-bio h2 { color: var(--navy); font-size: 20px; font-weight: 700; margin: 20px 0 10px; padding-left: 12px; border-left: 4px solid var(--red); }
.protocol-bio p { margin-bottom: 16px; }
.protocol-qr-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; }
.protocol-qr-box h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.protocol-qr-box img { width: 180px; height: 180px; margin: 0 auto 16px; }
.protocol-qr-box a { display: inline-flex; align-items: center; gap: 6px; background: var(--red); color: #fff; padding: 8px 20px; border-radius: 30px; font-size: 13px; font-weight: 700; }
.protocol-qr-box a:hover { background: var(--red-dk); }
.protocol-level-badge { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #888; margin-top: 12px; justify-content: center; }
.protocol-level-badge i { color: var(--red); }

/* ===== STAFF LİSTE SAYFASI ===== */
.staff-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.staff-list-card {
  background: #fff; border-radius: 10px; overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,.07); border: 2px solid transparent;
  transition: all .3s cubic-bezier(.4,0,.2,1); position: relative;
}
.staff-list-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.staff-list-card:hover { box-shadow: 0 12px 40px rgba(200,16,46,.15); border-color: var(--red); transform: translateY(-6px); }
.staff-list-card:hover::after { transform: scaleX(1); }
.staff-card-photo-wrap { width: 100%; aspect-ratio: 3/4; overflow: hidden; background: #f5f6fa; }
.staff-card-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .4s ease; display: block; }
.staff-list-card:hover .staff-card-photo-wrap img { transform: scale(1.05); }
.staff-card-photo-wrap .no-photo { width: 100%; height: 100%; background: linear-gradient(160deg,#f0f2f5,#e0e4ec); display: flex; align-items: center; justify-content: center; }
.staff-card-photo-wrap .no-photo i { font-size: 72px; color: rgba(26,31,54,.15); }
.staff-list-card .card-body { padding: 18px 14px; text-align: center; }
.staff-list-card h3 { font-size: 15px; font-weight: 800; color: var(--red); margin-bottom: 6px; line-height: 1.3; }
.staff-list-card p { font-size: 11px; color: #666; text-transform: uppercase; letter-spacing: .5px; line-height: 1.5; }
.staff-list-card .proto-tag { display: inline-flex; align-items: center; gap: 4px; background: var(--red); color: #fff; font-size: 9px; font-weight: 700; padding: 3px 10px; border-radius: 12px; text-transform: uppercase; letter-spacing: .5px; margin-top: 8px; }
.staff-list-card a.profile-link { display: inline-flex; align-items: center; gap: 5px; background: var(--navy); color: #fff; font-size: 12px; font-weight: 600; padding: 7px 16px; border-radius: 4px; margin-top: 10px; transition: background .2s; text-decoration: none; }
.staff-list-card a.profile-link:hover { background: var(--red); }

/* ===== SAYFA BANNER ===== */
.page-banner { background: var(--navy); padding: 40px 0; position: relative; overflow: hidden; }
.page-banner::before { content: ''; position: absolute; right: -40px; top: -40px; width: 200px; height: 200px; border: 30px solid rgba(200,16,46,.15); border-radius: 50%; }
.page-banner::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 4px; background: var(--red); }
.page-banner h1 { font-size: 28px; font-weight: 900; color: #fff; margin-bottom: 8px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,.55); }
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb i { font-size: 9px; }

/* ===== SAYFA İÇERİĞİ ===== */
.page-layout { display: grid; grid-template-columns: 1fr 270px; gap: 40px; padding: 48px 0 64px; }
.page-layout.wide { grid-template-columns: 1fr; }
.page-body { font-size: 15px; line-height: 1.85; color: #444; }
.page-body h1, .page-body h2, .page-body h3 { color: var(--navy); font-weight: 700; margin: 22px 0 10px; }
.page-body h2 { font-size: 19px; border-left: 4px solid var(--red); padding-left: 12px; }
.page-body p { margin-bottom: 15px; }
.page-body a { color: var(--red); text-decoration: underline; }
.page-body img { border-radius: var(--radius); margin: 16px auto; }
.page-body ul { padding-left: 20px; margin-bottom: 14px; list-style: disc; }
.page-body li { margin-bottom: 5px; }
.page-body table { width: 100%; border-collapse: collapse; margin-bottom: 18px; font-size: 14px; }
.page-body table th, .page-body table td { padding: 9px 14px; border: 1px solid var(--border); text-align: left; }
.page-body table th { background: var(--gray-lt); font-weight: 700; color: var(--navy); }

/* ===== SIDEBAR ===== */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.sidebar-box-title { background: var(--navy); color: #fff; padding: 11px 14px; font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.sidebar-box-title i { color: var(--red); }
.sidebar-box ul li a { display: flex; align-items: center; gap: 8px; padding: 9px 14px; font-size: 13px; color: #333; border-bottom: 1px solid #f5f5f5; transition: all .15s; }
.sidebar-box ul li a::before { content: '›'; color: var(--red); font-size: 16px; font-weight: 700; }
.sidebar-box ul li a:hover { color: var(--red); background: #fef5f7; padding-left: 20px; }
.sidebar-box ul li:last-child a { border-bottom: none; }

/* ===== HABER DETAY ===== */
.post-wrap { display: grid; grid-template-columns: 1fr 270px; gap: 40px; padding: 48px 0 64px; }
.post-title { font-size: 28px; font-weight: 800; color: var(--navy); line-height: 1.3; margin-bottom: 14px; }
.post-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 12px; color: #999; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 2px solid var(--border); }
.post-meta span { display: flex; align-items: center; gap: 5px; }
.post-meta i { color: var(--red); }
.post-cover { width: 100%; border-radius: var(--radius); margin-bottom: 26px; max-height: 460px; object-fit: cover; }
.post-content { font-size: 15px; line-height: 1.9; color: #3a3a3a; }
.post-content p { margin-bottom: 16px; }
.post-content img { border-radius: var(--radius); margin: 18px auto; }
.post-content h2, .post-content h3 { color: var(--navy); margin: 24px 0 12px; font-weight: 700; }
.post-content a { color: var(--red); text-decoration: underline; }

/* ===== GALERİ ===== */
.gallery-masonry { columns: 4; gap: 12px; }
.gallery-masonry .gallery-item { break-inside: avoid; margin-bottom: 12px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.gallery-item img { width: 100%; display: block; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .overlay { position: absolute; inset: 0; background: rgba(200,16,46,0); transition: background .3s; display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .overlay { background: rgba(200,16,46,.5); }
.gallery-item .overlay i { color: #fff; font-size: 26px; opacity: 0; transform: scale(.5); transition: all .3s; }
.gallery-item:hover .overlay i { opacity: 1; transform: scale(1); }

/* ===== LİGHTBOX ===== */
.lb-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.94); z-index: 9999; align-items: center; justify-content: center; }
.lb-overlay.open { display: flex; }
.lb-overlay img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); }
.lb-close { position: absolute; top: 20px; right: 24px; color: #fff; font-size: 34px; cursor: pointer; background: none; border: none; opacity: .8; }
.lb-close:hover { opacity: 1; color: var(--red); }
.lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); color: #fff; border: none; width: 50px; height: 50px; border-radius: 50%; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { background: var(--red); }

/* ===== İLETİŞİM ===== */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 56px 0 72px; }
.contact-form-title { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 22px; display: flex; align-items: center; gap: 10px; }
.contact-form-title i { color: var(--red); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #555; margin-bottom: 6px; }
.form-group label .req { color: var(--red); }
.form-input { width: 100%; padding: 10px 13px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 14px; font-family: var(--font); color: #333; background: #fff; transition: border-color .2s, box-shadow .2s; }
.form-input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,16,46,.1); }
.form-input::placeholder { color: #bbb; }
textarea.form-input { resize: vertical; min-height: 140px; }
.btn-submit { width: 100%; padding: 13px; background: var(--red); color: #fff; border: none; border-radius: var(--radius); font-size: 15px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background .2s; }
.btn-submit:hover { background: var(--red-dk); }
.contact-info-title { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.contact-info-title i { color: var(--red); }
.info-item { display: flex; gap: 14px; margin-bottom: 20px; }
.icon-wrap { width: 44px; height: 44px; background: #fff0f2; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-wrap i { color: var(--red); font-size: 16px; }
.info-item h5 { font-size: 12px; font-weight: 700; color: var(--navy); margin-bottom: 3px; text-transform: uppercase; letter-spacing: .5px; }
.info-item p, .info-item a { font-size: 14px; color: #666; }
.info-item a:hover { color: var(--red); }
.social-contact { display: flex; gap: 8px; margin-top: 16px; }
.social-contact a { width: 38px; height: 38px; background: var(--gray-lt); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #666; font-size: 15px; transition: all .2s; }
.social-contact a:hover { background: var(--red); color: #fff; }
.form-alert { padding: 12px 15px; border-radius: var(--radius); margin-bottom: 16px; font-size: 13.5px; display: flex; align-items: center; gap: 9px; }
.form-alert.ok { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.form-alert.err { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }

/* ===== BREADCRUMB BAR ===== */
.breadcrumb-bar { background: #f8f9fb; border-bottom: 1px solid var(--border); padding: 9px 0; font-size: 12px; color: #999; }
.breadcrumb-bar a { color: var(--red); }
.breadcrumb-bar .sep { margin: 0 5px; }

/* ===== ALERT ===== */
.alert { padding: 12px 16px; border-radius: var(--radius); margin-bottom: 18px; font-size: 14px; display: flex; align-items: center; gap: 9px; }
.alert-info { background: #e3f2fd; color: #1565c0; border: 1px solid #90caf9; }
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.alert-error { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }

/* ===== FOOTER — Zafer Partisi style ===== */
.site-footer { background: #1a1d2e; color: #9aa3be; border-top: 3px solid var(--red); }
.footer-top { padding: 56px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 48px; }

.footer-brand img { height: 80px; margin-bottom: 14px; filter: brightness(10) drop-shadow(0 2px 8px rgba(200,16,46,.4)); opacity: 1; }
.footer-brand p { font-size: 13px; line-height: 1.75; color: #9aa3be; max-width: 260px; }
.footer-tagline { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: #fff; font-weight: 700; margin-top: 12px; letter-spacing: .2px; }
.footer-tagline::before { content: ''; display: inline-block; width: 4px; height: 18px; background: var(--red); border-radius: 2px; flex-shrink: 0; }

.footer-social { display: flex; gap: 6px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #9aa3be; font-size: 14px; transition: all .2s; border: 1px solid rgba(255,255,255,.06); }
.footer-social a:hover { background: var(--red); color: #fff; border-color: var(--red); }

.footer-col h4 { font-size: 12px; font-weight: 800; color: #fff; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--red); letter-spacing: 1px; text-transform: uppercase; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; color: #9aa3be; display: flex; align-items: center; gap: 7px; transition: all .15s; }
.footer-col ul li a::before { content: '›'; color: var(--red); font-size: 16px; line-height: 1; }
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }

.footer-col .contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 13px; }
.footer-col .contact-item i { color: var(--red); margin-top: 2px; width: 14px; flex-shrink: 0; }
.footer-col .contact-item span, .footer-col .contact-item a { color: #9aa3be; line-height: 1.6; }
.footer-col .contact-item a:hover { color: var(--red); }

.footer-mid { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0; background: rgba(0,0,0,.15); }
.footer-mid .container { display: flex; justify-content: center; gap: 8px; }
.footer-mid a { width: 38px; height: 38px; background: rgba(255,255,255,.06); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #9aa3be; font-size: 15px; transition: all .2s; border: 1px solid rgba(255,255,255,.06); }
.footer-mid a:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-2px); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); text-align: center; padding: 16px 0; font-size: 12px; color: #555e7a; }

/* ===== 404 ===== */
.not-found { text-align: center; padding: 100px 20px; }
.not-found .code { font-size: 100px; font-weight: 900; color: var(--red); line-height: 1; opacity: .15; }
.not-found h2 { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.not-found p { color: var(--gray); margin-bottom: 28px; }
.btn-home { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; padding: 12px 30px; border-radius: 30px; font-weight: 700; font-size: 14px; transition: all .2s; }
.btn-home:hover { background: var(--red-dk); transform: translateY(-2px); }

/* ===== HABERLEr LİSTESİ (2'Lİ GRİD) ===== */
.news-list-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.nl-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.07); display: flex; flex-direction: column; transition: box-shadow .25s, transform .25s; }
.nl-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,.13); transform: translateY(-4px); }

.nl-img-wrap { position: relative; display: block; overflow: hidden; aspect-ratio: 16/9; background: #e8eaf0; flex-shrink: 0; }
.nl-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; display: block; }
.nl-card:hover .nl-img-wrap img { transform: scale(1.07); }

.nl-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--red), var(--navy)); display: flex; align-items: center; justify-content: center; }
.nl-img-placeholder i { font-size: 44px; color: rgba(255,255,255,.2); }

.nl-cat { position: absolute; top: 12px; left: 12px; background: var(--red); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 3px; text-transform: uppercase; letter-spacing: .4px; z-index: 2; }

.nl-img-overlay { position: absolute; inset: 0; background: rgba(200,16,46,.72); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s ease; z-index: 1; }
.nl-img-overlay span { color: #fff; font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 8px; border: 2px solid rgba(255,255,255,.7); padding: 10px 22px; border-radius: 30px; letter-spacing: .3px; }
.nl-card:hover .nl-img-overlay { opacity: 1; }

.nl-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.nl-meta { font-size: 11.5px; color: var(--red); font-weight: 600; margin-bottom: 8px; display: flex; align-items: center; gap: 5px; }
.nl-title { font-size: 15px; font-weight: 800; color: var(--navy); line-height: 1.45; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.nl-title a:hover { color: var(--red); }
.nl-excerpt { font-size: 13px; color: #777; line-height: 1.65; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 16px; }
.nl-read-more { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 700; color: var(--red); margin-top: auto; transition: gap .2s; }
.nl-read-more:hover { gap: 9px; }

.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 48px; flex-wrap: wrap; }
.page-btn { padding: 8px 16px; background: #fff; color: #444; border: 1px solid #ddd; border-radius: 5px; font-size: 13px; font-weight: 600; transition: all .2s; }
.page-btn:hover, .page-btn.active { background: var(--red); color: #fff; border-color: var(--red); }

/* ===== KADRO SAYFA DÜZENİ ===== */
.kadro-section-divider { display: flex; align-items: center; gap: 18px; margin: 56px 0 36px; }
.kadro-section-divider:first-child { margin-top: 0; }
.kadro-section-line { flex: 1; height: 2px; background: linear-gradient(90deg, var(--red), transparent); }
.kadro-section-divider .kadro-section-line:first-child { background: linear-gradient(270deg, var(--red), transparent); }
.kadro-section-label { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 900; color: var(--navy); white-space: nowrap; text-transform: uppercase; letter-spacing: 1px; }
.kadro-section-label i { color: var(--red); font-size: 18px; }
.kadro-section-divider--alt .kadro-section-label { color: var(--red); }
.kadro-group { margin-bottom: 48px; }
.kadro-group-title { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.kadro-group-bar { width: 5px; height: 28px; background: var(--red); border-radius: 3px; flex-shrink: 0; }
.kadro-group-title h2 { font-size: 17px; font-weight: 800; color: var(--navy); margin: 0; }
/* Kırmızı şerit başlık (kadro sayfası) */
.kadro-group-title-stripe {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 24px; border-radius: 8px; overflow: hidden;
  box-shadow: 0 3px 12px rgba(200,16,46,.18);
}
.kadro-group-stripe-icon {
  background: var(--red); color: #fff;
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.kadro-group-title-stripe h2 {
  margin: 0; font-size: 15px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  background: linear-gradient(90deg, #c8102e 0%, #a80c25 100%);
  color: #fff; padding: 0 22px; height: 42px; display: flex; align-items: center;
  flex: 1;
}

/* Kadro kart — Image #6 tasarımı */
.staff-list-card .card-position { font-size: 13px; font-weight: 800; color: var(--red); margin-bottom: 4px; line-height: 1.3; }
.staff-list-card h3 { font-size: 12px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 0; }

/* ===== PARTİ DÖKÜMANLAR ===== */
.pd-section-title { display: flex; align-items: center; gap: 18px; margin-bottom: 36px; }
.pd-section-title h2 { font-size: 22px; font-weight: 800; color: var(--navy); white-space: nowrap; display: flex; align-items: center; gap: 10px; }
.pd-section-title h2 i { color: var(--red); font-size: 20px; }
.pd-line { flex: 1; height: 2px; background: linear-gradient(90deg, var(--red), transparent); border-radius: 2px; }
.pd-section-title .pd-line:first-child { background: linear-gradient(270deg, var(--red), transparent); }

.pd-docs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.pd-doc-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.08); transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.pd-doc-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,.14); }
.pd-doc-cover { position: relative; height: 220px; background: #f0f2f5; overflow: hidden; }
.pd-doc-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.pd-doc-card:hover .pd-doc-cover img { transform: scale(1.04); }
.pd-doc-cover-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 56px; color: var(--red); opacity: .25; }
.pd-doc-badge { position: absolute; top: 12px; right: 12px; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; display: flex; align-items: center; gap: 5px; letter-spacing: .3px; }
.pd-doc-body { padding: 24px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.pd-doc-body h3 { font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.pd-doc-body p { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 20px; flex: 1; }
.pd-doc-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; padding: 11px 22px; border-radius: 8px; font-size: 14px; font-weight: 700; transition: background .2s, transform .2s; align-self: flex-start; }
.pd-doc-btn:hover { background: var(--red-dk); transform: translateY(-2px); }

.pd-gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.pd-gallery-item { position: relative; border-radius: 10px; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; background: #e0e3ea; }
.pd-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.pd-gallery-item:hover img { transform: scale(1.07); }
.pd-gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.38); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .25s; font-size: 26px; color: #fff; }
.pd-gallery-item:hover .pd-gallery-overlay { opacity: 1; }

/* ===== RESPONSIVE ===== */

/* --- Geniş Ekran (1440px+) --- */
@media (min-width: 1440px) {
  .container { max-width: 1400px; }
  .slider-slide img { height: 480px; }
  .hero-slider-section { padding: 44px 0 56px; }
  nav.main-nav ul.nav-list > li > a { padding: 16px 18px; font-size: 13.5px; }
  .videos-row { grid-template-columns: repeat(4,1fr); }
  .staff-carousel .staff-card { min-width: calc(100% / 6); }
  .footer-top { padding: 64px 0 48px; }
  .footer-grid { grid-template-columns: 2.2fr 1fr 1fr 1.3fr; gap: 60px; }
}

/* --- Tablet Geniş (1025px – 1240px) --- */
@media (max-width: 1240px) and (min-width: 1025px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; }
  .staff-grid { grid-template-columns: repeat(3,1fr); }
  .news-grid-4 { grid-template-columns: repeat(2,1fr); }
}

/* --- Tablet (769px – 1024px) --- */
@media (max-width: 1024px) and (min-width: 769px) {
  .container { padding: 0 24px; }
  nav.main-nav ul.nav-list > li > a { padding: 14px 10px; font-size: 12px; }
  .slider-slide img { height: 300px; }
  .hero-slider-section { padding: 24px 0 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .news-grid-4 { grid-template-columns: repeat(2,1fr); }
  .videos-row { grid-template-columns: repeat(3,1fr); }
  .staff-grid { grid-template-columns: repeat(3,1fr); }
  .staff-carousel .staff-card { min-width: calc(100% / 4); }
  .pd-docs-grid { grid-template-columns: 1fr 1fr; }
  .pd-gallery-grid { grid-template-columns: repeat(3,1fr); }
  .news-list-grid { grid-template-columns: 1fr 1fr; }
  .section-wrap { padding: 44px 0; }
}

/* --- Mobil (max 768px) --- */
@media (max-width: 768px) {
  .top-bar .slogan { display: none; }
  .site-logo img { height: 46px; }
  .logo-text strong { font-size: 13px; }
  .nav-toggle { display: flex; }
  nav.main-nav { display: none; width: 100%; }
  nav.main-nav.open { display: block; background: var(--navy); }
  .nav-wrap .container { flex-wrap: wrap; padding: 10px 20px; }
  nav.main-nav ul.nav-list { flex-direction: column; }
  nav.main-nav ul.nav-list > li > a { color: rgba(255,255,255,.9); padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 0; }
  nav.main-nav ul.nav-list > li > a:hover { color: #fff; border-bottom-color: rgba(255,255,255,.1); background: rgba(255,255,255,.07); }
  nav.main-nav .sub-menu { position: static; box-shadow: none; border-top: none; background: rgba(0,0,0,.25); }
  nav.main-nav .sub-menu li a { color: rgba(255,255,255,.75); padding-left: 28px; border-bottom-color: rgba(255,255,255,.07); }
  nav.main-nav .sub-menu li a:hover { background: rgba(0,0,0,.2); color: #fff; }

  .hero-slider-section { padding: 16px 0 24px; }
  .slider-slide img { height: 210px; }
  .hero-slider-outer { gap: 10px; }
  .slider-arrow { width: 34px; height: 34px; font-size: 13px; border-radius: 6px; }

  .quick-links-grid { grid-template-columns: 1fr; }
  .quick-link-item { flex-direction: row; gap: 16px; padding: 18px 20px; text-align: left; border-right: none; border-bottom: 1px solid var(--border); }

  .section-wrap { padding: 36px 0; }
  .news-grid-4 { grid-template-columns: 1fr; }
  .news-featured { grid-template-columns: 1fr; }
  .news-featured .news-card-big { min-height: 260px; }
  .videos-row { grid-template-columns: repeat(2,1fr); }
  .staff-carousel .staff-card { min-width: 50%; }
  .staff-grid { grid-template-columns: repeat(2,1fr); }
  .page-layout, .post-wrap, .contact-wrap, .protocol-body { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .gallery-masonry { columns: 2; }
  .pd-docs-grid { grid-template-columns: 1fr; gap: 20px; }
  .pd-gallery-grid { grid-template-columns: repeat(2,1fr); }
  .news-list-grid { grid-template-columns: 1fr; gap: 20px; }
  .protocol-hero-inner { flex-direction: column; align-items: center; text-align: center; }
  .protocol-contacts { justify-content: center; }
  .news-small-item .img-wrap { width: 90px; }
  .news-small-item .img-wrap img { height: 70px; }
}

/* --- Küçük Mobil (max 480px) --- */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero-slider-section { padding: 12px 0 18px; }
  .slider-slide img { height: 170px; }
  .slider-arrow { width: 30px; height: 30px; font-size: 11px; border-radius: 5px; }
  .hero-slider-outer { gap: 8px; }
  .staff-carousel .staff-card { min-width: 100%; }
  .staff-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 2; }
  .section-title-center h2 { font-size: 18px; letter-spacing: 1px; }
  .quick-link-item { padding: 14px 16px; }
  .quick-link-icon { width: 48px; height: 48px; }
  .quick-link-icon i { font-size: 20px; }
  .footer-top { padding: 36px 0 24px; }
  .page-banner h1 { font-size: 22px; }
  .news-small-item .img-wrap { display: none; }
  .videos-row { grid-template-columns: 1fr; }
}

/* ===== İLLERİMİZ HARİTA ===== */
.map-intro {
  text-align: center;
  margin-bottom: 24px;
}
.map-intro h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.map-intro p { color: #555; font-size: 15px; margin-bottom: 14px; }
.map-legend {
  display: flex;
  gap: 24px;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
}
.legend-item { display: flex; align-items: center; gap: 8px; }
.legend-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #bbb;
}
.active-legend .legend-dot { background: #c0392b; box-shadow: 0 0 0 1px #c0392b; }
.inactive-legend .legend-dot { background: #8e9bb5; box-shadow: 0 0 0 1px #8e9bb5; }

.turkey-map-wrap {
  position: relative;
  background: #dce8f5;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
#turkey-map {
  width: 100%;
  height: auto;
  display: block;
}
.province-shape {
  cursor: pointer;
  stroke: #fff;
  stroke-width: 0.4;
  stroke-linejoin: round;
  transition: filter .15s, opacity .15s;
}
.province-shape.active  { fill: #c0392b; }
.province-shape.inactive { fill: #8e9bb5; }
.province-shape:hover,
.province-shape:focus {
  filter: brightness(1.18) drop-shadow(0 2px 5px rgba(0,0,0,.4));
  outline: none;
  opacity: .88;
}

/* Province popup */
.province-popup {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
}
#province-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 2999;
}
.pp-inner {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px 28px;
  max-width: 380px;
  width: 92%;
  text-align: center;
  position: relative;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  z-index: 3001;
  animation: pp-in .2s ease;
}
@keyframes pp-in {
  from { opacity:0; transform: scale(.92) translateY(10px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}
.pp-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none; border: none;
  font-size: 24px; cursor: pointer;
  color: #999; line-height: 1;
}
.pp-close:hover { color: #c0392b; }
.pp-plate-badge {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  width: 56px; height: 56px;
  border-radius: 50%;
  line-height: 56px;
  text-align: center;
  margin: 0 auto 14px;
}
.pp-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: .04em;
}
.pp-status {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}
.pp-footer .btn-red-sm {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  transition: background .2s;
}
.pp-footer .btn-red-sm:hover { background: var(--red-dk); }

/* Active provinces list */
.active-provinces-section { margin-bottom: 32px; }
.ap-heading {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.ap-heading i { color: var(--red); margin-right: 6px; }
.active-provinces-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ap-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff8f7;
  border: 1px solid #f0c8c5;
  border-radius: 8px;
  padding: 8px 14px;
}
.ap-plate {
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ap-name { font-size: 13px; font-weight: 700; color: var(--navy); }

@media (max-width: 600px) {
  .pp-inner { padding: 28px 20px 22px; }
  .map-legend { flex-direction: column; align-items: center; gap: 10px; }
}

/* ===== DESTEK OL / ÖDEME SAYFASI ===== */
.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.payment-card {
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  background: #fff;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}
.payment-card.pm-active {
  cursor: pointer;
}
.payment-card.pm-active:hover,
.payment-card.pm-active.selected {
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(192,57,43,.12);
}
.payment-card.pm-active.selected {
  background: #fff8f7;
}
.payment-card.pm-disabled {
  cursor: not-allowed;
  opacity: .6;
  background: #f8f8f8;
}
.pm-disabled-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #e0e0e0;
  color: #888;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.pm-icon {
  font-size: 44px;
  color: var(--red);
  margin-bottom: 12px;
  line-height: 1;
}
.payment-card.pm-disabled .pm-icon { color: #bbb; }
.pm-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.payment-card.pm-disabled .pm-title { color: #aaa; }
.pm-desc { font-size: 13px; color: #777; }

/* Bank info box */
.bank-info-box {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 16px;
  background: #fff;
}
.bi-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 10px;
}
.bi-title i { margin-right: 6px; }
.bi-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}
.bi-rows { display: flex; flex-direction: column; gap: 10px; }
.bi-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.bi-row:last-child { border-bottom: none; padding-bottom: 0; }
.bi-label {
  font-weight: 700;
  color: #444;
  min-width: 120px;
  flex-shrink: 0;
}
.bi-val { color: #222; }
.bi-mono { font-family: 'Courier New', monospace; font-size: 15px; letter-spacing: .04em; }

/* IBAN boxes */
.iban-box {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 28px;
  margin-bottom: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.iban-currency {
  font-size: 15px;
  font-weight: 800;
  color: var(--red);
  min-width: 90px;
}
.iban-number {
  font-family: 'Courier New', monospace;
  font-size: 16px;
  letter-spacing: .05em;
  color: #222;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.iban-copy {
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  cursor: pointer;
  color: #888;
  font-size: 14px;
  transition: all .15s;
  flex-shrink: 0;
}
.iban-copy:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* Copy toast */
#copy-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #27ae60;
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  z-index: 9999;
}
#copy-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Legal notices */
.payment-legal {
  background: #f5f6f8;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  margin-top: 24px;
}
.legal-block { margin-bottom: 20px; }
.legal-block:last-child { margin-bottom: 0; }
.legal-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 8px;
}
.legal-block p { font-size: 13px; color: #555; line-height: 1.7; }

@media (max-width: 640px) {
  .payment-methods { grid-template-columns: 1fr; }
  .iban-box { flex-direction: column; align-items: flex-start; gap: 8px; }
  .iban-number { flex-direction: column; align-items: flex-start; }
  .bank-info-box, .iban-box, .payment-legal { padding: 18px 16px; }
  .bi-label { min-width: 90px; }
}

/* ===== ÜYE OL FORMU ===== */
.uye-form-doc {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  margin-bottom: 24px;
}
.ufd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px 20px;
  border-bottom: 2px solid var(--red);
  background: #f9f9f9;
}
.ufd-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ufd-logo img { width: 64px; height: auto; }
.ufd-logo-text strong { display: block; font-size: 13px; color: var(--navy); letter-spacing: .04em; }
.ufd-logo-text span  { font-size: 11px; color: #888; }
.ufd-date {
  text-align: right;
}
.ufd-date-label { font-size: 11px; color: #aaa; font-weight: 700; text-transform: uppercase; }
.ufd-date-val { font-size: 15px; font-weight: 700; color: var(--navy); letter-spacing: .05em; }

.ufd-title {
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: .08em;
  padding: 20px 32px 0;
}
.ufd-intro {
  padding: 16px 32px 20px;
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  border-bottom: 1px dashed #ddd;
}
.ufd-blank {
  display: inline-block;
  min-width: 120px;
  border-bottom: 1px solid #999;
  vertical-align: bottom;
}

.ufd-form { padding: 24px 32px 32px; }
.ufd-field { margin-bottom: 16px; }
.ufd-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
}
.req { color: var(--red); }
.ufd-input {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid #bbb;
  border-radius: 0;
  padding: 8px 4px;
  font-size: 14px;
  color: #222;
  background: transparent;
  font-family: inherit;
  transition: border-color .2s;
  outline: none;
}
.ufd-input:focus { border-bottom-color: var(--red); }
.ufd-input::placeholder { color: #bbb; font-style: italic; }
select.ufd-input {
  border: 1.5px solid #bbb;
  border-radius: 6px;
  padding: 8px 10px;
  background: #fff;
}
select.ufd-input:focus { border-color: var(--red); }
.ufd-textarea { resize: vertical; min-height: 72px; }
.ufd-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ufd-divider {
  border: none;
  border-top: 1px dashed #ddd;
  margin: 20px 0;
}

/* Signature */
.ufd-signature {
  padding: 20px 0;
  margin-top: 8px;
}
.ufd-signature-block {
  display: inline-block;
  min-width: 280px;
}
.ufd-sig-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
  text-align: center;
}
.ufd-sig-desc {
  font-size: 12px;
  color: #999;
  text-align: center;
  margin-bottom: 10px;
}
.ufd-sig-input {
  text-align: center;
  font-style: italic;
  font-weight: 700;
  border-top: none;
  border-left: none;
  border-right: none;
}

/* KVKK */
.ufd-kvkk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #555;
  margin: 16px 0;
  cursor: pointer;
  line-height: 1.5;
}
.ufd-kvkk input { margin-top: 2px; flex-shrink: 0; cursor: pointer; }

.ufd-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  font-family: inherit;
}
.ufd-submit:hover { background: var(--red-dk); }

/* Success */
.uye-success {
  text-align: center;
  padding: 60px 32px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #ddd;
  margin-bottom: 24px;
}
.us-icon { font-size: 56px; color: #27ae60; margin-bottom: 16px; }
.uye-success h2 { font-size: 24px; color: var(--navy); margin-bottom: 12px; }
.uye-success p { color: #555; font-size: 15px; max-width: 500px; margin: 0 auto; line-height: 1.7; }

/* Info box */
.uye-info-box {
  display: flex;
  gap: 16px;
  background: #f0f4ff;
  border: 1px solid #c5d3f0;
  border-radius: 12px;
  padding: 20px 24px;
  align-items: flex-start;
}
.uib-icon { font-size: 24px; color: #3a5fc8; flex-shrink: 0; margin-top: 2px; }
.uye-info-box strong { display: block; font-size: 14px; color: #1a2e6e; margin-bottom: 6px; }
.uye-info-box p { font-size: 13px; color: #555; line-height: 1.6; margin: 0; }

@media (max-width: 600px) {
  .ufd-header { flex-direction: column; gap: 12px; text-align: center; }
  .ufd-form, .ufd-intro, .ufd-title { padding-left: 18px; padding-right: 18px; }
  .ufd-row-2 { grid-template-columns: 1fr; gap: 0; }
  .ufd-signature-block { min-width: 100%; }
}

/* ===== AİDAT SAYFASI ===== */
.aidat-notice {
  background: var(--red);
  color: #fff;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 32px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.aidat-notice i { margin-top: 2px; flex-shrink: 0; font-size: 18px; }

.aidat-bank-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px;
}
.aidat-bank-title {
  font-size: 20px;
  font-weight: 800;
  color: #222;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.aidat-bank-box {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.abb-row {
  font-size: 14px;
  color: #333;
  display: flex;
  gap: 6px;
}
.abb-row strong { color: #111; min-width: 120px; }
.abb-row .mono { font-family: monospace; letter-spacing: .04em; }
.abb-iban {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding-top: 6px;
}
.iban-lbl { font-weight: 700; color: var(--red); min-width: 100px; }
.iban-val { font-family: monospace; color: #1a4ea6; font-size: 15px; letter-spacing: .03em; }
.iban-copy-sm {
  background: none; border: 1px solid #ddd; border-radius: 5px;
  padding: 2px 8px; cursor: pointer; color: #aaa; font-size: 12px;
  transition: all .15s;
}
.iban-copy-sm:hover { background: var(--red); color: #fff; border-color: var(--red); }
.abb-swift { font-size: 12px; color: #aaa; font-style: italic; padding-top: 4px; }

/* ===== KURUMSAL KİMLİK ===== */
.kk-docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.kk-doc-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .2s;
}
.kk-doc-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); }
.kk-doc-preview {
  height: 160px;
  background: #f5f6f8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.kk-doc-preview img { max-width: 85%; max-height: 85%; object-fit: contain; }
.kk-doc-icon { font-size: 52px; }
.kk-doc-icon.pdf { color: #e74c3c; }
.kk-doc-icon.file { color: #3498db; }
.kk-doc-body { padding: 14px 16px; }
.kk-doc-title { font-size: 14px; font-weight: 700; color: #222; margin-bottom: 10px; }
.kk-doc-dl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  padding: 7px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  transition: background .15s;
}
.kk-doc-dl:hover { background: var(--red-dk); color: #fff; }

@media (max-width: 600px) {
  .aidat-bank-wrap { padding: 18px 16px; }
  .abb-iban { flex-wrap: wrap; }
  .kk-docs-grid { grid-template-columns: 1fr 1fr; }
}
