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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #1a1a1a;
  overflow-x: hidden;
}

/* ===== Erişilebilirlik: İçeriğe atla ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: #1a3a52;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ===== Site header – Battalgazi tarzı (Hızlı İşlemler yok) ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-top {
  background: rgba(15, 45, 74, 0.95);
  color: #fff;
}

.header-top-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-phone {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
}
.header-phone:hover {
  color: #7eb8da;
}

.header-social {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
.header-social:hover {
  color: #fff;
}

.nav-toggle {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.4rem 0.75rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}
.nav-toggle-icon {
  width: 20px;
  height: 16px;
  position: relative;
}
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
}
.nav-toggle-icon::before { top: 4px; }
.nav-toggle-icon::after { bottom: 4px; }

.header-main {
  background: rgba(22, 46, 68, 0.28);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.header-main-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.2rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 88px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.site-logo:hover {
  color: #fff;
  opacity: 0.9;
}

.site-logo-img {
  display: block;
  height: 88px;
  min-height: 88px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-logo-text {
  /* Sadece logo kullanacaksanız bu span'i HTML'den silebilir veya .site-logo-text { display: none; } yapın */
}

.main-nav .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 0.5rem 0.85rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.nav-dropdown {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  min-width: 220px;
  background: rgba(15, 45, 74, 0.98);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.nav-item.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
}
.nav-dropdown a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Mobil: menü butonu görünsün, masaüstü nav gizlensin */
@media (max-width: 991px) {
  .nav-toggle-text { display: none; }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: #0f2d4a;
    padding: 4rem 1rem 1rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  }
  .main-nav.is-open {
    transform: translateX(0);
  }
  .main-nav .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-item.has-dropdown .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    margin-top: 0.25rem;
    box-shadow: none;
  }
  .nav-item.has-dropdown.is-open .nav-dropdown {
    max-height: 400px;
    padding: 0.5rem 0;
  }
  .nav-dropdown a {
    padding-left: 1.5rem;
  }
  .nav-link {
    padding: 0.75rem 1rem;
  }
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }
}

/* ===== Hero banner – video background ===== */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Video yoksa veya yüklenemediyse arka plan */
.hero-banner .banner-video-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f2d4a 0%, #1a4d6e 50%, #0f2d4a 100%);
  z-index: 0;
}

.banner-video-wrap .banner-video {
  z-index: 1;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.25) 40%,
    rgba(0, 0, 0, 0.5) 100%
  );
  pointer-events: none;
}

/* Görsel olarak gizli, ekran okuyucu için görünür */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* İçerik – slogan, metin, arama kutusu ===== */
.banner-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 1.5rem;
  max-width: 720px;
  width: 100%;
}

.banner-title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.banner-title--typewriter {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: clamp(1.5rem, 4.5vw, 2.35rem);
  letter-spacing: 0.03em;
  min-height: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.05em;
}

.typewriter-text {
  display: inline;
}

.typewriter-cursor {
  display: inline-block;
  font-weight: 300;
  font-family: 'Source Sans 3', sans-serif;
  opacity: 1;
  animation: cursor-blink 0.8s step-end infinite;
}

@keyframes cursor-blink {
  50% { opacity: 0; }
}

