/* ================================================================
   ANAHTAR PARTİ ÜSKÜDAR — Ana CSS
   Yarı-minimalist | Siyah · Mavi · Beyaz
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Tasarım Tokenleri ─────────────────────────────────────── */
:root {
  --navy: #0d1f3c;
  /* Koyu lacivert — ana renk           */
  --navy-dark: #0B1528;
  /* Çok koyu, footer/baskın alanlarda  */
  --blue: #1d5fc9;
  /* Canlı mavi — aksiyona çağrı        */
  --blue-light: #2d73e0;
  /* Hover mavi                         */
  --blue-pale: #e8f0fc;
  /* Arka plan aksan                    */
  --black: #0a0a0a;
  /* Metin için saf siyah               */
  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #f0f2f6;
  --gray-200: #e2e6ed;
  --gray-400: #9aa0ab;
  --gray-600: #5c6370;
  --text: #111827;
  --text-light: #6b7280;

  --font: 'Inter', system-ui, sans-serif;
  --font-serif: 'Merriweather', Georgia, serif;
  --r: 4px;
  /* Köşe yarıçapı — keskin, minimal    */
  --r-lg: 8px;
  --container: 1200px;
  --transition: 0.22s ease;

  /* Tipografi Ölçeği */
  --text-xs: 1.1rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
}

/* ── Reset ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
}

input,
textarea,
select {
  font-family: var(--font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
}


/* ── Yardımcı Sınıflar ─────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 50px 0;
}

.section-sm {
  padding: 48px 0;
}

/* Bölüm Başlıkları */
.section-header {
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-header .section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.section-header p {
  font-size: var(--text-base);
  color: var(--text-light);
  margin-top: 10px;
  max-width: 560px;
}

/* Çizgi Aksan — başlık altı */
.title-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}

.title-line h2 {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  white-space: nowrap;
}

.title-line::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--gray-200);
}

/* ── Butonlar ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(29, 95, 201, .35);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .6);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

/* ── HEADER ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
}

.site-header .container {
  max-width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  gap: 20px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-logo img {
  width: 280px;
  height: auto;
}

.logo-img {
  width: 280px;
  height: auto;
}

.logo-district {
  font-size: 37px;
  /* Logodan biraz daha büyük */
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
}


/* Ana Navigasyon */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav>ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2px;
}

.main-nav>ul>li {
  position: relative;
}

.main-nav>ul>li>a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  border-radius: var(--r);
  transition: all var(--transition);
  letter-spacing: 0.01em;
}

.main-nav>ul>li>a:hover,
.main-nav>ul>li>a.active {
  background: var(--blue-pale);
  color: var(--blue);
}

/* Dropdown oku */
.nav-arrow {
  font-size: 10px;
  opacity: .5;
  transition: transform var(--transition);
}

.has-sub:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menü */
.sub-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--blue);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  min-width: 230px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
  z-index: 100;
  overflow: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
}

.has-sub:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.sub-menu li a {
  display: block;
  padding: 11px 20px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.sub-menu li:last-child a {
  border-bottom: none;
}

.sub-menu li a:hover {
  background: var(--blue-pale);
  color: var(--blue);
  padding-left: 26px;
}

/* Header Sağ — CTA */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-cta {
  background: var(--blue);
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--r);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.header-cta:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}

/* Mobil Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO SLIDER ───────────────────────────────────────────── */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
  height: 560px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

/* Placeholder slide (görsel yokken) */
.hero-slide-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1a3560 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(7, 19, 31, .85) 0%,
      rgba(7, 19, 31, .5) 60%,
      rgba(7, 19, 31, .1) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 640px;
  color: var(--white);
}

.hero-tag {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r);
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

.hero-text p {
  font-size: var(--text-base);
  opacity: 0.85;
  margin-bottom: 28px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Slider Kontrol Okları */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.slider-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

/* Slider Nokta Göstergesi */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.slider-dot.active {
  background: var(--white);
  width: 24px;
  border-radius: 4px;
}

/* ── HABER KARTLARl ────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.news-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13, 31, 60, .12);
}

.news-card-img {
  aspect-ratio: 16 / 10;
  background: var(--gray-100);
  overflow: hidden;
  position: relative;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card-img img {
  transform: scale(1.04);
}

.news-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  color: var(--gray-400);
  font-size: 32px;
}

.news-card-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r);
}

.news-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: var(--text-xs);
  color: var(--text-light);
}

.news-card-meta .dot {
  color: var(--gray-400);
}

.news-card-body h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  transition: color var(--transition);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card:hover h3 {
  color: var(--blue);
}

.news-card-body p {
  font-size: var(--text-sm);
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-link {
  margin-top: 16px;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.news-card:hover .news-card-link {
  gap: 8px;
}

/* ── BÜYÜK HABER KARTI (öne çıkan) ─────────────────────────── */
.news-featured-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  align-items: stretch;
}


.news-featured-main {
  background: var(--navy-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.news-featured-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: .55;
}

.news-featured-main .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 19, 31, .9) 0%, transparent 55%);
}

.news-featured-main .card-content {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 32px 28px 28px;
  color: var(--white);
  background: linear-gradient(to top, rgba(7, 19, 31, 0.92) 0%, transparent 100%);
}

.news-featured-main .card-content h3 {
  font-family: var(--font);
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.news-featured-main .card-content p {
  font-family: var(--font);
  font-size: var(--text-sm);
  opacity: .85;
  line-height: 1.6;
  margin: 0;
}

.news-featured-side {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
}

.news-side-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex: 1;
  transition: all var(--transition);
  border-bottom: none;
}

.news-side-card:first-child {
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.news-side-card:last-child {
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  border-bottom: 1px solid var(--gray-200);
}

.news-side-card:hover {
  border-color: var(--blue);
  transform: translateX(4px);
}

.news-side-card .side-img {
  width: 110px;
  flex-shrink: 0;
  background: var(--gray-100);
  overflow: hidden;
}

.news-side-card .side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-side-card .side-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-side-card .side-body h3 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-side-card .side-body time {
  font-size: var(--text-xs);
  color: var(--text-light);
}

/* ── CTA BANNERLAR (Bağış / Üye Ol) ───────────────────────── */
.cta-section {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.cta-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cta-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  color: var(--white);
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: 40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .03);
}

.cta-banner:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

.cta-banner-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  position: relative;
  z-index: 1;
}

.cta-banner-text {
  position: relative;
  z-index: 1;
}

.cta-banner-text h3 {
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cta-banner-text p {
  font-size: var(--text-sm);
  opacity: .7;
}

.cta-banner-arrow {
  margin-left: auto;
  font-size: 24px;
  opacity: .5;
  position: relative;
  z-index: 1;
  transition: transform var(--transition);
}

.cta-banner:hover .cta-banner-arrow {
  transform: translateX(6px);
  opacity: 1;
}

/* CTA Form Card Styles */
.cta-form-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.cta-form-card.full-width {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .cta-form-card.full-width {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px;
  }

  .cta-form-card.full-width .cta-banner-text {
    width: auto;
    min-width: 250px;
    margin-right: 24px;
  }

  .cta-form-card.full-width .cta-inline-form {
    width: auto;
    flex: 1;
    justify-content: flex-end;
  }
}

.cta-form-card .cta-banner-text {
  width: 100%;
}

.cta-inline-form {
  display: flex;
  gap: 12px;
  width: 100%;
  z-index: 1;
  flex-wrap: nowrap;
}

@media (max-width: 767px) {
  .cta-inline-form {
    flex-wrap: wrap;
  }
}

.cta-form-input {
  flex: 1;
  min-width: 150px;
  padding: 10px 35px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: var(--text-sm);
  outline: none;
  transition: border-color var(--transition);
}

.cta-form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.cta-form-input:focus {
  border-color: var(--blue);
  background: rgba(255, 255, 255, 0.15);
}

.cta-form-btn {
  font-style: normal;
  padding: 25px 20px !important;
  font-size: var(--text-xs) !important;
  height: 40px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ── HARİTA / TEŞKİLAT BLOĞU ──────────────────────────────── */
.map-section {
  background: var(--white);
}

.map-wrapper {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: var(--text-sm);
  position: relative;
  overflow: hidden;
}

/* ── KONU KARTI (Politika) ─────────────────────────────────── */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.topic-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.topic-card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13, 31, 60, .1);
}

.topic-card-img {
  aspect-ratio: 16 / 9;
  background: var(--gray-100);
  overflow: hidden;
}

.topic-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.topic-card:hover .topic-card-img img {
  transform: scale(1.05);
}

.topic-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--gray-400);
}

.topic-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.topic-card-body h3 {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.topic-card-body p {
  font-size: var(--text-sm);
  color: var(--text-light);
  flex: 1;
  margin-bottom: 18px;
  line-height: 1.65;
}

.topic-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 1px;
  transition: all var(--transition);
}

.topic-card:hover .topic-link {
  color: var(--blue);
  border-color: var(--blue);
}

/* ── PAGİNASYON ────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}

.pagination a:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-pale);
}

.pagination .active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.pagination .disabled {
  opacity: .4;
  pointer-events: none;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, .8);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 56px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-placeholder {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-placeholder .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--blue);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
}

.footer-logo-placeholder .logo-text strong {
  color: var(--white);
  font-size: var(--text-base);
  font-weight: 800;
}

.footer-logo-placeholder .logo-text span {
  color: rgba(255, 255, 255, .5);
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
}

.footer-desc {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255, 255, 255, .55);
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-size: 15px;
  transition: all var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.footer-col h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  min-height: 50px;
  display: flex;
  align-items: flex-end;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, .6);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-col ul li {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, .55);
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, .35);
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .5);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ── BİZE ULAŞIN WİDGET (Sağ Alt Köşe) ───────────────────── */
.contact-widget {
  position: fixed;
  bottom: 0;
  right: 28px;
  z-index: 900;
}