/* Arama kutusu – sade, pill, ince çerçeve ===== */
.banner-assistant {
  margin-top: 2rem;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.banner-search {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.5rem;
  padding: 0.35rem 0.35rem 0.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 9999px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.banner-search:focus-within {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.search-input-wrap {
  flex: 1;
  min-width: 0;
  position: relative;
}

.search-placeholder-overlay {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding: 0 0.5rem 0 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1;
}

.search-placeholder-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.placeholder-prefix {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.placeholder-gap {
  display: inline-block;
  width: 0.5em;
  min-width: 0.5em;
}

.placeholder-rotate {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

.banner-search--assistant .banner-search-input {
  padding: 0.75rem 0;
}

.banner-search-input {
  flex: 1;
  min-width: 0;
  width: 100%;
  padding: 0.75rem 0.5rem 0.75rem 0;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  color: #fff;
}
.banner-search-input::placeholder {
  color: transparent;
}
.banner-search-input:focus {
  outline: none;
}

.banner-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: #1a5f8a;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}
.banner-search-btn:hover {
  background: #fff;
  color: #0f4a6e;
}
.banner-search-btn:focus {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.banner-search-icon {
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .banner-assistant {
    margin-top: 1.5rem;
  }
  .banner-search {
    padding: 0.3rem 0.3rem 0.3rem 1rem;
  }
  .banner-search--assistant .banner-search-input {
    padding: 0.65rem 0;
    font-size: 0.95rem;
  }
  .banner-search-btn {
    width: 40px;
    height: 40px;
  }
}

/* Aşağı kaydırma ipucu ===== */
.banner-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.banner-scroll-hint:hover {
  color: #fff;
  opacity: 1;
}

.scroll-icon {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  position: relative;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-icon::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50%  { transform: translateY(6px); }
}

/* Placeholder – sonraki bölümler ===== */
/* Hizmetlere hızlı erişim – carousel kutucuklar ===== */
.quick-menu {
  padding: 1rem 0 1.5rem;
  background: #eef0f2;
  border-bottom: 1px solid #e0e0e0;
}

.quick-menu-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto 1rem;
  padding: 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a3a52;
}

.quick-menu-title::before,
.quick-menu-title::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: #c4c4c4;
}

.quick-menu-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 0.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.quick-menu-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #5a5a5a;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.15s ease;
}
.quick-menu-btn:hover {
  background: #404040;
  transform: scale(1.05);
}
.quick-menu-btn:focus {
  outline: 2px solid #1a5f8a;
  outline-offset: 2px;
}

.quick-menu-track {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0;
  -webkit-overflow-scrolling: touch;
}
/* Scrollbar gizle – kaydırma çalışır, çizgi görünmez */
.quick-menu-track {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.quick-menu-track::-webkit-scrollbar {
  display: none;
}

.quick-menu-item {
  flex: 0 0 155px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.95rem 0.75rem;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.84rem;
  text-align: center;
  box-shadow: 0 6px 14px rgba(20, 30, 40, 0.12);
  transition: transform 0.2s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.quick-menu-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(15, 25, 35, 0.18);
}

/* Her kutu farklı renk */
.qm-color-1 { background: #5b6b8a; }
.qm-color-2 { background: #4a7c59; }
.qm-color-3 { background: #2d7a9f; }
.qm-color-4 { background: #b85c38; }
.qm-color-5 { background: #8b3a3a; }
.qm-color-6 { background: #6b5b95; }
.qm-color-7 { background: #1a5f8a; }
.qm-color-8 { background: #7b6b4a; }

.quick-menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.14);
}

.quick-menu-label {
  line-height: 1.2;
  color: #fff;
  letter-spacing: 0.01em;
  font-weight: 600;
  font-size: 0.9rem;
}

.quick-menu-desc {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.3;
}

/* Başkan görseli */
.mayor-spotlight {
  max-width: 1200px;
  margin: 1.25rem auto 0;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
  align-items: stretch;
}
.mayor-content {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(20, 30, 40, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mayor-message-card {
  padding: 0;
}
.mayor-message-banner {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 200px;
  overflow: hidden;
}
.mayor-message-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  background: #2f78b7;
  color: #fff;
  font-weight: 700;
}
.mayor-message-img-wrap {
  flex: 1;
  min-height: 0;
  position: relative;
  overflow: hidden;
}
.mayor-message-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mayor-message-title {
  font-size: 1rem;
}
.mayor-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.6rem;
  padding: 1rem;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(20, 30, 40, 0.16);
  border: 1px solid rgba(0, 0, 0, 0.08);
  width: 100%;
  min-width: 0;
}
.mayor-heading {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #1a3a52;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #1a5f8a;
}
.mayor-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid rgba(26, 95, 138, 0.2);
}
.mayor-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  align-items: flex-start;
  text-align: left;
}
.mayor-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b6b6b;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.mayor-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a3a52;
}

@media (max-width: 960px) {
  .mayor-spotlight {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .mayor-spotlight {
    padding: 0 1rem;
  }
  .mayor-card {
    justify-self: end;
    max-width: 360px;
  }
  .mayor-heading {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .quick-menu-carousel {
    gap: 0.5rem;
    padding: 0 0.25rem;
  }
  .quick-menu-btn {
    width: 38px;
    height: 38px;
  }
  .quick-menu-item {
    flex: 0 0 140px;
    padding: 0.85rem 0.55rem;
    font-size: 0.8rem;
  }
  .quick-menu-desc {
    font-size: 0.7rem;
  }
}

.site-main {
  min-height: 50vh;
  padding: 0 1.5rem 3rem;
  background: #f5f5f5;
}

.placeholder-text {
  margin: 0;
  text-align: center;
  color: #666;
}

/* Duyurular alanı */
.announcements-block {
  max-width: 1200px;
  margin: 1.25rem auto 0;
  padding: 0 1.5rem;
}
.announcements-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
  align-items: stretch;
}
.slider-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(20, 30, 40, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.slider-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  background: #2f78b7;
  color: #fff;
  font-weight: 700;
}
.slider-header-title {
  font-size: 1rem;
}
.slider-body {
  padding: 1rem;
}
.slider-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #eef3f6;
  min-height: 300px;
}
.slider-track {
  display: flex;
  transition: transform 0.4s ease;
}
.slider-slide {
  flex: 0 0 100%;
  min-width: 0;
}
.slider-image {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #1a3a52;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.slider-prev { left: 12px; }
.slider-next { right: 12px; }
.slider-dots {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  padding: 0.8rem 0 0.2rem;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d5dde5;
}
.slider-dot.is-active {
  width: 18px;
  background: #1a5f8a;
}

.announcements-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(20, 30, 40, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.announcements-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  background: #2f78b7;
  color: #fff;
  font-weight: 700;
}
.announcements-title {
  font-size: 1rem;
}
.announcements-list {
  padding: 0.6rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 340px;
  scroll-behavior: auto;
}
.announcement-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0.6rem;
  padding: 0.6rem 0.5rem;
  border-radius: 10px;
  background: #f6f8fb;
}
.announcement-type {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #e2eef7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.announcement-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1a3a52;
}
.announcement-date {
  font-size: 0.78rem;
  color: rgba(26, 58, 82, 0.7);
  margin-top: 0.2rem;
}

@media (max-width: 960px) {
  .announcements-inner {
    grid-template-columns: 1fr;
  }
  .announcements-list {
    max-height: 300px;
  }
}
@media (max-width: 640px) {
  .announcements-block {
    padding: 0 1rem;
  }
  .slider-body {
    padding: 0.75rem;
  }
}

/* Haberler alanı */
.news-block {
  max-width: 1200px;
  margin: 1.25rem auto 0;
  padding: 0 1.5rem;
}
.news-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
  align-items: stretch;
}
.news-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(20, 30, 40, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.news-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  background: #2f78b7;
  color: #fff;
  font-weight: 700;
}
.news-title {
  font-size: 1rem;
}
.news-list {
  padding: 0.6rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.news-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0.6rem;
  padding: 0.6rem 0.5rem;
  border-radius: 10px;
  background: #f6f8fb;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}
.news-item:hover {
  background: #eef3f8;
}
.news-item-img-wrap {
  flex-shrink: 0;
  width: 100px;
  height: 75px;
  border-radius: 8px;
  overflow: hidden;
  background: #e2eef7;
}
.news-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-item-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1a3a52;
}
.news-date {
  font-size: 0.78rem;
  color: rgba(26, 58, 82, 0.7);
  margin-top: 0.2rem;
}

.news-sidebar {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(20, 30, 40, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.news-sidebar-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  background: #2f78b7;
  color: #fff;
  font-weight: 700;
}
.news-sidebar-title {
  font-size: 1rem;
}
.news-sidebar-list {
  padding: 0.6rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.news-sidebar-item {
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  background: #f6f8fb;
  color: #1a3a52;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s ease;
}
.news-sidebar-item:hover {
  background: #eef3f8;
}

@media (max-width: 960px) {
  .news-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .news-block {
    padding: 0 1rem;
  }
  .news-item {
    grid-template-columns: 80px 1fr;
  }
  .news-item-img-wrap {
    width: 80px;
    height: 60px;
  }
}

/* Footer */
.site-footer {
  background: #0f2d44;
  color: #e6eef4;
  padding: 2.5rem 0 1.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand-title {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.footer-brand-desc {
  margin: 0.5rem 0 1rem;
  color: rgba(230, 238, 244, 0.85);
  line-height: 1.6;
}
.footer-title {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
}
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  color: rgba(230, 238, 244, 0.85);
}
.footer-list a {
  color: inherit;
  text-decoration: none;
}
.footer-list a:hover {
  color: #ffffff;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: rgba(230, 238, 244, 0.8);
}
.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 960px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