.contact-widget-bubble {
  position: absolute;
  top: 30px;
  right: 125px;
  /* adamın kafasının sol üstü (büyütülmüş boyuta göre) */
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px 12px 0 12px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
  font-size: var(--text-sm);
  color: var(--navy);
  font-weight: 500;
  max-width: 220px;
  width: max-content;
  line-height: 1.45;

  /* Yumuşak geçiş için */
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px) scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.contact-widget-bubble.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.contact-widget-bubble p {
  margin-bottom: 2px;
}

.contact-widget-bubble strong {
  color: var(--blue);
}

.contact-widget-btn {
  position: relative;
  width: 170px;
  height: 320px;
  overflow: visible;
  cursor: pointer;
  transition: transform var(--transition);
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.contact-widget-btn:hover {
  transform: scale(1.08);
}

.contact-widget-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
}

.contact-widget-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--blue);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  text-align: center;
  padding: 3px 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── SAYFA BAŞLIĞI BANDI ───────────────────────────────────── */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(29, 95, 201, .15);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: var(--text-4xl);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, .6);
  margin-top: 12px;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, .6);
  transition: color var(--transition);
}

.page-hero .breadcrumb a:hover {
  color: var(--white);
}

.page-hero .breadcrumb .sep {
  color: rgba(255, 255, 255, .3);
}

/* ── HABER DETAY SAYFASI ───────────────────────────────────── */
.news-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.news-detail-content img {
  width: 100%;
  border-radius: var(--r-lg);
  margin-bottom: 32px;
}

.news-detail-body {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--text);
}

.news-detail-body h2,
.news-detail-body h3 {
  font-weight: 800;
  color: var(--navy);
  margin: 32px 0 16px;
  letter-spacing: -0.02em;
}

.news-detail-body p {
  margin-bottom: 18px;
}

.news-detail-body blockquote {
  border-left: 4px solid var(--blue);
  padding: 16px 24px;
  background: var(--blue-pale);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  font-style: italic;
  color: var(--navy);
  margin: 24px 0;
}

/* Sidebar */
.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sidebar-block {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.sidebar-block-header {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sidebar-block-body {
  padding: 16px 20px;
}

.sidebar-news-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}

.sidebar-news-item:last-child {
  border-bottom: none;
}

.sidebar-news-img {
  width: 70px;
  height: 55px;
  border-radius: var(--r);
  background: var(--gray-200);
  overflow: hidden;
  flex-shrink: 0;
}

.sidebar-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-news-title {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}

.sidebar-news-item:hover .sidebar-news-title {
  color: var(--blue);
}

/* ── İLETİŞİM FORMU ────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  font-size: var(--text-sm);
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 95, 201, .12);
}

.form-control.is-invalid {
  border-color: #dc2626;
}

.form-error {
  font-size: var(--text-xs);
  color: #dc2626;
  margin-top: 4px;
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

/* ── ALERT MESAJLARI ────────────────────────────────────────── */
.alert {
  padding: 14px 20px;
  border-radius: var(--r);
  font-size: var(--text-sm);
  margin-bottom: 20px;
  border-left: 4px solid transparent;
}

.alert-success {
  background: #f0fdf4;
  border-color: #22c55e;
  color: #166534;
}

.alert-error {
  background: #fef2f2;
  border-color: #ef4444;
  color: #991b1b;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .news-featured-grid {
    grid-template-columns: 1fr;
  }

  .news-featured-side {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .news-side-card {
    flex: 1 1 calc(50% - 8px);
  }

  .news-detail-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 420px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .logo-district {
    font-size: 24px;
  }

  .logo-img {
    height: 38px;
  }

  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .cta-banners {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .topics-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0 28px;
  }

  .contact-widget-btn {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 52px 0;
  }

  .container {
    padding: 0 16px;
  }

  .hero-slider {
    height: 340px;
  }

  .cta-banner {
    padding: 24px 20px;
    gap: 16px;
  }

  .cta-banner-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .cta-banner-text h3 {
    font-size: var(--text-lg);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-widget {
    bottom: 16px;
    right: 16px;
  }
}

/* ── MOBİL NAV (açıldığında) ────────────────────────────────── */
.main-nav.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 70px 0 0;
  background: var(--white);
  overflow-y: auto;
  z-index: 999;
  padding: 20px 24px;
  border-top: 1px solid var(--gray-200);
}

.main-nav.open>ul {
  flex-direction: column;
  gap: 0;
}

.main-nav.open>ul>li>a {
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: var(--text-base);
}

.main-nav.open .sub-menu {
  display: block !important;
  position: static;
  box-shadow: none;
  border: none;
  border-top: none;
  padding: 0 0 0 16px;
}

/* Yükleme Ekranı Stilleri */
#global-loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease;
  pointer-events: auto;
}

#global-loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-logo-container {
  width: 120px;
  height: auto;
  animation: pulseLogo 2s infinite ease-in-out;
}

.loading-logo-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@keyframes pulseLogo {
  0% {
    opacity: 0.2;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.2;
    transform: scale(0.95);
  }
}