html { scroll-behavior: smooth; }

.wave-line {
  background: linear-gradient(90deg, transparent, rgba(26, 84, 72, 0.35), transparent);
  height: 1px;
}

/* Fixed header */
.site-header {
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}
.site-header .header-top {
  max-height: 2.75rem;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.25s ease;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(90deg, #9b1d2e 0%, #7a1522 28%, #134038 65%, #0c2e27 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.site-header .header-top .mx-auto {
  min-height: 2.15rem;
  align-items: center;
}
.header-typewriter {
  margin: 0;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #c9b99a;
  white-space: nowrap;
  overflow: visible;
}
.header-typewriter-cursor {
  display: inline-block;
  width: 0.08em;
  height: 0.95em;
  margin-left: 2px;
  background: #c9b99a;
  vertical-align: -0.08em;
  animation: typeCaret 0.7s steps(1) infinite;
}
.header-typewriter.is-done .header-typewriter-cursor {
  opacity: 0.9;
}
@keyframes typeCaret {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .header-typewriter-cursor { animation: none; opacity: 0; }
}
.site-header .header-main {
  transition: padding 0.3s ease;
}
.site-header .header-logo,
.site-header .header-ataturk {
  transition: height 0.3s ease, width 0.3s ease, filter 0.3s ease;
}
.site-header .header-brand {
  transition: font-size 0.3s ease, color 0.3s ease;
}
.site-header .nav-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.95rem;
  height: 2.95rem;
  padding: 0;
  border: 0 !important;
  border-radius: 999px;
  cursor: pointer;
  color: #fff;
  background: transparent;
  box-shadow: none;
  transition: transform 0.25s ease, background 0.2s ease;
}
.site-header .nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}
.site-header .nav-toggle:active {
  transform: scale(0.94);
}
.site-header .nav-toggle:focus-visible {
  outline: 3px solid #c9b99a;
  outline-offset: 3px;
}
.nav-toggle-box {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.32rem;
  width: 1.15rem;
  height: 1rem;
}
.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease,
    width 0.3s ease;
}
.nav-toggle-bar:nth-child(1) { width: 100%; }
.nav-toggle-bar:nth-child(2) { width: 72%; }
.nav-toggle-bar:nth-child(3) { width: 88%; }
.site-header .nav-toggle:hover .nav-toggle-bar:nth-child(2),
.site-header .nav-toggle:hover .nav-toggle-bar:nth-child(3) {
  width: 100%;
}
/* Açık: X’e dönüş */
.site-header.is-open .nav-toggle,
.nav-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.1);
}
.site-header.is-open .nav-toggle-bar:nth-child(1),
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(calc(0.32rem + 2px)) rotate(45deg);
  width: 100%;
}
.site-header.is-open .nav-toggle-bar:nth-child(2),
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
  width: 100%;
}
.site-header.is-open .nav-toggle-bar:nth-child(3),
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(calc(-0.32rem - 2px)) rotate(-45deg);
  width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  .nav-toggle-bar { transition: none; }
}
@media (min-width: 1024px) {
  .site-header .nav-toggle {
    display: none !important;
  }
}

/* Mobil logo daha büyük */
.site-header .header-logo {
  height: 4.35rem;
  width: 4.35rem;
}
.site-header .header-ataturk {
  height: 3.35rem;
}
@media (min-width: 640px) {
  .site-header .header-logo {
    height: 3.5rem;
    width: 3.5rem;
  }
  .site-header .header-ataturk {
    height: 3.5rem;
  }
}

/* Scroll: aynı yeşil (#0c2e27), asla siyah değil */
.site-header.is-compact {
  background: #0c2e27;
  /* backdrop-filter fixed mega menüyü header’a bağlar — blur ayrı katmanda */
  box-shadow: 0 12px 32px -18px rgba(0, 0, 0, 0.45);
  color: #fff;
}
.site-header.is-compact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(12, 46, 39, 0.88);
}
/* Menü açıkken backdrop-filter containing block oluşturmasın */
.site-header.is-open {
  overflow: visible;
}
.site-header.is-open::before {
  display: none;
}
.site-header.is-compact .header-top {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}
.site-header.is-compact .header-main {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
.site-header.is-compact .header-logo {
  height: 2.85rem;
  width: 2.85rem;
}
.site-header.is-compact .header-ataturk {
  height: 2.65rem;
}
@media (max-width: 639px) {
  .site-header.is-compact .header-logo {
    height: 3.75rem;
    width: 3.75rem;
  }
  .site-header.is-compact .header-ataturk {
    height: 3.15rem;
  }
}
.site-header.is-compact .header-brand,
.site-header.is-compact a.flex {
  color: #ffffff !important;
}
.site-header.is-compact .header-sub {
  color: rgba(255, 255, 255, 0.65) !important;
}
.site-header.is-compact .nav-item > a,
.site-header.is-compact .nav-item > button {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: none;
}
.site-header.is-compact .nav-item > a:hover,
.site-header.is-compact .nav-item > button:hover {
  color: #c9b99a;
}
.site-header.is-compact .nav-toggle {
  color: #fff;
}

/* İç sayfa: koyu yeşil menü barı */
.site-header--solid {
  background: #0c2e27;
  box-shadow: 0 12px 32px -18px rgba(0, 0, 0, 0.45);
  color: #fff;
}
.site-header--solid .header-top {
  color: rgba(255,255,255,0.75);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header--solid .header-top a:hover { color: #fff; }
.site-header--solid .nav-item > a,
.site-header--solid .nav-item > button {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: none;
}
.site-header--solid .nav-item > a:hover,
.site-header--solid .nav-item > button:hover {
  color: #c9b99a;
}
.site-header--solid .nav-item.is-active > a {
  color: #e8c9a0;
}
.site-header--solid .nav-toggle {
  color: #fff;
}
.site-header--solid .header-brand {
  color: #ffffff;
}
.site-header--solid .header-sub {
  color: rgba(255, 255, 255, 0.65);
}
.site-header--solid.is-compact {
  background: #0c2e27;
}

/* Atatürk — her zaman ataturk.png */
.site-header .header-ataturk {
  mix-blend-mode: normal;
}

.header-spacer {
  height: 7.25rem;
  transition: height 0.3s ease;
}
@media (max-width: 639px) {
  .header-spacer { height: 6.5rem; }
}
.site-header--solid.is-compact ~ .header-spacer {
  height: 4.5rem;
}
@media (max-width: 639px) {
  .site-header--solid.is-compact ~ .header-spacer { height: 4.35rem; }
}
/* Desktop nav + full-screen mega menü */
.nav-item { position: relative; }
.nav-item > a,
.nav-item > button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.4rem 0.08rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.2s ease;
}
@media (min-width: 1280px) {
  .nav-item > a,
  .nav-item > button {
    font-size: 0.875rem;
    gap: 0.25rem;
    padding-left: 0.12rem;
    padding-right: 0.12rem;
  }
}
.nav-item > a::after,
.nav-item > button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.15rem;
  height: 2px;
  background: #c9b99a;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-item > a:hover,
.nav-item > button:hover,
.nav-item.is-mega-open > button,
.nav-item.is-active > a {
  color: #fff;
}
.nav-item > a:hover::after,
.nav-item > button:hover::after,
.nav-item.is-mega-open > button::after,
.nav-item.is-active > a::after {
  transform: scaleX(1);
}
.site-header--solid .nav-item > a::after,
.site-header--solid .nav-item > button::after,
.site-header.is-compact .nav-item > a::after,
.site-header.is-compact .nav-item > button::after {
  background: #c9b99a;
}

.mega-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: calc(var(--header-h, 5.5rem) - 2px);
  bottom: 0;
  z-index: 70;
  display: flex;
  background:
    linear-gradient(160deg, #061a16 0%, #0c2e27 48%, #134038 100%);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
/* Üst menü ↔ mega arasındaki boşluğu köprüle */
.mega-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -2.5rem;
  height: 2.5rem;
}
.nav-item.is-mega-open > .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
body.mega-open {
  overflow: hidden;
}
.mega-inner {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 2.25rem 0 3rem;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) 1.2fr;
  gap: 2.5rem;
  align-items: stretch;
}
.mega-inner--grid {
  grid-template-columns: 1fr;
}
.mega-feature {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-self: start;
  min-width: 0;
  max-width: 100%;
}
.mega-photo {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  height: 17.5rem;
  max-height: 17.5rem;
  overflow: hidden;
  border-radius: 1.25rem;
  background: #0c2e27;
}
.mega-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transform: none;
}
/* Başkan fotoğrafı dikey — menüde portre oranında çerçevele */
.mega-menu--baskan .mega-photo {
  width: min(100%, 17.5rem);
  height: auto;
  max-height: none;
  aspect-ratio: 3 / 4;
}
.mega-menu--baskan .mega-photo img {
  object-fit: cover;
  object-position: center 12%;
}
.nav-item.is-mega-open .mega-photo img {
  transform: none;
}
.mega-feature-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}
.mega-eyebrow {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9b99a;
}
.mega-feature-body h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.mega-lead {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 28rem;
}
.mega-feature-body blockquote {
  margin: 0.35rem 0 0;
  padding-left: 0.85rem;
  border-left: 3px solid #9b1d2e;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 600;
  color: #c9b99a;
}
.mega-section-title {
  margin: 0 0 1.1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9b99a;
}
.mega-link-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.mega-link-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.mega-link-grid a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.mega-link-grid a:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(201, 185, 154, 0.45);
  transform: translateY(-2px);
}
.mega-link-grid a span {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}
.mega-link-grid a small {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 1023px) {
  .mega-menu { display: none !important; }
}
@media (max-width: 900px) {
  .mega-inner {
    grid-template-columns: 1fr;
  }
  .mega-photo {
    height: 14rem;
    max-height: 14rem;
  }
  .mega-menu--baskan .mega-photo {
    width: min(100%, 15rem);
    height: auto;
    max-height: none;
    aspect-ratio: 3 / 4;
  }
  .mega-link-grid--3 { grid-template-columns: 1fr 1fr; }
}

/* Eski küçük dropdown (yedek) */
.submenu {
  display: none;
}

/* Mobil drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  background: rgba(6, 26, 22, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mobile-drawer.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
/* Masaüstü: mobil menü hiç görünmesin */
@media (min-width: 1024px) {
  .mobile-drawer,
  .mobile-drawer.is-open {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}
.mobile-drawer-inner {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  height: 100dvh;
  width: min(100%, 400px);
  overflow: hidden;
  background:
    linear-gradient(165deg, #f3f7f5 0%, #ffffff 42%, #f7f3ec 100%);
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -28px 0 60px -28px rgba(6, 26, 22, 0.55);
}
.mobile-drawer.is-open .mobile-drawer-inner {
  transform: translateX(0);
}

.mobile-drawer-top {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.15rem 1.25rem;
  background:
    linear-gradient(135deg, #0c2e27 0%, #134038 55%, #0c2e27 100%);
  color: #fff;
  overflow: hidden;
}
.mobile-drawer-top::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  width: 10rem;
  height: 10rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(155, 29, 46, 0.35) 0%, transparent 70%);
  pointer-events: none;
}
.mobile-drawer-brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}
.mobile-drawer-brand img {
  width: 2.85rem;
  height: 2.85rem;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.25));
}
.mobile-drawer-brand strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  font-style: normal;
}
.mobile-drawer-brand em {
  display: block;
  margin-top: 0.28rem;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.mobile-drawer-close {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.mobile-drawer-close:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: rotate(90deg);
}
.mobile-drawer-close svg {
  width: 1.1rem;
  height: 1.1rem;
}

.mobile-drawer-scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.15rem 1.15rem 1.5rem;
}

.mobile-quick {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
}
.mobile-quick-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.22rem;
  min-height: 4.5rem;
  padding: 0.95rem 1rem;
  border-radius: 1.2rem;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, transparent 45%),
    linear-gradient(125deg, #7a1522 0%, #9b1d2e 35%, #d13a4c 58%, #9b1d2e 100%);
  background-size: 100% 100%, 220% 220%;
  animation: ebeleShift 5s ease infinite;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 14px 28px -16px rgba(155, 29, 46, 0.75);
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  transition:
    opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.2s ease;
}
.mobile-quick-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 65%
  );
  transform: translateX(-130%);
  animation: ebeleShine 3.2s ease-in-out infinite;
  pointer-events: none;
}
.mobile-drawer.is-open .mobile-quick-btn {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.mobile-drawer.is-open .mobile-quick-btn:nth-child(1) { transition-delay: 0.05s; }
.mobile-drawer.is-open .mobile-quick-btn:nth-child(2) { transition-delay: 0.1s; }
.mobile-drawer.is-open.is-settled .mobile-quick-btn {
  transition-delay: 0s;
}
.mobile-drawer.is-open.is-settled .mobile-quick-btn:active {
  transform: scale(0.97);
  filter: brightness(1.05);
}
.mobile-quick-btn.is-soft {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16) 0%, transparent 45%),
    linear-gradient(135deg, #061a16 0%, #0c2e27 40%, #134038 70%, #0c2e27 100%);
  background-size: 100% 100%, 220% 220%;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 14px 28px -16px rgba(12, 46, 39, 0.6);
}
.mobile-quick-btn strong,
.mobile-quick-btn small {
  position: relative;
  z-index: 1;
}
.mobile-quick-btn strong {
  font-family: "Sora", system-ui, sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.mobile-quick-btn small {
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.82;
}

.mobile-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.mobile-nav-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
  min-height: 7.4rem;
  padding: 0.95rem 0.9rem 0.9rem;
  border-radius: 1.25rem;
  text-decoration: none;
  color: #0c2e27;
  background:
    linear-gradient(165deg, #ffffff 0%, #f4f8f6 100%);
  border: 1px solid rgba(12, 46, 39, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 14px 28px -20px rgba(12, 46, 39, 0.4);
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px) scale(0.92);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.42s ease;
}
.mobile-nav-link::before {
  content: "";
  position: absolute;
  right: -1.2rem;
  top: -1.2rem;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(12, 46, 39, 0.08) 0%, transparent 68%);
  pointer-events: none;
  transition: transform 0.35s ease, background 0.35s ease;
}
.mobile-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #9b1d2e, #c9b99a, transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}
.mobile-drawer.is-open .mobile-nav-link {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.mobile-drawer.is-open .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-drawer.is-open .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-drawer.is-open .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-drawer.is-open .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-drawer.is-open .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav-link:nth-child(5) {
  grid-column: 1 / -1;
  min-height: 5.4rem;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
}
.mobile-nav-link:nth-child(5) .mobile-nav-copy {
  flex: 1;
}
.mobile-drawer.is-open.is-settled .mobile-nav-link {
  transition-delay: 0s;
}
.mobile-drawer.is-open.is-settled .mobile-nav-link:hover,
.mobile-drawer.is-open.is-settled .mobile-nav-link:active {
  background: #fff;
  border-color: rgba(12, 46, 39, 0.14);
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 18px 32px -16px rgba(12, 46, 39, 0.42);
}
.mobile-drawer.is-open.is-settled .mobile-nav-link:hover::before {
  transform: scale(1.35);
  background: radial-gradient(circle, rgba(155, 29, 46, 0.14) 0%, transparent 68%);
}
.mobile-drawer.is-open.is-settled .mobile-nav-link:hover::after {
  transform: scaleX(1);
}
.mobile-nav-link.is-active {
  background: linear-gradient(165deg, #0c2e27 0%, #134038 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 16px 30px -16px rgba(12, 46, 39, 0.65);
}
.mobile-nav-link.is-active::before {
  background: radial-gradient(circle, rgba(201, 185, 154, 0.22) 0%, transparent 68%);
}
.mobile-nav-link.is-active::after {
  transform: scaleX(1);
  background: linear-gradient(90deg, #c9b99a, #9b1d2e, transparent);
}
.mobile-nav-link.is-active .mobile-nav-copy small {
  color: rgba(255, 255, 255, 0.65);
}
.mobile-nav-link.is-active .mobile-nav-ico {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}
.mobile-nav-ico {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  flex-shrink: 0;
  border-radius: 0.95rem;
  background: rgba(12, 46, 39, 0.08);
  color: #0c2e27;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s ease, color 0.25s ease;
}
.mobile-drawer.is-open .mobile-nav-ico {
  animation: mobileNavIcoIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.mobile-drawer.is-open .mobile-nav-link:nth-child(1) .mobile-nav-ico { animation-delay: 0.18s; }
.mobile-drawer.is-open .mobile-nav-link:nth-child(2) .mobile-nav-ico { animation-delay: 0.23s; }
.mobile-drawer.is-open .mobile-nav-link:nth-child(3) .mobile-nav-ico { animation-delay: 0.28s; }
.mobile-drawer.is-open .mobile-nav-link:nth-child(4) .mobile-nav-ico { animation-delay: 0.33s; }
.mobile-drawer.is-open .mobile-nav-link:nth-child(5) .mobile-nav-ico { animation-delay: 0.38s; }
@keyframes mobileNavIcoIn {
  0% { transform: scale(0.55) rotate(-12deg); opacity: 0; }
  70% { transform: scale(1.08) rotate(2deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
.mobile-drawer.is-open.is-settled .mobile-nav-link:hover .mobile-nav-ico {
  transform: scale(1.08) rotate(-4deg);
  background: #9b1d2e;
  color: #fff;
}
.mobile-nav-ico svg {
  width: 1.2rem;
  height: 1.2rem;
}
.mobile-nav-copy {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  width: 100%;
}
.mobile-nav-copy strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.mobile-nav-copy small {
  display: block;
  margin-top: 0.28rem;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(12, 46, 39, 0.5);
}
.mobile-nav-arrow {
  display: none;
}
.mobile-nav-link.is-active .mobile-nav-arrow {
  color: #c9b99a;
}

.mobile-section-label {
  margin: 1.45rem 0 0.65rem;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9b1d2e;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.mobile-drawer.is-open .mobile-section-label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.32s;
}

.mobile-accords {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.mobile-accord {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(12, 46, 39, 0.07);
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: 0 10px 22px -18px rgba(12, 46, 39, 0.35);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.4s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.2s ease;
}
.mobile-drawer.is-open .mobile-accord {
  opacity: 1;
  transform: translateY(0);
}
.mobile-drawer.is-open .mobile-accord:nth-child(1) { transition-delay: 0.34s; }
.mobile-drawer.is-open .mobile-accord:nth-child(2) { transition-delay: 0.39s; }
.mobile-drawer.is-open .mobile-accord:nth-child(3) { transition-delay: 0.44s; }
.mobile-drawer.is-open.is-settled .mobile-accord { transition-delay: 0s; }
.mobile-accord-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: #0c2e27;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.mobile-accord-btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: rgba(12, 46, 39, 0.4);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s ease;
}
.mobile-accord-btn[aria-expanded="true"] {
  color: #9b1d2e;
}
.mobile-accord-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
  color: #9b1d2e;
}
.mobile-accord-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  padding: 0 0.75rem 0.9rem;
}
.mobile-accord-panel.hidden { display: none; }
.mobile-accord-panel a {
  position: relative;
  padding: 0.8rem 0.7rem;
  border-radius: 0.85rem;
  background: linear-gradient(165deg, rgba(12, 46, 39, 0.05), rgba(12, 46, 39, 0.08));
  border: 1px solid transparent;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  color: #0c2e27;
  text-decoration: none;
  opacity: 0;
  transform: scale(0.94);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease,
    border-color 0.2s ease;
}
.mobile-accord-btn[aria-expanded="true"] + .mobile-accord-panel a {
  opacity: 1;
  transform: scale(1);
}
.mobile-accord-btn[aria-expanded="true"] + .mobile-accord-panel a:nth-child(1) { transition-delay: 0.02s; }
.mobile-accord-btn[aria-expanded="true"] + .mobile-accord-panel a:nth-child(2) { transition-delay: 0.06s; }
.mobile-accord-btn[aria-expanded="true"] + .mobile-accord-panel a:nth-child(3) { transition-delay: 0.1s; }
.mobile-accord-btn[aria-expanded="true"] + .mobile-accord-panel a:nth-child(4) { transition-delay: 0.14s; }
.mobile-accord-panel a:hover {
  color: #9b1d2e;
  background: rgba(155, 29, 46, 0.08);
  border-color: rgba(155, 29, 46, 0.14);
  transform: translateY(-2px) scale(1.02);
}

@media (prefers-reduced-motion: reduce) {
  .mobile-quick-btn,
  .mobile-quick-btn::before,
  .mobile-nav-link,
  .mobile-nav-ico,
  .mobile-section-label,
  .mobile-accord,
  .mobile-accord-panel a {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .mobile-quick-btn {
    background: #9b1d2e;
  }
  .mobile-quick-btn.is-soft {
    background: #0c2e27;
  }
}

.mobile-drawer-foot {
  flex-shrink: 0;
  padding: 0.95rem 1.15rem calc(1.1rem + env(safe-area-inset-bottom, 0px));
  background: rgba(12, 46, 39, 0.04);
  border-top: 1px solid rgba(12, 46, 39, 0.08);
}
.mobile-drawer-foot p {
  margin: 0;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(12, 46, 39, 0.55);
}
.mobile-drawer-foot a.mobile-foot-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.45rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0c2e27;
  text-decoration: none;
}
.mobile-drawer-foot a.mobile-foot-phone:hover {
  color: #9b1d2e;
}
.mobile-foot-social {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.75rem;
}
.mobile-foot-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: #0c2e27;
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}
.mobile-foot-social a:hover {
  background: #9b1d2e;
  transform: translateY(-2px);
}
.mobile-foot-social svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: currentColor;
}

/* İletişim haritası */
.contact-map-wrap {
  max-width: 100%;
}
.contact-map {
  position: relative;
  width: 100%;
  height: 220px;
  border: 1px solid rgba(12, 46, 39, 0.08);
}
.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.02) saturate(0.92);
}

/* nav-toggle open state: CSS bars morph (legacy svg hooks kept inert) */
.site-header.is-open .nav-toggle [data-icon-open],
.site-header.is-open .nav-toggle [data-icon-close] { display: none; }

/* Haber filtreleri */
.news-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.15rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid rgba(12, 46, 39, 0.1);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.news-filters::-webkit-scrollbar { display: none; }
.news-filter {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  padding: 0.85rem 1.05rem 1rem;
  border: 0;
  background: transparent;
  color: rgba(12, 46, 39, 0.48);
  cursor: pointer;
  transition: color 0.22s ease;
}
.news-filter::after {
  content: "";
  position: absolute;
  left: 1.05rem;
  right: 1.05rem;
  bottom: -1px;
  height: 2px;
  background: #9b1d2e;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-filter:hover {
  color: #0c2e27;
}
.news-filter.is-active {
  color: #0c2e27;
}
.news-filter.is-active::after {
  transform: scaleX(1);
}
.news-filter-name {
  font-family: "Zilla Slab", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.news-filter-count {
  min-width: 1.35rem;
  padding: 0.12rem 0.4rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(12, 46, 39, 0.4);
  background: rgba(12, 46, 39, 0.06);
  transition: background 0.22s ease, color 0.22s ease;
}
.news-filter.is-active .news-filter-count {
  background: rgba(155, 29, 46, 0.12);
  color: #9b1d2e;
}
.news-filter:hover .news-filter-count {
  background: rgba(12, 46, 39, 0.1);
}
[data-news-list] [data-cat].is-filtered-out {
  display: none;
}
.news-empty {
  padding: 3rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(12, 46, 39, 0.5);
}

/* Hızlı erişim marquee */
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 0.65rem;
  animation: marquee 40s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1.05rem;
  background: #fff;
  border: 1px solid rgba(12, 46, 39, 0.1);
  color: #0c2e27;
  font-size: 0.8125rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.marquee-chip time,
.marquee-date {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #9b1d2e;
  transition: color 0.2s ease;
}
.marquee-chip:hover {
  background: #9b1d2e;
  border-color: #9b1d2e;
  color: #fff;
}
.marquee-chip:hover time,
.marquee-chip:hover .marquee-date {
  color: rgba(255, 255, 255, 0.85);
}

/* Başkan sosyal */
.baskan-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}
.baskan-social-label {
  margin: 0 0.35rem 0 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(12, 46, 39, 0.45);
}
.baskan-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  background: rgba(12, 46, 39, 0.06);
  color: #0c2e27;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.baskan-social a:hover {
  background: #9b1d2e;
  color: #fff;
  transform: translateY(-2px);
}
.baskan-social a svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
}
.baskan-social--light .baskan-social-label {
  color: rgba(255, 255, 255, 0.55);
}
.baskan-social--light a {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.baskan-social--light a:hover {
  background: #c9b99a;
  color: #0c2e27;
}

/* Slider */
.slider-track { position: relative; height: 100%; }
.slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}
.slider-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.slider-slide.is-active img {
  animation: kenburns 14s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.slider-dot {
  height: 3px;
  width: 28px;
  background: rgba(255,255,255,0.35);
  transition: background 0.3s ease, width 0.3s ease;
}
.slider-dot.is-active {
  background: #fff;
  width: 44px;
}

/* Ana slider — yuvarlatılmış çerçeve */
.hero-shell {
  padding: 0 0 1.25rem;
  background: #f3f1ec;
}
@media (min-width: 768px) {
  .hero-shell {
    padding: 0.85rem 1rem 1.5rem;
  }
}
@media (min-width: 1100px) {
  .hero-shell {
    padding: 1rem 1.35rem 1.75rem;
  }
}
/* Anasayfa: menü şeffaf, slider en üstten başlar */
.page-home .site-header {
  background: transparent;
  box-shadow: none;
}
.page-home .site-header .header-top {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  border: 0;
}
/* Anasayfa mobil: üst şerit görünsün */
@media (max-width: 767px) {
  .page-home .site-header:not(.is-compact) .header-top {
    max-height: 2.75rem;
    opacity: 1;
    pointer-events: auto;
    overflow: visible;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
}
.page-home .site-header .header-main {
  padding-top: 1.65rem;
  padding-bottom: 0.95rem;
}
@media (max-width: 767px) {
  .page-home .site-header .header-main {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}
@media (min-width: 768px) {
  .page-home .site-header .header-main {
    padding-top: 2rem;
    padding-bottom: 1.1rem;
  }
}
.page-home .site-header.is-compact {
  background: #0c2e27;
  box-shadow: 0 12px 32px -18px rgba(0, 0, 0, 0.45);
}
.page-home .site-header.is-open:not(.is-compact) {
  background: rgba(6, 26, 22, 0.92);
}
.page-home .site-header.is-mega,
.site-header.is-mega {
  background: #0c2e27;
  /* mega ile birleşik dursun — gölge çizgi gibi görünmesin */
  box-shadow: none;
  overflow: visible;
}
.site-header.is-mega::before {
  display: none;
}
.page-home .site-header.is-compact .header-main {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
.page-home .site-header ~ .hero-shell {
  padding-top: 0;
}
@media (min-width: 768px) {
  .page-home .site-header ~ .hero-shell {
    padding-top: 0.85rem;
  }
}
@media (min-width: 1100px) {
  .page-home .site-header ~ .hero-shell {
    padding-top: 1rem;
  }
}

.site-slider.hero-frame {
  position: relative;
  height: 100svh;
  min-height: 28rem;
  max-height: 52rem;
  border-radius: 0 0 1.15rem 1.15rem;
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
  background: #061a16;
  box-shadow: 0 24px 50px -28px rgba(6, 26, 22, 0.55);
}
.site-slider.hero-frame:active {
  cursor: grabbing;
}
@media (min-width: 768px) {
  .site-slider.hero-frame {
    height: calc(100svh - 1.7rem);
    min-height: 32rem;
    border-radius: 1.75rem;
  }
}
@media (min-width: 1100px) {
  .site-slider.hero-frame {
    border-radius: 2rem;
  }
}
.hero-frame-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 26, 22, 0.45) 0%, transparent 28%, transparent 42%, rgba(6, 26, 22, 0.78) 100%),
    linear-gradient(90deg, rgba(6, 26, 22, 0.4) 0%, transparent 45%);
}

.hero-ui {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.15rem;
  padding: 1.25rem 1rem 1.15rem;
  pointer-events: none;
}
.hero-ui > * { pointer-events: auto; }
@media (min-width: 768px) {
  .hero-ui {
    padding: 2rem 2rem 2.75rem;
    gap: 1.35rem;
  }
}
@media (min-width: 1100px) {
  .hero-ui {
    padding: 2.5rem 2.75rem 3.25rem;
    gap: 1.5rem;
  }
}

.hero-copy {
  max-width: 38rem;
  margin: 0;
  text-align: center;
}
/* Mobil: sloganı hızlı işlemlerin daha üstüne al */
@media (max-width: 767px) {
  .site-slider.hero-frame {
    --hero-slogan-bottom: 18.25rem;
  }
  .hero-copy {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: var(--hero-slogan-bottom);
    z-index: 6;
    transform: translateX(-50%);
    width: min(38rem, calc(100% - 2rem));
    text-align: center;
  }
}
@media (min-width: 768px) {
  .site-slider.hero-frame {
    --hero-slogan-bottom: 14.75rem;
  }
  .hero-copy {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: var(--hero-slogan-bottom);
    z-index: 6;
    transform: translateX(-50%);
    text-align: center;
    width: min(38rem, calc(100% - 4rem));
  }
}
@media (min-width: 900px) {
  .site-slider.hero-frame {
    --hero-slogan-bottom: 16.25rem;
  }
  .hero-copy {
    width: min(42rem, calc(100% - 8rem));
  }
}
@media (min-width: 1100px) {
  .site-slider.hero-frame {
    --hero-slogan-bottom: 17rem;
  }
}

/* Slider göstergeleri — her ekranda nokta */
.hero-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.15rem 0 0;
  position: relative;
  z-index: 14;
  padding: 0.4rem 0.55rem;
  border-radius: 999px;
  width: fit-content;
  align-self: center;
  background: rgba(6, 26, 22, 0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-progress button {
  width: 0.55rem;
  height: 0.55rem;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: width 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}
.hero-progress button.is-active {
  width: 1.55rem;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
}
@media (min-width: 900px) {
  .hero-progress {
    position: absolute;
    right: 2.75rem;
    bottom: 1.65rem;
    left: auto;
    align-self: auto;
    margin: 0;
    justify-content: flex-start;
  }
}

.hero-copy .hero-brand {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 4.25rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.9),
    0 2px 10px rgba(0, 0, 0, 0.75),
    0 12px 32px rgba(0, 0, 0, 0.55);
}
.hero-copy .hero-title {
  margin: 0.4rem 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.45rem, 3.2vw, 2.25rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #fff;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.9),
    0 2px 10px rgba(0, 0, 0, 0.75),
    0 10px 28px rgba(0, 0, 0, 0.5);
  min-height: 1.2em;
}
.hero-copy .hero-text {
  margin: 0.75rem auto 0;
  max-width: 28rem;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.95),
    0 2px 8px rgba(0, 0, 0, 0.8),
    0 8px 22px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(0.35rem);
  transition: opacity 0.45s ease 0.35s, transform 0.45s ease 0.35s;
}
.hero-copy .hero-text.is-shown {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .hero-copy .hero-text {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
@media (min-width: 768px) {
  .hero-bottom {
    margin-top: 0;
    margin-bottom: 0.35rem;
    padding: 0;
    gap: 1.15rem;
  }
}
@media (min-width: 900px) {
  .hero-bottom {
    margin-bottom: 0.75rem;
    gap: 1.35rem;
  }
}
.hero-quick {
  display: flex;
  justify-content: safe center;
  gap: 0.55rem;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding: 0.15rem 0.1rem 0.35rem;
  margin: 0 auto;
  width: 100%;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  cursor: grab;
}
.hero-quick.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.hero-quick::-webkit-scrollbar {
  height: 4px;
}
.hero-quick::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}
@media (min-width: 1100px) {
  .hero-quick {
    justify-content: center;
    overflow: visible;
    cursor: default;
    scroll-snap-type: none;
  }
}
.hero-quick-btn {
  flex: 0 0 auto;
  min-width: 10rem;
  width: 10rem;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.96);
  color: #0c2e27;
  text-decoration: none;
  border: 0;
  box-shadow: 0 12px 28px -16px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  -webkit-user-drag: none;
  user-select: none;
}
.hero-quick-btn:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 16px 32px -14px rgba(0, 0, 0, 0.5);
}
.hero-quick-btn.is-accent {
  background: #9b1d2e;
  color: #fff;
}
.hero-quick-btn.is-accent:hover {
  background: #7a1522;
}
.hero-quick-ico {
  display: flex;
  width: 1.55rem;
  height: 1.55rem;
  flex-shrink: 0;
  color: #9b1d2e;
}
.hero-quick-btn.is-accent .hero-quick-ico { color: #fff; }
.hero-quick-ico svg { width: 100%; height: 100%; }
.hero-quick-btn strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
}
.hero-quick-btn small {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.62rem;
  font-weight: 500;
  opacity: 0.65;
}
.hero-quick-btn.is-accent small { opacity: 0.85; }

.hero-search {
  display: flex;
  align-items: stretch;
  gap: 0.55rem;
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 0 0 1.15rem;
  border-radius: 999px;
  background: #fff;
  border: 0;
  overflow: hidden;
  box-shadow: 0 14px 34px -18px rgba(0, 0, 0, 0.4);
}
.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 0.88rem;
  font-weight: 500;
  color: #0c2e27;
}
.hero-search input::placeholder {
  color: rgba(12, 46, 39, 0.45);
}
.hero-search button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.35rem;
  min-height: 2.85rem;
  margin: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  cursor: pointer;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, transparent 45%),
    linear-gradient(120deg, #7a1522 0%, #9b1d2e 28%, #d13a4c 52%, #9b1d2e 78%, #7a1522 100%);
  background-size: 100% 100%, 220% 220%;
  animation: ebeleShift 5s ease infinite;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset;
  transition: filter 0.2s ease;
}
.hero-search button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 65%
  );
  transform: translateX(-130%);
  animation: ebeleShine 3.4s ease-in-out infinite;
  pointer-events: none;
}
.hero-search button:hover {
  filter: brightness(1.08);
}
.hero-search button svg {
  position: relative;
  z-index: 1;
  width: 1.15rem;
  height: 1.15rem;
}
@media (prefers-reduced-motion: reduce) {
  .hero-search button,
  .hero-search button::before { animation: none; }
  .hero-search button { background: #9b1d2e; }
}

.hero-nav {
  position: absolute;
  top: auto;
  /* Slogan bloğunun dikey ortası */
  bottom: calc(var(--hero-slogan-bottom, 15rem) + 4.25rem);
  z-index: 12;
  display: none;
  align-items: center;
  justify-content: center;
  width: 3.15rem;
  height: 3.15rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px -14px rgba(0, 0, 0, 0.45);
  transform: translateY(-50%);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}
@media (min-width: 900px) {
  .hero-nav { display: flex; }
}
.hero-nav:hover {
  background: #fff;
  color: #0c2e27;
  border-color: #fff;
  transform: translateY(-50%) scale(1.06);
}
.hero-nav svg { width: 1.2rem; height: 1.2rem; }
.hero-nav.prev { left: var(--hero-nav-left, 2.35rem); right: auto; }
.hero-nav.next { right: var(--hero-nav-right, 2.35rem); left: auto; }
@media (min-width: 1100px) {
  .hero-nav.prev { left: var(--hero-nav-left, 2.85rem); }
  .hero-nav.next { right: var(--hero-nav-right, 2.85rem); }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-slider:not(.hero-frame) {
  height: 100vh;
  min-height: 100vh;
  height: 100svh;
  min-height: 100svh;
  height: 100dvh;
  min-height: 100dvh;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
@media (min-width: 768px) {
  .site-slider:not(.hero-frame) {
    height: 90vh;
    min-height: 90vh;
    height: 90svh;
    min-height: 90svh;
    height: 90dvh;
    min-height: 90dvh;
  }
}
.slider-caption {
  padding-bottom: 7.5rem;
}

.slider-scroll {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.35s ease;
  z-index: 25;
}
.slider-scroll:hover { color: #c9b99a; }
.slider-scroll.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.slider-scroll-mouse {
  width: 1.35rem;
  height: 2.15rem;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 0.35rem;
}
.slider-scroll-wheel {
  width: 0.22rem;
  height: 0.4rem;
  border-radius: 999px;
  background: currentColor;
  animation: scrollWheel 1.6s ease-in-out infinite;
}
.slider-scroll-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.slider-scroll-chevron {
  width: 1.15rem;
  height: 1.15rem;
  animation: scrollChev 1.6s ease-in-out infinite;
}
/* Masaüstü: Keşfet tamamen gizli */
@media (min-width: 768px) {
  .slider-scroll {
    display: none;
  }
}
@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(8px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
@keyframes scrollChev {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(4px); opacity: 1; }
}
@media (max-width: 767px) {
  .slider-caption {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
  }
  .slider-controls {
    bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  }
  .slider-scroll-mouse,
  .slider-scroll-label {
    display: none;
  }
  .slider-scroll-chevron {
    width: 1.55rem;
    height: 1.55rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .slider-scroll-wheel,
  .slider-scroll-chevron { animation: none; }
}

.page-hero {
  background-image:
    linear-gradient(160deg, rgba(6, 26, 22, 0.88), rgba(19, 64, 56, 0.72)),
    url('../img/slider-1.jpg');
  background-size: cover;
  background-position: center;
}

.back-top {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 55;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 3rem;
  min-width: 3rem;
  padding: 0 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18) 0%, transparent 42%),
    linear-gradient(120deg, #7a1522 0%, #9b1d2e 28%, #d13a4c 52%, #9b1d2e 78%, #7a1522 100%);
  background-size: 100% 100%, 220% 220%;
  animation: ebeleShift 5s ease infinite;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.94);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease,
    filter 0.22s ease,
    box-shadow 0.22s ease,
    bottom 0.25s ease,
    right 0.25s ease,
    padding 0.22s ease;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 12px 28px -12px rgba(155, 29, 46, 0.95),
    0 0 0 3px rgba(155, 29, 46, 0.12);
}
.back-top::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 65%
  );
  transform: translateX(-130%);
  animation: ebeleShine 3.4s ease-in-out infinite;
  pointer-events: none;
}
.back-top-ico,
.back-top-label {
  position: relative;
  z-index: 1;
}
.back-top-ico {
  display: inline-flex;
  width: 1.15rem;
  height: 1.15rem;
}
.back-top-ico svg {
  width: 100%;
  height: 100%;
  transition: transform 0.25s ease;
}
.back-top-label {
  display: none;
  font-family: "Poppins", "Sora", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .back-top {
    right: 3.25rem;
    padding: 0 1.05rem 0 0.85rem;
  }
  .back-top-label { display: inline; }
}
@media (max-width: 767px) {
  .back-top { bottom: 1.15rem; }
}
.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.back-top:hover {
  filter: brightness(1.06);
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 16px 32px -12px rgba(155, 29, 46, 1),
    0 0 0 4px rgba(155, 29, 46, 0.16);
}
.back-top:hover .back-top-ico svg {
  transform: translateY(-2px);
}
.back-top:active {
  transform: scale(0.96);
}
@media (prefers-reduced-motion: reduce) {
  .back-top,
  .back-top::before { animation: none; }
  .back-top { background: #9b1d2e; }
}

/* E-Belediye */
.btn-ebele {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.32rem 1.1rem 0.32rem 0.35rem;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18) 0%, transparent 42%),
    linear-gradient(120deg, #7a1522 0%, #9b1d2e 28%, #d13a4c 52%, #9b1d2e 78%, #7a1522 100%);
  background-size: 100% 100%, 220% 220%;
  animation: ebeleShift 5s ease infinite;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 10px 26px -12px rgba(155, 29, 46, 0.95),
    0 0 0 3px rgba(155, 29, 46, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}
.btn-ebele::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 65%
  );
  transform: translateX(-130%);
  animation: ebeleShine 3.4s ease-in-out infinite;
  pointer-events: none;
}
.btn-ebele:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 14px 32px -12px rgba(155, 29, 46, 1),
    0 0 0 4px rgba(155, 29, 46, 0.16);
}
.btn-ebele:active {
  transform: translateY(0);
}
.btn-ebele-mouse {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  animation: ebeleMouseBounce 1.6s ease-in-out infinite;
}
.btn-ebele-mouse svg {
  width: 0.95rem;
  height: 0.95rem;
}
.btn-ebele-wheel {
  animation: ebeleWheel 1.6s ease-in-out infinite;
}
.btn-ebele > :not(.btn-ebele-mouse) {
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) {
  .btn-ebele { display: inline-flex; }
}
@keyframes ebeleShift {
  0% { background-position: 0% 0%, 0% 50%; }
  50% { background-position: 0% 0%, 100% 50%; }
  100% { background-position: 0% 0%, 0% 50%; }
}
@keyframes ebeleShine {
  0%, 55% { transform: translateX(-130%); }
  75%, 100% { transform: translateX(130%); }
}
@keyframes ebeleMouseBounce {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(2px); }
  60% { transform: translateY(-1px); }
}
@keyframes ebeleWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(2.5px); opacity: 0.35; }
}
@media (prefers-reduced-motion: reduce) {
  .btn-ebele,
  .btn-ebele::before,
  .btn-ebele-mouse,
  .btn-ebele-wheel { animation: none; }
  .btn-ebele {
    background: #9b1d2e;
  }
}

/* Sosyal + arama */
.header-tools {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}
@media (max-width: 639px) {
  [data-header-top] .mx-auto > p {
    max-width: 58%;
    overflow: hidden;
    white-space: nowrap;
  }
  [data-header-top] .mx-auto > div {
    gap: 0.55rem;
  }
  [data-header-top] a[href="iletisim.html"] {
    display: none;
  }
}
.social-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.social-links a {
  display: flex;
  height: 1.7rem;
  width: 1.7rem;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s ease, background 0.2s ease;
}
@media (min-width: 640px) {
  .social-links a {
    height: 1.75rem;
    width: 1.75rem;
  }
}
.social-links a:hover {
  color: #c9b99a;
}
.social-links svg {
  height: 0.9rem;
  width: 0.9rem;
  fill: currentColor;
}
@media (min-width: 640px) {
  .social-links svg {
    height: 0.95rem;
    width: 0.95rem;
  }
}
.tool-btn {
  position: relative;
  display: inline-flex;
  height: 2.35rem;
  width: 2.35rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  padding: 0;
  cursor: pointer;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18) 0%, transparent 42%),
    linear-gradient(120deg, #7a1522 0%, #9b1d2e 28%, #d13a4c 52%, #9b1d2e 78%, #7a1522 100%);
  background-size: 100% 100%, 220% 220%;
  animation: ebeleShift 5s ease infinite;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 8px 20px -10px rgba(155, 29, 46, 0.9),
    0 0 0 3px rgba(155, 29, 46, 0.12);
  transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
}
/* Üst bar: arama ikonu şeride sığsın */
.header-tools .tool-btn {
  height: 1.55rem;
  width: 1.55rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 3px 8px -4px rgba(155, 29, 46, 0.85);
}
.header-tools .tool-btn:hover {
  transform: scale(1.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 4px 10px -4px rgba(155, 29, 46, 0.95);
}
.header-tools .tool-btn:active {
  transform: scale(0.96);
}
.header-tools .tool-btn svg {
  height: 0.78rem;
  width: 0.78rem;
}
.tool-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 65%
  );
  transform: translateX(-130%);
  animation: ebeleShine 3.4s ease-in-out infinite;
  pointer-events: none;
}
.tool-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px) scale(1.04);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 12px 26px -10px rgba(155, 29, 46, 1),
    0 0 0 4px rgba(155, 29, 46, 0.16);
}
.tool-btn:active {
  transform: scale(0.96);
}
.tool-btn svg {
  position: relative;
  z-index: 1;
  height: 1.05rem;
  width: 1.05rem;
}
@media (prefers-reduced-motion: reduce) {
  .tool-btn,
  .tool-btn::before { animation: none; }
  .tool-btn { background: #9b1d2e; }
}

/* Arama — ortalanmış popup */
.search-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(6, 26, 22, 0.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.search-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.search-panel {
  width: min(100%, 34rem);
  max-height: min(84vh, 38rem);
  display: flex;
  flex-direction: column;
  border-radius: 1.35rem;
  overflow: hidden;
  background: #0c2e27;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 28px 60px -24px rgba(0, 0, 0, 0.65);
  transform: translateY(16px) scale(0.96);
  opacity: 0;
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease;
}
.search-modal.is-open .search-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.search-panel-inner {
  width: 100%;
  margin: 0;
  padding: 1.35rem 1.25rem 1.4rem;
  overflow: auto;
}
@media (min-width: 640px) {
  .search-panel-inner {
    padding: 1.55rem 1.5rem 1.6rem;
  }
}
.search-panel-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.35rem 0.15rem 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.search-panel-head .search-ico {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(155, 29, 46, 0.92);
  box-shadow: 0 8px 18px -10px rgba(155, 29, 46, 0.9);
}
.search-panel-head .search-ico svg {
  display: block;
  height: 1.05rem;
  width: 1.05rem;
}
.search-panel-head input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #fff;
  background: transparent;
  caret-color: #c9b99a;
}
.search-panel-head input::placeholder {
  color: rgba(255, 255, 255, 0.42);
  font-weight: 400;
}
.search-panel-head input::-webkit-search-decoration,
.search-panel-head input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.search-close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.15rem;
  width: 2.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.search-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}
.search-close svg {
  height: 1.05rem;
  width: 1.05rem;
}
.search-hint {
  margin: 0.95rem 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.search-hint.is-warn { color: #e8c9a0; }
.search-results {
  max-height: min(42vh, 320px);
  overflow-y: auto;
  margin-top: 0.35rem;
  padding-right: 0.15rem;
}
.search-results a {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.85rem;
  align-items: baseline;
  padding: 0.9rem 0.35rem;
  margin: 0 -0.35rem;
  border-radius: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: background 0.15s ease, padding-left 0.2s ease;
}
.search-results a:last-child {
  border-bottom: 0;
}
.search-results a:hover {
  background: rgba(255, 255, 255, 0.06);
  padding-left: 0.55rem;
}
.search-results a:hover .sr-title {
  color: #c9b99a;
}
.search-results .sr-type {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201, 185, 154, 0.85);
  padding-top: 0.2rem;
  min-width: 4.5rem;
}
.search-results .sr-body {
  min-width: 0;
}
.search-results .sr-title {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.15s ease;
}
.search-results .sr-text {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.48);
}
.search-empty {
  padding: 1.75rem 0 0.5rem;
  text-align: left;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}
@media (prefers-reduced-motion: reduce) {
  .search-panel {
    transition: none;
    transform: none;
  }
  .search-modal.is-open .search-panel {
    transform: none;
  }
}

/* Duyurular + İhale — iki sütun kart düzeni */
.announce-section {
  padding: 1.25rem 1rem;
}
@media (min-width: 768px) {
  .announce-section {
    padding: 1.5rem 1.5rem;
  }
}
@media (min-width: 1100px) {
  .announce-section {
    padding: 1.75rem 1.5rem;
  }
}
.announce-shell {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
  padding: 1.5rem 1.15rem;
  background: #eef3f1;
  border-radius: 1.35rem;
  align-items: start;
}
.announce-col {
  min-width: 0;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .announce-shell {
    grid-template-columns: 1.55fr 1fr;
    gap: 2rem;
    padding: 1.75rem;
  }
}
.announce-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.announce-head h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #0c2e27;
  line-height: 1.15;
}
.announce-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #0c2e27;
  transition: color 0.2s ease;
}
.announce-all:hover { color: #9b1d2e; }
.announce-all-ico {
  width: 0;
  height: 0;
  border-top: 0.32rem solid transparent;
  border-bottom: 0.32rem solid transparent;
  border-left: 0.48rem solid #9b1d2e;
}
.announce-grid {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 768px) {
  .announce-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.announce-stack {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 1024px) {
  .announce-stack {
    gap: 1rem;
  }
}
/* Mobil: duyurular / ihaleler yatay kaydırma (sayfa taşmadan) */
@media (max-width: 767px) {
  .announce-section {
    overflow-x: clip;
  }
  .announce-shell {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
  }
  .announce-grid,
  .announce-stack {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    padding: 0.15rem 0 0.55rem;
    margin: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(12, 46, 39, 0.35) transparent;
  }
  .announce-grid::-webkit-scrollbar,
  .announce-stack::-webkit-scrollbar {
    height: 4px;
  }
  .announce-grid::-webkit-scrollbar-thumb,
  .announce-stack::-webkit-scrollbar-thumb {
    background: rgba(12, 46, 39, 0.28);
    border-radius: 999px;
  }
  .announce-grid .announce-card,
  .announce-stack .announce-card {
    flex: 0 0 auto;
    box-sizing: border-box;
    width: 85%;
    max-width: 17.5rem;
    min-width: 14.5rem;
    scroll-snap-align: start;
  }
}
.announce-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 5.25rem;
  padding: 0.85rem 2.6rem 0.85rem 0.85rem;
  background: #fff;
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px -18px rgba(12, 46, 39, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.announce-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -16px rgba(12, 46, 39, 0.4);
}
.announce-date {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 3.55rem;
  min-height: 3.55rem;
  padding: 0.45rem 0.35rem;
  border-radius: 0.85rem;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  text-align: center;
  line-height: 1;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16) 0%, transparent 42%),
    linear-gradient(135deg, #061a16 0%, #0c2e27 32%, #134038 58%, #0c2e27 82%, #061a16 100%);
  background-size: 100% 100%, 220% 220%;
  animation: ebeleShift 5s ease infinite;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 8px 18px -12px rgba(12, 46, 39, 0.65);
}
.announce-date::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 65%
  );
  transform: translateX(-130%);
  animation: ebeleShine 3.4s ease-in-out infinite;
  pointer-events: none;
}
.announce-date strong,
.announce-date span {
  position: relative;
  z-index: 1;
}
.announce-date strong {
  font-family: "Sora", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.announce-date span {
  margin-top: 0.28rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.88;
}
@media (prefers-reduced-motion: reduce) {
  .announce-date,
  .announce-date::before { animation: none; }
  .announce-date { background: #0c2e27; }
}
.announce-title {
  margin: 0;
  flex: 1;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0c2e27;
}
.announce-go {
  position: absolute;
  right: 0.85rem;
  bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: #0c2e27;
  color: #fff;
}
.announce-go svg {
  width: 0.72rem;
  height: 0.72rem;
}
.announce-card:hover .announce-go {
  background: #9b1d2e;
}

/* Sağ sosyal medya şeridi */
/* Sağ sosyal medya şeridi — E-Belediye dilinde */
.social-rail {
  display: none;
  position: fixed;
  top: 50%;
  right: 0.65rem;
  z-index: 55;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.45rem;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.16) 0%, transparent 42%),
    linear-gradient(160deg, #7a1522 0%, #9b1d2e 32%, #c42a3d 58%, #9b1d2e 82%, #7a1522 100%);
  background-size: 100% 100%, 220% 220%;
  animation: ebeleShift 5s ease infinite;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 14px 32px -14px rgba(155, 29, 46, 0.9),
    0 0 0 3px rgba(155, 29, 46, 0.12);
}
.social-rail::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    160deg,
    transparent 30%,
    rgba(255, 255, 255, 0.22) 48%,
    transparent 66%
  );
  transform: translateY(-130%);
  animation: socialRailShine 3.6s ease-in-out infinite;
  pointer-events: none;
}
@media (min-width: 768px) {
  .social-rail { display: flex; }
}
.social-rail-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: color 0.2s ease, background 0.2s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.social-rail-link:hover {
  color: #9b1d2e;
  background: #fff;
  transform: translateX(-3px) scale(1.06);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35) inset,
    0 8px 18px -10px rgba(0, 0, 0, 0.45);
}
.social-rail-link svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
}
@keyframes socialRailShine {
  0%, 55% { transform: translateY(-130%); }
  75%, 100% { transform: translateY(130%); }
}
@media (prefers-reduced-motion: reduce) {
  .social-rail,
  .social-rail::before { animation: none; }
  .social-rail {
    background: #9b1d2e;
  }
}

/* Mobil: slider sonrası sağ Hızlı Erişim — Safari uyumlu (writing-mode yok) */
.qa-rail {
  display: none;
  position: fixed;
  top: 0;
  right: -3.25rem;
  bottom: 0;
  z-index: 58;
  width: 2.85rem;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: visible;
  opacity: 0;
  visibility: hidden;
  transition: right 0.32s ease, opacity 0.28s ease, visibility 0.28s ease;
}
@media (max-width: 767px) {
  .qa-rail { display: flex; }
  .qa-rail.is-visible {
    right: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.qa-rail-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10.75rem;
  height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  border: 0;
  border-radius: 0.85rem 0.85rem 0 0;
  cursor: pointer;
  color: #fff;
  font-family: "Poppins", "Sora", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18) 0%, transparent 42%),
    linear-gradient(160deg, #7a1522 0%, #9b1d2e 28%, #d13a4c 52%, #9b1d2e 78%, #7a1522 100%);
  background-size: 100% 100%, 220% 220%;
  animation: ebeleShift 5s ease infinite;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 14px 28px -14px rgba(155, 29, 46, 0.95);
}
.qa-rail-btn span {
  display: inline-block;
  transform: translateZ(0);
}
.qa-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(6, 26, 22, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.qa-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.qa-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 81;
  width: min(100%, 22rem);
  display: flex;
  flex-direction: column;
  background: #f7faf8;
  color: #0c2e27;
  box-shadow: -24px 0 50px -28px rgba(0, 0, 0, 0.45);
  transform: translateX(105%);
  transition: transform 0.34s ease;
}
.qa-panel.is-open { transform: translateX(0); }
.qa-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.15rem 1rem;
  background: #0c2e27;
  color: #fff;
}
.qa-panel-head h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.qa-panel-head p {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  opacity: 0.72;
}
.qa-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
}
.qa-close svg { width: 1.1rem; height: 1.1rem; }
.qa-panel-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 1.1rem 1.5rem;
}
.qa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.qa-link {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 0.8rem;
  border-radius: 0.95rem;
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 24px -18px rgba(12, 46, 39, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}
.qa-link:hover { transform: translateY(-2px); }
.qa-link.is-accent {
  background: #9b1d2e;
  color: #fff;
}
.qa-link-title {
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}
.qa-link-desc {
  font-size: 0.68rem;
  opacity: 0.65;
}
.qa-link.is-accent .qa-link-desc { opacity: 0.85; }
body.qa-open .qa-rail,
body.qa-open .social-rail,
body.qa-open .a11y-fab,
body.qa-open .back-top {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .qa-rail,
  .qa-rail-btn,
  .qa-overlay,
  .qa-panel { transition: none; animation: none; }
  .qa-rail-btn { background: #9b1d2e; }
}

@media (max-width: 480px) {
  .submenu-grid,
  .submenu-wide { min-width: 280px; grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .duyuru-track { animation: none; }
  .slider-slide.is-active img { animation: none; }
  .site-header,
  .mobile-drawer,
  .mobile-drawer-inner,
  .mobile-nav-link,
  .back-top,
  .search-modal,
  .search-panel,
  .page-loader-logo,
  .page-loader-bar span { transition: none; animation: none; }
  .mobile-nav-link {
    opacity: 1;
    transform: none;
  }
}

/* —— Sayfa loader —— */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(19, 64, 56, 0.55), transparent 55%),
    #0c2e27;
  color: #fff;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader-inner {
  text-align: center;
  padding: 2rem;
}
.page-loader-logo {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
  animation: loaderBreath 1.6s ease-in-out infinite;
}
.page-loader-brand {
  margin: 1.15rem 0 0;
  font-family: "Zilla Slab", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.page-loader-sub {
  margin: 0.35rem 0 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201, 185, 154, 0.9);
}
.page-loader-bar {
  width: 7.5rem;
  height: 2px;
  margin: 1.5rem auto 0;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}
.page-loader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, transparent, #c9b99a, transparent);
  animation: loaderSlide 1.1s ease-in-out infinite;
}
@keyframes loaderBreath {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.92; }
}
@keyframes loaderSlide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(280%); }
}

/* —— Erişilebilirlik —— */
.a11y-fab {
  position: fixed;
  left: 1rem;
  bottom: 1.25rem;
  z-index: 56;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: #9b1d2e;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 28px -10px rgba(155, 29, 46, 0.7);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.a11y-fab:hover {
  background: #fff;
  color: #9b1d2e;
  transform: translateY(-1px);
  box-shadow:
    0 0 0 2px #9b1d2e,
    0 14px 32px -12px rgba(155, 29, 46, 0.45);
}
.a11y-fab:focus-visible {
  outline: 3px solid #c9b99a;
  outline-offset: 3px;
}
.a11y-fab svg { width: 1.35rem; height: 1.35rem; }
@media (max-width: 767px) {
  .a11y-fab { bottom: 1.15rem; }
}
body.a11y-open .social-rail,
body.a11y-open .qa-rail {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.a11y-panel {
  position: fixed;
  left: 1rem;
  bottom: 4.75rem;
  z-index: 72;
  width: min(calc(100vw - 2rem), 320px);
  max-height: min(72vh, 560px);
  display: flex;
  flex-direction: column;
  background: #fff;
  color: #0c2e27;
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
@media (max-width: 767px) {
  .a11y-panel { bottom: 4.75rem; max-height: min(62vh, 520px); }
}
.a11y-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.a11y-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  background: #9b1d2e;
  color: #fff;
  flex-shrink: 0;
}
.a11y-panel-head h2 {
  margin: 0;
  font-family: "Zilla Slab", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
}
.a11y-panel-close {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: inline-flex;
  padding: 0.2rem;
}
.a11y-panel-close:hover { color: #fff; }
.a11y-panel-close svg { width: 1.1rem; height: 1.1rem; }
.a11y-panel-body {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.a11y-group {
  margin: 0.55rem 0 0.15rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9b1d2e;
}
.a11y-group:first-child { margin-top: 0; }
.a11y-note {
  margin: 0.15rem 0 0.35rem;
  font-size: 0.72rem;
  line-height: 1.45;
  font-weight: 600;
  color: rgba(12, 46, 39, 0.55);
}
.a11y-link {
  display: block;
  padding: 0.75rem 0.85rem;
  background: rgba(155, 29, 46, 0.08);
  color: #9b1d2e;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease;
}
.a11y-link:hover { background: rgba(155, 29, 46, 0.14); }
.a11y-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 0;
  background: rgba(12, 46, 39, 0.05);
  color: #0c2e27;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}
.a11y-btn:hover { background: rgba(12, 46, 39, 0.1); }
.a11y-btn.is-on {
  background: rgba(155, 29, 46, 0.1);
  color: #9b1d2e;
}
.a11y-btn small {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(12, 46, 39, 0.45);
}
.a11y-btn.is-on small { color: #9b1d2e; }
.a11y-reset {
  margin-top: 0.35rem;
  width: 100%;
  padding: 0.75rem;
  border: 0;
  background: #0c2e27;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}
.a11y-reset:hover { background: #134038; }

/* A11y modes on html */
html.a11y-contrast {
  filter: contrast(1.28);
}
html.a11y-contrast body {
  background: #fff !important;
}
html.a11y-invert {
  filter: invert(1) hue-rotate(180deg);
}
html.a11y-invert img,
html.a11y-invert video,
html.a11y-invert .page-loader {
  filter: invert(1) hue-rotate(180deg);
}
html.a11y-grayscale {
  filter: grayscale(1);
}
html.a11y-contrast.a11y-grayscale {
  filter: contrast(1.28) grayscale(1);
}
html.a11y-invert.a11y-grayscale {
  filter: invert(1) hue-rotate(180deg) grayscale(1);
}
html.a11y-invert.a11y-contrast {
  filter: invert(1) hue-rotate(180deg) contrast(1.2);
}
html.a11y-underline a {
  text-decoration: underline !important;
  text-underline-offset: 0.18em;
}
html.a11y-big {
  font-size: 112.5%;
}
html.a11y-bigger {
  font-size: 125%;
}
html.a11y-readable body {
  letter-spacing: 0.04em;
  word-spacing: 0.08em;
  line-height: 1.7;
}
html.a11y-readable p,
html.a11y-readable li,
html.a11y-readable dd {
  line-height: 1.8;
  max-width: 70ch;
}
html.a11y-hide-images img:not(.header-logo):not(.page-loader-logo):not(.header-ataturk) {
  opacity: 0 !important;
  visibility: hidden !important;
}
html.a11y-hide-images img:not(.header-logo):not(.page-loader-logo):not(.header-ataturk)::after {
  content: "";
}
html.a11y-big-cursor,
html.a11y-big-cursor * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath fill='%230c2e27' stroke='%23fff' stroke-width='2' d='M6 4v22l6-6h10z'/%3E%3C/svg%3E") 4 4, auto !important;
}
html.a11y-focus *:focus-visible {
  outline: 3px solid #9b1d2e !important;
  outline-offset: 3px !important;
}
html.a11y-motion *,
html.a11y-motion *::before,
html.a11y-motion *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

/* ========== Anasayfa kreatif dil ========== */
body {
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(201, 185, 154, 0.18), transparent 60%),
    radial-gradient(900px 420px at 100% 8%, rgba(155, 29, 46, 0.06), transparent 55%),
    #f7faf8;
}

.hero-watermark {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  z-index: 3;
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(4.5rem, 18vw, 14rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.07);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.hero-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c9b99a;
}
.hero-brand {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.9),
    0 2px 10px rgba(0, 0, 0, 0.75),
    0 12px 32px rgba(0, 0, 0, 0.55);
}
.hero-title {
  margin: 0.35rem 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.15;
  color: #fff;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.9),
    0 2px 10px rgba(0, 0, 0, 0.75),
    0 10px 28px rgba(0, 0, 0, 0.5);
}
.hero-text {
  margin: 0.85rem auto 0;
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.95),
    0 2px 8px rgba(0, 0, 0, 0.8),
    0 8px 22px rgba(0, 0, 0, 0.55);
}
.slider-nav-btn {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.slider-nav-btn:hover {
  background: #fff;
  color: #0c2e27;
  border-color: #fff;
}
.river-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 15;
  height: 48px;
  pointer-events: none;
}
.river-wave svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: #0c2e27;
}

/* Hızlı hizmet şeridi */
.service-strip {
  position: relative;
  z-index: 20;
  background: #0c2e27;
  color: #fff;
  margin-top: -1px;
}
.service-strip-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .service-strip-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .service-strip-inner {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.service-tile {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.15rem 1rem 1.25rem;
  background: #0c2e27;
  color: #fff;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}
.service-tile:hover {
  background: #134038;
  transform: translateY(-2px);
}
.service-tile--accent {
  background: #9b1d2e;
}
.service-tile--accent:hover {
  background: #7a1522;
}
.service-ico {
  display: flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  margin-bottom: 0.35rem;
  color: #c9b99a;
}
.service-tile--accent .service-ico { color: #fff; }
.service-ico svg { width: 100%; height: 100%; }
.service-tile-label {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.service-tile-desc {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

/* Section heads */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.25rem;
}
.section-eyebrow {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #9b1d2e;
}
.section-eyebrow.light { color: #c9b99a; }
.section-title {
  margin: 0.4rem 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0c2e27;
  line-height: 1.1;
}
.section-title.light { color: #fff; }
.section-link {
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0c2e27;
  text-decoration: none;
  border-bottom: 1px solid rgba(12, 46, 39, 0.25);
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.section-link:hover {
  color: #9b1d2e;
  border-color: #9b1d2e;
}
.section-link.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.section-link.light:hover {
  color: #c9b99a;
  border-color: #c9b99a;
}

/* Haberler — slider + kart ızgara (referans düzen) */
.news-stage {
  position: relative;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(201, 185, 154, 0.2), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 30%, rgba(155, 29, 46, 0.05), transparent 50%),
    #f3f1ec;
  overflow-x: clip;
  overflow-y: visible;
}
.news-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: multiply;
}
.news-stage > * { position: relative; z-index: 1; }

.news-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.news-heading {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0c2e27;
  line-height: 1.05;
}
.news-sub {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: #9b1d2e;
  opacity: 0.85;
}
.news-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  margin-top: 0.35rem;
  padding: 0.65rem 1.15rem;
  border: 1.5px solid #0c2e27;
  border-radius: 999px;
  background: #fff;
  color: #0c2e27;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.news-all-btn svg {
  width: 0.9rem;
  height: 0.9rem;
}
.news-all-btn:hover {
  background: #0c2e27;
  color: #fff;
  transform: translateY(-1px);
}

.news-layout {
  display: grid;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .news-layout {
    grid-template-columns: 1.35fr 1fr;
    gap: 1.15rem;
    align-items: stretch;
  }
}

.news-hero-slider {
  position: relative;
  border-radius: 1.35rem;
  overflow: hidden;
  background: #e8e2d6;
  min-height: 22rem;
  height: 100%;
  isolation: isolate;
}
@media (min-width: 1024px) {
  .news-hero-slider { min-height: 32rem; }
}
.news-hero-track {
  position: absolute;
  inset: 0;
}
.news-hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
.news-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.news-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 6s ease;
}
.news-hero-slide.is-active img {
  transform: scale(1.08);
}
.news-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(6, 26, 22, 0.82) 100%);
  pointer-events: none;
}
.news-hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.35rem 1.35rem 2.75rem;
}
.news-hero-date {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(155, 29, 46, 0.35);
  color: #0c2e27;
  font-size: 0.72rem;
  font-weight: 700;
}
.news-hero-caption h3 {
  margin: 0.75rem 0 0;
  max-width: 28rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}
.news-hero-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #0c2e27;
  cursor: pointer;
  box-shadow: 0 8px 20px -12px rgba(0, 0, 0, 0.45);
  transition: background 0.2s ease, transform 0.2s ease;
}
.news-hero-nav svg { width: 1rem; height: 1rem; }
.news-hero-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}
.news-hero-nav.prev { left: 0.85rem; }
.news-hero-nav.next { right: 0.85rem; }
.news-hero-dots {
  position: absolute;
  right: 1.25rem;
  bottom: 1.15rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.news-hero-dots button {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}
.news-hero-dots button.is-active {
  width: 1.35rem;
  background: #fff;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (min-width: 1024px) {
  .news-grid {
    gap: 0.85rem;
    height: 100%;
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }
}
.news-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 1rem 1.05rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(12, 46, 39, 0.05);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.news-card:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -20px rgba(12, 46, 39, 0.45);
}
.news-card-tag {
  display: inline-flex;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(155, 29, 46, 0.12);
  color: #9b1d2e;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.news-card time {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(12, 46, 39, 0.5);
}
.news-card h3 {
  margin: 0;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0c2e27;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 639px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-head { flex-direction: column; }
  .news-hero-slider { min-height: 18rem; }
}

/* Mobil: yatay kaydırılabilir haber kartları */
.news-mobile { display: none; }

@media (max-width: 1023px) {
  .news-stage {
    overflow: visible;
  }
  .news-layout { display: none; }
  .news-mobile {
    display: block;
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .news-mobile-rail {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1rem;
    padding: 0.15rem 1rem 0.5rem;
    -webkit-overflow-scrolling: touch;
    touch-action: none;
    cursor: grab;
    scrollbar-width: none;
  }
  .news-mobile-rail.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
  }
  .news-mobile-rail::-webkit-scrollbar { display: none; }
  .news-mobile-card {
    flex: 0 0 min(82vw, 22rem);
    width: min(82vw, 22rem);
    max-width: 22rem;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 0.55rem 0.55rem 0.85rem;
    border-radius: 1.5rem;
    background: #fff;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 28px -18px rgba(12, 46, 39, 0.35);
    -webkit-user-drag: none;
    user-select: none;
  }
  .news-mobile-media {
    position: relative;
    overflow: hidden;
    border-radius: 1.15rem;
    aspect-ratio: 4 / 5;
    background: #0c2e27;
    pointer-events: none;
  }
  .news-mobile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
  }
  .news-mobile-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(6, 26, 22, 0.88) 100%);
    pointer-events: none;
  }
  .news-mobile-media h3 {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    margin: 0;
    z-index: 1;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
  }
  .news-mobile-tag {
    align-self: flex-start;
    margin-left: 0.35rem;
    display: inline-flex;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: rgba(155, 29, 46, 0.12);
    color: #9b1d2e;
    font-size: 0.68rem;
    font-weight: 800;
  }
  .news-mobile-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1rem;
  }
  .news-mobile-dots button {
    width: 0.55rem;
    height: 0.55rem;
    padding: 0;
    border: 1.5px solid #9b1d2e;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease, width 0.2s ease;
  }
  .news-mobile-dots button.is-active {
    background: #9b1d2e;
    width: 0.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-hero-slide img { transition: none; transform: none !important; }
}

/* Etkinlik takvimi + son etkinlikler */
.events-stage {
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(155, 29, 46, 0.06), transparent 55%),
    radial-gradient(ellipse 50% 45% at 100% 100%, rgba(12, 46, 39, 0.07), transparent 60%),
    #f3f1ec;
  padding: 3.25rem 0 3.75rem;
}
@media (min-width: 1024px) {
  .events-stage { padding: 4.25rem 0 4.75rem; }
}
.events-wrap {
  width: min(100% - 2rem, 80rem);
  margin-inline: auto;
}
.events-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.events-layout {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .events-layout {
    grid-template-columns: minmax(0, 1.65fr) minmax(18rem, 1fr);
    gap: 1.35rem;
    align-items: stretch;
  }
}
.cal-panel {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.15rem 1rem 1.25rem;
  box-shadow: 0 18px 40px -28px rgba(12, 46, 39, 0.35);
  border: 1px solid rgba(12, 46, 39, 0.06);
}
@media (min-width: 768px) {
  .cal-panel { padding: 1.35rem 1.35rem 1.5rem; }
}
.cal-toolbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}
.cal-today {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #7a1522 0%, #9b1d2e 55%, #c42a3d 100%);
  color: #fff;
  font-family: "Poppins", "Sora", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px -14px rgba(155, 29, 46, 0.9);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.cal-today:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.cal-month {
  margin: 0;
  text-align: center;
  font-family: "Playfair Display", "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0c2e27;
}
.cal-nav {
  display: inline-flex;
  gap: 0.4rem;
}
.cal-nav button {
  appearance: none;
  border: 0;
  cursor: pointer;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #9b1d2e;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cal-nav button:hover {
  background: #7a1522;
  transform: translateY(-1px);
}
.cal-nav svg {
  width: 1.05rem;
  height: 1.05rem;
}
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.4rem;
  margin-bottom: 0.45rem;
}
.cal-weekdays span {
  text-align: center;
  font-family: "Poppins", "Sora", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(12, 46, 39, 0.45);
  padding: 0.45rem 0;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.4rem;
}
.cal-day {
  appearance: none;
  border: 0;
  cursor: pointer;
  min-height: 4.25rem;
  padding: 0.4rem 0.35rem 0.45rem;
  border-radius: 0.85rem;
  background: #f7f5f1;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 768px) {
  .cal-day { min-height: 5rem; padding: 0.45rem 0.45rem 0.5rem; }
}
.cal-day:hover {
  background: #efeae3;
  transform: translateY(-1px);
}
.cal-day.is-muted {
  color: rgba(12, 46, 39, 0.28);
  background: #faf9f7;
}
.cal-day.is-today {
  box-shadow: inset 0 0 0 1.5px rgba(155, 29, 46, 0.35);
}
.cal-day.is-selected {
  background: linear-gradient(160deg, rgba(155, 29, 46, 0.14), rgba(155, 29, 46, 0.08));
  box-shadow: inset 0 0 0 1.5px rgba(155, 29, 46, 0.28);
}
.cal-day.is-selected.is-today {
  box-shadow: inset 0 0 0 1.5px rgba(155, 29, 46, 0.5);
}
.cal-day-num {
  align-self: flex-end;
  font-family: "Poppins", "Sora", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0c2e27;
  line-height: 1;
}
.cal-day.is-muted .cal-day-num { color: rgba(12, 46, 39, 0.28); }
.cal-day-event {
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
  min-width: 0;
  margin-top: auto;
}
.cal-day-event i {
  flex-shrink: 0;
  width: 0.38rem;
  height: 0.38rem;
  margin-top: 0.28rem;
  border-radius: 50%;
  background: #9b1d2e;
}
.cal-day-event span {
  font-size: 0.58rem;
  font-weight: 600;
  line-height: 1.25;
  color: #0c2e27;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 640px) {
  .cal-day-event span { display: none; }
  .cal-day { min-height: 2.65rem; align-items: center; }
  .cal-day-num { align-self: center; font-size: 0.85rem; }
  .cal-day-event { margin: 0; justify-content: center; }
  .cal-day-event i { margin-top: 0; }
}
.events-side {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: #fff;
  border-radius: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(12, 46, 39, 0.06);
  box-shadow: 0 18px 40px -28px rgba(12, 46, 39, 0.35);
}
.events-side-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.75rem;
  margin-bottom: 0.85rem;
  border-radius: 0.85rem;
  background: #f3f1ec;
}
.events-side-head h3 {
  margin: 0;
  font-family: "Poppins", "Sora", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0c2e27;
}
.events-side-head a {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #9b1d2e;
  transition: color 0.2s ease;
}
.events-side-head a:hover { color: #7a1522; }
.events-side-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  overflow: auto;
}
@media (min-width: 1024px) {
  .events-side-list {
    max-height: 34rem;
    padding-right: 0.15rem;
  }
}
.event-item {
  display: grid;
  grid-template-columns: 4.75rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 0.65rem;
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
  background: #faf9f7;
  border: 1px solid transparent;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.event-item:hover {
  background: #fff;
  border-color: rgba(155, 29, 46, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -20px rgba(12, 46, 39, 0.35);
}
.event-item-media {
  width: 4.75rem;
  height: 4.75rem;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #0c2e27;
}
.event-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.event-item:hover .event-item-media img { transform: scale(1.06); }
.event-item-body h4 {
  margin: 0;
  font-family: "Poppins", "Sora", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #9b1d2e;
  line-height: 1.3;
}
.event-item-cat {
  margin: 0.25rem 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(12, 46, 39, 0.5);
}
.event-item-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.55rem;
}
.event-item-meta p {
  margin: 0;
  font-size: 0.65rem;
  line-height: 1.35;
  color: rgba(12, 46, 39, 0.72);
}
.event-item-meta strong {
  display: block;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(12, 46, 39, 0.4);
  margin-bottom: 0.1rem;
}
.events-empty {
  margin: 1.5rem 0.5rem;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(12, 46, 39, 0.5);
}
@media (prefers-reduced-motion: reduce) {
  .cal-today,
  .cal-nav button,
  .cal-day,
  .event-item,
  .event-item-media img { transition: none; }
  .cal-today:hover,
  .cal-nav button:hover,
  .cal-day:hover,
  .event-item:hover { transform: none; }
}
/* Başkan sahnesi */
.mayor-stage {
  display: grid;
  background: #061a16;
  color: #fff;
}
@media (min-width: 960px) {
  .mayor-stage {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 34rem;
  }
}
.mayor-media {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
}
.mayor-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  transition: transform 1.2s ease;
}
.mayor-stage:hover .mayor-media img {
  transform: scale(1.04);
}
.mayor-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(6, 26, 22, 0.85));
  pointer-events: none;
}
@media (max-width: 959px) {
  .mayor-media::after {
    background: linear-gradient(180deg, transparent 40%, rgba(6, 26, 22, 0.95));
  }
}
.mayor-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 1.25rem 3rem;
}
@media (min-width: 960px) {
  .mayor-panel {
    padding: 3.5rem 3.5rem 3.5rem 2.5rem;
  }
}
.mayor-name {
  margin: 0.5rem 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.mayor-lead {
  margin: 1.1rem 0 0;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.98rem;
}
.mayor-quote {
  margin: 1.5rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid #9b1d2e;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-style: italic;
  font-weight: 600;
  color: #c9b99a;
  line-height: 1.3;
}

/* Projeler / Keşfet */
.discover-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 3.5rem 0 4rem;
  color: #fff;
}
@media (min-width: 1024px) {
  .discover-stage { padding: 4.5rem 0 5rem; }
}
.discover-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(184, 138, 28, 0.92) 0%, rgba(196, 150, 32, 0.88) 45%, rgba(168, 122, 22, 0.94) 100%),
    url("../img/slider-1.jpg") center / cover no-repeat;
  transform: scale(1.04);
  animation: discoverBgDrift 22s ease-in-out infinite alternate;
}
.discover-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(255, 236, 170, 0.28), transparent 70%),
    linear-gradient(180deg, transparent 60%, rgba(90, 60, 8, 0.18) 100%);
  pointer-events: none;
}
@keyframes discoverBgDrift {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.08) translateY(-1.5%); }
}
.discover-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 80rem);
  margin-inline: auto;
}
.discover-head {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .discover-head { margin-bottom: 2.75rem; }
}
.discover-script {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 18px rgba(80, 50, 0, 0.28);
  animation: discoverFadeUp 0.8s ease both;
}
.discover-title {
  margin: 0.1rem 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.6rem, 7.5vw, 4.75rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 0.95;
  color: #fff;
  text-shadow: 0 4px 28px rgba(80, 50, 0, 0.35);
  animation: discoverFadeUp 0.8s ease 0.08s both;
}
@keyframes discoverFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.discover-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(15.5rem, 78vw);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.45) transparent;
}
@media (min-width: 900px) {
  .discover-grid {
    display: grid;
    grid-auto-flow: unset;
    grid-auto-columns: unset;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }
}
.discover-card {
  display: flex;
  flex-direction: column;
  min-height: 26rem;
  border-radius: 1.75rem;
  overflow: hidden;
  scroll-snap-align: start;
  background: #0c2e27;
  box-shadow: 0 18px 40px -22px rgba(60, 35, 0, 0.55);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
@media (min-width: 900px) {
  .discover-card { min-height: 28.5rem; }
  .discover-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 48px -18px rgba(60, 35, 0, 0.6);
  }
}
.discover-card-body {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 1.2rem 1.5rem;
  color: #fff;
  overflow: hidden;
  background: #0c2e27;
  z-index: 0;
}
.discover-card-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
  pointer-events: none;
}
.discover-card:hover .discover-card-img {
  transform: scale(1.07);
}
.discover-card-body::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 26, 22, 0.48) 0%, rgba(6, 26, 22, 0.18) 42%, rgba(6, 26, 22, 0.78) 100%);
  pointer-events: none;
}
.discover-card-body h3,
.discover-card-body ul {
  position: relative;
  z-index: 2;
}
.discover-card-body h3 {
  margin: 0;
  text-align: center;
  font-family: "Poppins", "Sora", system-ui, sans-serif;
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}
.discover-card-body ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 15.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.discover-card-body li {
  width: 100%;
}
.discover-card-body li a {
  display: grid;
  grid-template-columns: 0.7rem minmax(0, 1fr);
  align-items: start;
  column-gap: 0.7rem;
  width: 100%;
  padding: 0.38rem 0.35rem;
  color: #fff;
  text-decoration: none;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-align: left;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  border-radius: 0.45rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.discover-card-body li a::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.28rem;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 0 0 rgba(201, 185, 154, 0.3);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.discover-card-body li a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(2px);
}
.discover-card-body li a:hover::before {
  background: #c9b99a;
  border-color: #c9b99a;
  box-shadow: 0 0 0 3px rgba(201, 185, 154, 0.28);
}
.discover-card-foot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex: 0 0 auto;
  min-height: 3.4rem;
  padding: 0.9rem 1.1rem;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22) 0%, transparent 42%),
    linear-gradient(120deg, #b8a688 0%, #c9b99a 35%, #e0d4bc 55%, #c9b99a 78%, #b8a688 100%);
  background-size: 100% 100%, 220% 220%;
  animation: ebeleShift 5.5s ease infinite;
  color: #1a1a1a;
  text-decoration: none;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset;
  transition: filter 0.22s ease, color 0.22s ease, letter-spacing 0.22s ease;
}
.discover-card-foot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 65%
  );
  transform: translateX(-130%);
  animation: ebeleShine 3.4s ease-in-out infinite;
  pointer-events: none;
}
.discover-card-foot span,
.discover-card-foot svg {
  position: relative;
  z-index: 1;
}
.discover-card-foot svg {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}
.discover-card-foot:hover {
  filter: brightness(1.05);
  color: #0c2e27;
  letter-spacing: 0.28em;
}
.discover-card-foot:hover svg {
  transform: translateX(3px);
}
@media (prefers-reduced-motion: reduce) {
  .discover-bg,
  .discover-script,
  .discover-title { animation: none; }
  .discover-card,
  .discover-card-img,
  .discover-card-body li a,
  .discover-card-foot,
  .discover-card-foot::before { transition: none; animation: none; }
  .discover-card-foot { background: #c9b99a; }
  .discover-card:hover { transform: none; }
  .discover-card:hover .discover-card-img { transform: none; }
}

/* Tarihi yerler */
.heritage-stage {
  position: relative;
  isolation: isolate;
  padding: 3.5rem 0 4.25rem;
  background:
    radial-gradient(ellipse 70% 55% at 8% 0%, rgba(201, 185, 154, 0.28), transparent 55%),
    radial-gradient(ellipse 55% 50% at 100% 100%, rgba(12, 46, 39, 0.08), transparent 60%),
    linear-gradient(180deg, #f4f1ea 0%, #eef4f1 100%);
}
@media (min-width: 900px) {
  .heritage-stage { padding: 4.75rem 0 5.5rem; }
}
.heritage-wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}
.heritage-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  margin-bottom: 2rem;
}
.heritage-lead {
  margin: 0.65rem 0 0;
  max-width: 36rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(12, 46, 39, 0.72);
}
.heritage-all {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: #9b1d2e;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}
.heritage-all svg {
  width: 1rem;
  height: 1rem;
}
.heritage-all:hover {
  gap: 0.7rem;
  color: #7a1522;
}
.heritage-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .heritage-grid { grid-template-columns: 1fr 1fr; gap: 1.15rem; }
}
@media (min-width: 1024px) {
  .heritage-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; }
}
.heritage-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.1rem;
  background: #0c2e27;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 40px -28px rgba(12, 46, 39, 0.55);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.heritage-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.heritage-card-body {
  position: absolute;
  inset: auto 0 0;
  padding: 3.5rem 1.15rem 1.15rem;
  background: linear-gradient(to top, rgba(6, 26, 22, 0.92) 10%, rgba(6, 26, 22, 0.45) 55%, transparent);
}
.heritage-card-body h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.heritage-card-body p {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}
.heritage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 50px -28px rgba(12, 46, 39, 0.7);
}
.heritage-card:hover img {
  transform: scale(1.05);
}
@media (prefers-reduced-motion: reduce) {
  .heritage-card,
  .heritage-card img,
  .heritage-all { transition: none; }
  .heritage-card:hover { transform: none; }
  .heritage-card:hover img { transform: none; }
}

/* Pati Dostum */
.pati-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 3.5rem 0 4rem;
  color: #0c2e27;
}
@media (min-width: 900px) {
  .pati-stage { padding: 4.75rem 0 5.25rem; }
}
.pati-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 70% at 12% 40%, rgba(232, 140, 140, 0.22), transparent 65%),
    radial-gradient(ellipse 50% 60% at 88% 70%, rgba(26, 84, 72, 0.12), transparent 70%),
    linear-gradient(165deg, #f7f3ef 0%, #efe8e0 48%, #e8f0ec 100%);
}
.pati-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cpath fill='%230c2e27' d='M36 30c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5zm-14-2c-2.5 0-4.5-2-4.5-4.5S19.5 19 22 19s4.5 2 4.5 4.5S24.5 28 22 28zm28 0c-2.5 0-4.5-2-4.5-4.5S47.5 19 50 19s4.5 2 4.5 4.5S52.5 28 50 28zM27 40.5c-3.2 0-5.7 2.8-4.7 5.8 1.2 3.4 4.4 5.9 8.1 6.9 1.2.3 2.4.5 3.6.5h.4c1.2 0 2.4-.2 3.6-.5 3.7-1 6.9-3.5 8.1-6.9 1-3-1.5-5.8-4.7-5.8-1.5 0-2.9.7-3.9 1.8-1-1.1-2.4-1.8-3.9-1.8s-2.9.7-3.9 1.8c-1-1.1-2.4-1.8-3.9-1.8z'/%3E%3C/svg%3E");
  background-size: 72px 72px;
  pointer-events: none;
  animation: patiPawDrift 28s linear infinite;
}
@keyframes patiPawDrift {
  from { background-position: 0 0; }
  to { background-position: 72px 36px; }
}
.pati-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 80rem);
  margin-inline: auto;
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .pati-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 3rem;
  }
}
.pati-visual {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: center;
  width: min(100%, 22rem);
  padding: 1.15rem;
  border-radius: 1.75rem;
  background: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 28px 50px -28px rgba(12, 46, 39, 0.4);
}
@media (min-width: 900px) {
  .pati-visual { width: min(100%, 26rem); justify-self: start; }
}
.pati-visual-glow {
  position: absolute;
  inset: 4% 6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 140, 140, 0.28) 0%, rgba(155, 29, 46, 0.08) 45%, transparent 72%);
  filter: blur(18px);
  animation: patiGlow 4.5s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes patiGlow {
  from { transform: scale(0.92); opacity: 0.7; }
  to { transform: scale(1.08); opacity: 1; }
}
.pati-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  background: transparent;
  animation: patiFloat 5.5s ease-in-out infinite;
}
@keyframes patiFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.pati-copy {
  text-align: center;
}
@media (min-width: 900px) {
  .pati-copy { text-align: left; }
}
.pati-eyebrow {
  margin: 0;
  font-family: "Poppins", "Sora", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c45a5a;
}
.pati-title {
  margin: 0.55rem 0 0;
  font-family: "Playfair Display", "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: #0c2e27;
}
.pati-lead {
  margin: 1rem 0 0;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(12, 46, 39, 0.72);
}
@media (min-width: 900px) {
  .pati-lead { margin-left: 0; }
}
.pati-copy .pati-lead {
  margin-inline: auto;
}
@media (min-width: 900px) {
  .pati-copy .pati-lead { margin-inline: 0; }
}
.pati-points {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}
@media (min-width: 900px) {
  .pati-points { justify-content: flex-start; }
}
.pati-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(12, 46, 39, 0.08);
  font-family: "Poppins", "Sora", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #0c2e27;
  box-shadow: 0 8px 20px -16px rgba(12, 46, 39, 0.35);
}
.pati-ico {
  display: inline-flex;
  width: 1.1rem;
  height: 1.1rem;
  color: #c45a5a;
}
.pati-ico svg {
  width: 100%;
  height: 100%;
}
.pati-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
@media (min-width: 900px) {
  .pati-actions { justify-content: flex-start; }
}
.pati-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #b84a4a 0%, #c45a5a 45%, #d97878 100%);
  color: #fff;
  text-decoration: none;
  font-family: "Poppins", "Sora", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 28px -16px rgba(180, 70, 70, 0.85);
  transition: transform 0.22s ease, filter 0.22s ease;
}
.pati-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}
.pati-cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(12, 46, 39, 0.18);
  background: rgba(255, 255, 255, 0.55);
  color: #0c2e27;
  text-decoration: none;
  font-family: "Poppins", "Sora", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.pati-cta-ghost:hover {
  background: #fff;
  border-color: rgba(12, 46, 39, 0.3);
  transform: translateY(-1px);
}
@media (prefers-reduced-motion: reduce) {
  .pati-bg::before,
  .pati-visual-glow,
  .pati-visual img { animation: none; }
  .pati-cta,
  .pati-cta-ghost { transition: none; }
}

/* Sosyal tesisler */
.facilities-stage {
  background:
    radial-gradient(ellipse 55% 45% at 10% 20%, rgba(12, 46, 39, 0.07), transparent 60%),
    radial-gradient(ellipse 45% 40% at 90% 80%, rgba(155, 29, 46, 0.06), transparent 55%),
    #f3f1ec;
  padding: 3.25rem 0 3.75rem;
}
@media (min-width: 1024px) {
  .facilities-stage { padding: 4.25rem 0 4.75rem; }
}
.facilities-wrap {
  width: min(100% - 2rem, 80rem);
  margin-inline: auto;
}
.facilities-intro {
  margin-bottom: 1.75rem;
}
.facilities-lead {
  margin: 0.65rem 0 0;
  max-width: 36rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(12, 46, 39, 0.68);
}
.facilities-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .facilities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }
}
.facility-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(12, 46, 39, 0.06);
  box-shadow: 0 18px 40px -28px rgba(12, 46, 39, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.facility-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px -24px rgba(12, 46, 39, 0.42);
}
.facility-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0c2e27;
}
.facility-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.facility-card:hover .facility-media img {
  transform: scale(1.05);
}
.facility-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.2rem 1.15rem 1.25rem;
  flex: 1;
}
.facility-body h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #0c2e27;
}
.facility-addr,
.facility-phone {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(12, 46, 39, 0.72);
  text-decoration: none;
}
.facility-addr svg,
.facility-phone svg {
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.12rem;
  color: #9b1d2e;
}
.facility-phone {
  font-weight: 700;
  color: #0c2e27;
  transition: color 0.2s ease;
}
.facility-phone:hover { color: #9b1d2e; }
.facility-dir {
  position: relative;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  align-self: stretch;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18) 0%, transparent 42%),
    linear-gradient(120deg, #7a1522 0%, #9b1d2e 28%, #d13a4c 52%, #9b1d2e 78%, #7a1522 100%);
  background-size: 100% 100%, 220% 220%;
  animation: ebeleShift 5s ease infinite;
  color: #fff;
  text-decoration: none;
  font-family: "Poppins", "Sora", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 12px 26px -14px rgba(155, 29, 46, 0.9);
  transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
}
.facility-dir::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 65%
  );
  transform: translateX(-130%);
  animation: ebeleShine 3.4s ease-in-out infinite;
  pointer-events: none;
}
.facility-dir span,
.facility-dir svg {
  position: relative;
  z-index: 1;
}
.facility-dir svg {
  width: 0.95rem;
  height: 0.95rem;
  transition: transform 0.22s ease;
}
.facility-dir:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 16px 30px -12px rgba(155, 29, 46, 0.95);
}
.facility-dir:hover svg {
  transform: translateX(3px);
}
@media (prefers-reduced-motion: reduce) {
  .facility-card,
  .facility-media img,
  .facility-dir,
  .facility-dir::before,
  .facility-dir svg { transition: none; animation: none; }
  .facility-dir { background: #9b1d2e; }
  .facility-card:hover { transform: none; }
  .facility-card:hover .facility-media img { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .news-hero-slide img,
  .mayor-media img,
  .service-tile,
  .event-item,
  .event-item-media img { transition: none; }
}

/* —— Organizasyon şeması —— */
.org-stage {
  position: relative;
  padding: 2.75rem 0 4.5rem;
  background:
    radial-gradient(ellipse 70% 45% at 10% 0%, rgba(201, 185, 154, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 95% 20%, rgba(155, 29, 46, 0.07), transparent 50%),
    linear-gradient(180deg, #f7f4ef 0%, #eef3f0 55%, #f7faf8 100%);
}
@media (min-width: 900px) {
  .org-stage { padding: 3.5rem 0 5.5rem; }
}
.org-wrap {
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto;
}
.org-tree {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}
.org-tree::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 1.4rem;
  bottom: 1.4rem;
  width: 2px;
  background: linear-gradient(180deg, #9b1d2e 0%, rgba(155, 29, 46, 0.35) 40%, rgba(12, 46, 39, 0.2) 100%);
  border-radius: 999px;
  pointer-events: none;
}
@media (min-width: 900px) {
  .org-tree::before { left: 1.45rem; }
}
.org-node {
  position: relative;
  z-index: 1;
  padding-left: 2.75rem;
}
@media (min-width: 900px) {
  .org-node { padding-left: 3.25rem; }
}
.org-spine {
  position: absolute;
  left: 0.78rem;
  top: 1.35rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  background: #9b1d2e;
  box-shadow:
    0 0 0 4px rgba(155, 29, 46, 0.15),
    0 0 0 8px rgba(247, 244, 239, 0.9);
}
@media (min-width: 900px) {
  .org-spine { left: 1.05rem; }
}
.org-head {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  width: fit-content;
  max-width: 100%;
  padding: 0.85rem 1.25rem 0.95rem;
  border-radius: 0.95rem;
  background: linear-gradient(135deg, #7a1522 0%, #9b1d2e 48%, #b32538 100%);
  color: #fff;
  box-shadow:
    0 14px 30px -18px rgba(122, 21, 34, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.org-node--mayor .org-head {
  background: linear-gradient(135deg, #061a16 0%, #0c2e27 45%, #134038 100%);
  box-shadow:
    0 16px 34px -18px rgba(6, 26, 22, 0.75),
    inset 0 1px 0 rgba(201, 185, 154, 0.25);
}
.org-node--mayor .org-spine {
  background: #c9b99a;
  box-shadow:
    0 0 0 4px rgba(201, 185, 154, 0.28),
    0 0 0 8px rgba(247, 244, 239, 0.9);
}
.org-role {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.78;
}
.org-name {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.org-deps {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .org-deps { grid-template-columns: 1fr 1fr; }
}
.org-node--mayor .org-deps {
  max-width: 42rem;
}
.org-deps li {
  position: relative;
  padding: 0.7rem 0.9rem 0.7rem 1.85rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(12, 46, 39, 0.08);
  color: #0c2e27;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  box-shadow: 0 8px 18px -16px rgba(12, 46, 39, 0.35);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.org-deps li::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 50%;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: #9b1d2e;
  transform: translateY(-50%);
}
.org-deps li:hover {
  transform: translateY(-1px);
  border-color: rgba(155, 29, 46, 0.28);
  background: #fff;
}
.org-deputies {
  display: grid;
  gap: 1.35rem;
}
@media (min-width: 1024px) {
  .org-deputies {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
    padding-left: 3.25rem;
    position: relative;
  }
  .org-deputies::before {
    content: "";
    position: absolute;
    left: 1.45rem;
    right: 1.5rem;
    top: 1.7rem;
    height: 2px;
    background: linear-gradient(90deg, rgba(155, 29, 46, 0.45), rgba(12, 46, 39, 0.18));
    pointer-events: none;
  }
  .org-deputies .org-node {
    padding-left: 0;
  }
  .org-deputies .org-spine {
    left: 0.7rem;
    top: 1.4rem;
    z-index: 2;
  }
  .org-deputies .org-deps {
    grid-template-columns: 1fr;
  }
  .org-deputies .org-head {
    width: 100%;
    padding-left: 2.55rem;
  }
}

.org-head--person {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}
.org-photo {
  flex: 0 0 auto;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 999px;
  object-fit: contain;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}
.org-head-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.org-bio-btn {
  margin-top: 0.45rem;
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.org-bio-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
}

.org-bio-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(6, 26, 22, 0.62);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.org-bio-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.org-bio-panel {
  position: relative;
  width: min(520px, 100%);
  max-height: min(82vh, 640px);
  overflow: auto;
  border-radius: 1.15rem;
  background: #f7f4ef;
  color: #0c2e27;
  padding: 1.35rem 1.35rem 1.5rem;
  box-shadow: 0 28px 60px -28px rgba(6, 26, 22, 0.65);
  transform: translateY(10px) scale(0.98);
  transition: transform 0.25s ease;
}
.org-bio-modal.is-open .org-bio-panel {
  transform: none;
}
.org-bio-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.15rem;
  height: 2.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(12, 46, 39, 0.08);
  color: #0c2e27;
  cursor: pointer;
}
.org-bio-close svg {
  width: 1.05rem;
  height: 1.05rem;
}
.org-bio-close:hover {
  background: rgba(155, 29, 46, 0.12);
  color: #9b1d2e;
}
.org-bio-hero {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-right: 2rem;
  margin-bottom: 1.1rem;
}
.org-bio-logo {
  width: 3.6rem;
  height: 3.6rem;
  object-fit: contain;
  border-radius: 999px;
  background: #fff;
  padding: 0.4rem;
  box-shadow: 0 8px 20px -14px rgba(12, 46, 39, 0.5);
}
.org-bio-role {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9b1d2e;
}
.org-bio-hero h3 {
  margin: 0.25rem 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.org-bio-body {
  display: grid;
  gap: 0.85rem;
}
.org-bio-body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(12, 46, 39, 0.78);
}
@media (prefers-reduced-motion: reduce) {
  .org-bio-modal,
  .org-bio-panel,
  .org-bio-btn { transition: none; }
}

/* —— Başkan yardımcıları sayfası —— */
.deputy-stage {
  padding: 2.75rem 0 4.5rem;
  background:
    radial-gradient(ellipse 70% 40% at 10% 0%, rgba(201, 185, 154, 0.28), transparent 55%),
    linear-gradient(180deg, #f7f4ef 0%, #eef3f0 100%);
}
.deputy-wrap {
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto;
}
.deputy-grid {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 860px) {
  .deputy-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
.deputy-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.25rem 1.5rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(12, 46, 39, 0.08);
  box-shadow: 0 18px 36px -26px rgba(12, 46, 39, 0.5);
}
.deputy-photo {
  width: 6.5rem;
  height: 6.5rem;
  object-fit: contain;
  border-radius: 999px;
  padding: 0.85rem;
  background: #fff;
  border: 1px solid rgba(12, 46, 39, 0.08);
  box-shadow: 0 10px 24px -16px rgba(12, 46, 39, 0.45);
}
.deputy-role {
  margin: 1.1rem 0 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9b1d2e;
}
.deputy-name {
  margin: 0.4rem 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0c2e27;
}
.deputy-bio-btn {
  margin-top: 1.1rem;
  border: 1px solid rgba(155, 29, 46, 0.35);
  background: #9b1d2e;
  color: #fff;
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.deputy-bio-btn:hover {
  background: #7a1522;
}
@media (prefers-reduced-motion: reduce) {
  .deputy-bio-btn { transition: none; }
}

@media (prefers-reduced-motion: reduce) {
  .org-deps li { transition: none; }
  .org-deps li:hover { transform: none; }
}

/* —— Müdürlükler —— */
.dept-stage {
  position: relative;
  padding: 2.75rem 0 4.5rem;
  background:
    radial-gradient(ellipse 65% 40% at 0% 0%, rgba(201, 185, 154, 0.26), transparent 55%),
    radial-gradient(ellipse 45% 35% at 100% 10%, rgba(12, 46, 39, 0.08), transparent 50%),
    linear-gradient(180deg, #f7f4ef 0%, #eef3f0 100%);
}
@media (min-width: 900px) {
  .dept-stage { padding: 3.5rem 0 5.5rem; }
}
.dept-wrap {
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto;
}
.dept-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.5rem;
  margin-bottom: 1.75rem;
}
.dept-note {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(12, 46, 39, 0.68);
}
.dept-note a {
  color: #9b1d2e;
  font-weight: 800;
  text-decoration: none;
}
.dept-note a:hover { text-decoration: underline; }
.dept-org-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: #0c2e27;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}
.dept-org-link svg {
  width: 1rem;
  height: 1rem;
}
.dept-org-link:hover {
  gap: 0.65rem;
  color: #9b1d2e;
}
.dept-grid {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 720px) {
  .dept-grid { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
}
.dept-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.85rem 1rem;
  align-items: start;
  min-height: 100%;
  padding: 1.05rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(12, 46, 39, 0.08);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 28px -22px rgba(12, 46, 39, 0.45);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.dept-card-hit {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}
.dept-idx,
.dept-body,
.dept-arrow {
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.dept-mail {
  pointer-events: auto;
  position: relative;
  z-index: 3;
  color: rgba(12, 46, 39, 0.55);
  text-decoration: none;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.dept-card:hover {
  transform: translateY(-2px);
  border-color: rgba(155, 29, 46, 0.3);
  background: #fff;
  box-shadow: 0 20px 36px -22px rgba(12, 46, 39, 0.55);
}
.dept-idx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-width: 2.35rem;
  height: 2.35rem;
  padding: 0 0.35rem;
  border-radius: 0.7rem;
  background: rgba(12, 46, 39, 0.07);
  color: #0c2e27;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.dept-card:hover .dept-idx {
  background: #9b1d2e;
  color: #fff;
}
.dept-body { min-width: 0; }
.dept-title {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #0c2e27;
}
.dept-manager {
  margin: 0.35rem 0 0;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(12, 46, 39, 0.72);
}
.dept-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  margin-top: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
}
.dept-phone { color: #9b1d2e; }
.dept-mail:hover { color: #9b1d2e; text-decoration: underline; }
.dept-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  color: rgba(12, 46, 39, 0.35);
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.dept-arrow svg {
  width: 1rem;
  height: 1rem;
}
.dept-card:hover .dept-arrow {
  color: #9b1d2e;
  background: rgba(155, 29, 46, 0.08);
  transform: translateX(2px);
}
@media (prefers-reduced-motion: reduce) {
  .dept-card,
  .dept-arrow,
  .dept-org-link { transition: none; }
  .dept-card:hover { transform: none; }
  .dept-card:hover .dept-arrow { transform: none; }
}

/* —— Haber listesi & detay —— */
.news-list-stage,
.news-detail-stage {
  padding: 2.5rem 0 4.5rem;
  background:
    radial-gradient(ellipse 70% 40% at 0% 0%, rgba(201, 185, 154, 0.22), transparent 55%),
    linear-gradient(180deg, #f7f4ef 0%, #eef3f0 100%);
}
.news-list-wrap {
  width: min(920px, calc(100% - 2.5rem));
  margin: 0 auto;
}
.news-list-toolbar {
  margin-bottom: 1.25rem;
}
.news-list-count {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(12, 46, 39, 0.6);
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.news-list-empty {
  padding: 2rem 0;
  color: rgba(12, 46, 39, 0.65);
}
.news-row {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(12, 46, 39, 0.08);
  box-shadow: 0 14px 30px -24px rgba(12, 46, 39, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
@media (min-width: 720px) {
  .news-row {
    grid-template-columns: 220px 1fr;
    gap: 1.25rem;
    padding: 1.1rem;
    align-items: stretch;
  }
}
.news-row:hover {
  transform: translateY(-2px);
  border-color: rgba(155, 29, 46, 0.25);
  box-shadow: 0 22px 40px -24px rgba(12, 46, 39, 0.55);
}
.news-row-media {
  display: block;
  overflow: hidden;
  border-radius: 0.85rem;
  background: #e8e2d6;
  aspect-ratio: 16 / 10;
}
.news-row-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
}
@media (min-width: 720px) {
  .news-row-media {
    aspect-ratio: auto;
    min-height: 100%;
    height: 100%;
    align-self: stretch;
  }
  .news-row-media img {
    min-height: 12rem;
  }
}
.news-row:hover .news-row-media img {
  transform: scale(1.04);
}
.news-row-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 0.15rem 0.15rem 0.15rem 0;
}
.news-row-body time {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9b1d2e;
}
.news-row-body h2 {
  margin: 0.4rem 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.news-row-body h2 a {
  color: #0c2e27;
  text-decoration: none;
}
.news-row-body h2 a:hover {
  color: #9b1d2e;
}
.news-row-body p {
  margin: 0.55rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(12, 46, 39, 0.68);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-row-more {
  margin-top: 0.85rem;
  font-size: 0.84rem;
  font-weight: 800;
  color: #9b1d2e;
  text-decoration: none;
}
.news-row-more:hover { text-decoration: underline; }

.news-pager {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  margin-top: 2rem;
}
.news-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.7rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(12, 46, 39, 0.12);
  background: #fff;
  color: #0c2e27;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.news-page-btn:hover {
  border-color: rgba(155, 29, 46, 0.35);
  color: #9b1d2e;
}
.news-page-btn.is-current {
  background: #9b1d2e;
  border-color: #9b1d2e;
  color: #fff;
}
.news-page-btn.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.news-page-ellipsis {
  display: inline-flex;
  align-items: center;
  padding: 0 0.25rem;
  color: rgba(12, 46, 39, 0.45);
}

.news-detail-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: min(980px, calc(100% - 2.5rem));
  margin: 0 auto;
}
.news-detail-top {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .news-detail-top {
    grid-template-columns: 1.05fr 1fr;
    gap: 2rem;
    align-items: start;
  }
}
.news-detail-media {
  overflow: hidden;
  border-radius: 1.15rem;
  background: #e8e2d6;
  box-shadow: 0 22px 44px -28px rgba(12, 46, 39, 0.55);
  aspect-ratio: 4 / 3;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: zoom-in;
}
.news-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.news-detail-content time {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9b1d2e;
}
.news-detail-content h1 {
  margin: 0.55rem 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #0c2e27;
}
.news-detail-body {
  margin-top: 0;
  display: grid;
  gap: 0.95rem;
}
.news-detail-body p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(12, 46, 39, 0.78);
}
.news-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(12, 46, 39, 0.1);
}
.news-detail-back {
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  color: #0c2e27;
}
.news-detail-back:hover { text-decoration: underline; }

.news-gallery {
  padding-top: 0.25rem;
}
.news-gallery-title {
  margin: 0 0 1rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0c2e27;
}
.news-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .news-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
  }
}
.news-gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 0.9rem;
  background: #e8e2d6;
  aspect-ratio: 4 / 3;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: zoom-in;
}
.news-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}
.news-gallery-item:hover img {
  transform: scale(1.04);
}

.news-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(6, 26, 22, 0.86);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.news-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.news-lightbox-panel {
  position: relative;
  width: min(960px, 100%);
  display: grid;
  place-items: center;
}
.news-lightbox-img {
  display: block;
  max-width: 100%;
  max-height: min(78vh, 820px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.75rem;
  background: #0c2e27;
  box-shadow: 0 28px 60px -24px rgba(0, 0, 0, 0.55);
}
.news-lightbox-close {
  position: absolute;
  top: -0.25rem;
  right: 0;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
}
.news-lightbox-close svg {
  width: 1.15rem;
  height: 1.15rem;
}
.news-lightbox-close:hover {
  background: rgba(155, 29, 46, 0.9);
}
.news-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.news-lightbox-nav:hover {
  background: rgba(155, 29, 46, 0.9);
}
.news-lightbox-prev { left: 0.25rem; }
.news-lightbox-next { right: 0.25rem; }
.news-lightbox-count {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media (max-width: 720px) {
  .news-lightbox-prev { left: 0; }
  .news-lightbox-next { right: 0; }
  .news-lightbox-nav {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-row,
  .news-row-media img,
  .news-page-btn,
  .news-gallery-item img,
  .news-lightbox { transition: none; }
  .news-row:hover { transform: none; }
  .news-row:hover .news-row-media img,
  .news-gallery-item:hover img { transform: none; }
}

/* —— Mahalleler —— */
.mh-stage {
  padding: 2.5rem 0 4.5rem;
  background:
    radial-gradient(ellipse 70% 40% at 0% 0%, rgba(201, 185, 154, 0.26), transparent 55%),
    radial-gradient(ellipse 45% 35% at 100% 8%, rgba(12, 46, 39, 0.07), transparent 50%),
    linear-gradient(180deg, #f7f4ef 0%, #eef3f0 100%);
}
.mh-wrap {
  width: min(980px, calc(100% - 2.5rem));
  margin: 0 auto;
}
.mh-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin-bottom: 1.35rem;
}
.mh-search {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 16rem;
  max-width: 26rem;
}
.mh-search svg {
  position: absolute;
  left: 0.9rem;
  width: 1.05rem;
  height: 1.05rem;
  color: rgba(12, 46, 39, 0.4);
  pointer-events: none;
}
.mh-search input {
  width: 100%;
  height: 2.85rem;
  padding: 0 1rem 0 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(12, 46, 39, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: #0c2e27;
  font-size: 0.92rem;
  font-weight: 500;
  outline: none;
  box-shadow: 0 10px 24px -20px rgba(12, 46, 39, 0.45);
}
.mh-search input:focus {
  border-color: rgba(155, 29, 46, 0.4);
  box-shadow: 0 0 0 3px rgba(155, 29, 46, 0.12);
}
.mh-count {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
  color: rgba(12, 46, 39, 0.58);
}
.mh-table-head {
  display: none;
}
@media (min-width: 820px) {
  .mh-table-head {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.2fr) 11rem;
    gap: 1rem;
    padding: 0 1.15rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(12, 46, 39, 0.45);
  }
}
.mh-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.mh-row {
  display: grid;
  gap: 0.55rem 1rem;
  padding: 0.95rem 1.05rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(12, 46, 39, 0.08);
  box-shadow: 0 12px 28px -24px rgba(12, 46, 39, 0.45);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 820px) {
  .mh-row {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.2fr) 11rem;
    align-items: center;
    padding: 0.85rem 1.15rem;
  }
}
.mh-row:hover {
  border-color: rgba(155, 29, 46, 0.28);
  transform: translateY(-1px);
  box-shadow: 0 18px 34px -24px rgba(12, 46, 39, 0.55);
}
.mh-name {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}
.mh-idx {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.65rem;
  background: rgba(12, 46, 39, 0.07);
  color: #0c2e27;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.mh-row:hover .mh-idx {
  background: #9b1d2e;
  color: #fff;
}
.mh-name h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0c2e27;
  line-height: 1.2;
}
.mh-muhtar {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(12, 46, 39, 0.78);
  min-width: 0;
}
.mh-muhtar span {
  display: inline;
  margin-right: 0.4rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(12, 46, 39, 0.42);
}
@media (min-width: 820px) {
  .mh-muhtar span { display: none; }
}
.mh-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(155, 29, 46, 0.08);
  color: #9b1d2e;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.mh-phone:hover {
  background: #9b1d2e;
  color: #fff;
}
@media (min-width: 820px) {
  .mh-phone {
    justify-self: end;
  }
}
.mh-empty {
  margin: 1.5rem 0 0;
  color: rgba(12, 46, 39, 0.62);
}
.mh-empty.hidden { display: none; }
@media (prefers-reduced-motion: reduce) {
  .mh-row,
  .mh-phone { transition: none; }
  .mh-row:hover { transform: none; }
}

/* —— Birim / müdürlük detay —— */
.dept-detail-stage {
  padding: 2.5rem 0 4.5rem;
  background:
    radial-gradient(ellipse 65% 40% at 0% 0%, rgba(201, 185, 154, 0.24), transparent 55%),
    linear-gradient(180deg, #f7f4ef 0%, #eef3f0 100%);
}
.dept-detail-wrap {
  width: min(980px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.dept-detail-empty {
  margin: 0;
  color: rgba(12, 46, 39, 0.7);
}
.dept-detail-empty a {
  color: #9b1d2e;
  font-weight: 800;
  text-decoration: none;
}
.dept-detail-empty a:hover { text-decoration: underline; }
.dept-detail-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
}
.dept-detail-back,
.dept-detail-org {
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  color: #0c2e27;
}
.dept-detail-org { color: #9b1d2e; }
.dept-detail-back:hover,
.dept-detail-org:hover { text-decoration: underline; }
.dept-detail-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 860px) {
  .dept-detail-grid {
    grid-template-columns: 1.35fr 0.9fr;
    align-items: stretch;
  }
}
.dept-detail-card {
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(12, 46, 39, 0.08);
  box-shadow: 0 16px 34px -26px rgba(12, 46, 39, 0.5);
  padding: 1.25rem 1.3rem 1.35rem;
}
.dept-detail-card h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0c2e27;
  line-height: 1.25;
}
.dept-detail-about p {
  margin: 0.85rem 0 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(12, 46, 39, 0.76);
}
.dept-detail-label {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9b1d2e;
}
.dept-detail-meta {
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}
.dept-detail-meta dt {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(12, 46, 39, 0.5);
}
.dept-detail-meta dd {
  margin: 0.2rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
}
.dept-detail-meta a {
  color: #0c2e27;
  text-decoration: none;
  word-break: break-word;
}
.dept-detail-meta a:hover {
  color: #9b1d2e;
  text-decoration: underline;
}
.dept-detail-doc {
  padding-bottom: 1.1rem;
}
.dept-doc-head {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
}
.dept-doc-note {
  margin: 0.45rem 0 0;
  max-width: 36rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(12, 46, 39, 0.62);
}
.dept-doc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.dept-doc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  background: #9b1d2e;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid #9b1d2e;
}
.dept-doc-btn:hover { background: #7a1522; border-color: #7a1522; }
.dept-doc-btn--ghost {
  background: transparent;
  color: #0c2e27;
  border-color: rgba(12, 46, 39, 0.18);
}
.dept-doc-btn--ghost:hover {
  background: rgba(12, 46, 39, 0.06);
  border-color: rgba(12, 46, 39, 0.28);
  color: #0c2e27;
}
.dept-doc-frame-wrap {
  overflow: hidden;
  border-radius: 0.9rem;
  border: 1px solid rgba(12, 46, 39, 0.1);
  background: #fff;
  min-height: 28rem;
}
.dept-doc-frame {
  display: block;
  width: 100%;
  height: min(70vh, 640px);
  border: 0;
  background: #f4f1ea;
}

/* —— Anasayfa raporlar —— */
.reports-stage {
  padding: 3.25rem 0 4.25rem;
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(201, 185, 154, 0.28), transparent 55%),
    linear-gradient(180deg, #f2f8f6 0%, #f7f4ef 100%);
}
.reports-wrap {
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto;
}
.reports-intro {
  max-width: 36rem;
  margin-bottom: 1.75rem;
}
.reports-lead {
  margin: 0.75rem 0 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(12, 46, 39, 0.68);
}
.reports-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}
@media (min-width: 760px) {
  .reports-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}
.report-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.95rem 1.05rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(12, 46, 39, 0.08);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 12px 28px -24px rgba(12, 46, 39, 0.45);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.report-item:hover {
  transform: translateY(-2px);
  border-color: rgba(155, 29, 46, 0.28);
  box-shadow: 0 18px 34px -22px rgba(12, 46, 39, 0.5);
}
.report-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.75rem;
  background: rgba(155, 29, 46, 0.08);
  color: #9b1d2e;
}
.report-ico svg {
  width: 1.2rem;
  height: 1.2rem;
}
.report-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.report-copy strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0c2e27;
}
.report-copy small {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(12, 46, 39, 0.55);
}
.report-arrow {
  color: #9b1d2e;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.2s ease;
}
.report-item:hover .report-arrow {
  transform: translateX(3px);
}
@media (prefers-reduced-motion: reduce) {
  .report-item,
  .report-arrow { transition: none; }
  .report-item:hover { transform: none; }
  .report-item:hover .report-arrow { transform: none; }
}

/* —— Site footer (menü) —— */
.site-footer {
  background: #fff;
  color: #4a5560;
  border-top: 1px solid rgba(12, 46, 39, 0.08);
}
.site-footer-main {
  width: min(1240px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2.5rem 0 2rem;
}
.ft-grid {
  display: grid;
  gap: 1.75rem 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .ft-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .ft-grid {
    grid-template-columns: 1.55fr repeat(5, minmax(0, 1fr));
    gap: 1.25rem 1.1rem;
  }
}
.ft-title {
  margin: 0 0 0.7rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(12, 46, 39, 0.12);
  font-size: 0.92rem;
  font-weight: 800;
  color: #9b1d2e;
  letter-spacing: 0.01em;
}
.ft-title span {
  font-weight: 800;
}
.ft-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.25rem;
}
.ft-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.42rem;
}
.ft-list a {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.35rem;
  color: #66707a;
  text-decoration: none;
  font-size: 0.84rem;
  line-height: 1.35;
  transition: color 0.18s ease, padding-left 0.18s ease;
}
.ft-list a::before {
  content: "›";
  color: #9aa3ab;
  font-weight: 700;
  line-height: 1.2;
}
.ft-list a:hover {
  color: #9b1d2e;
  padding-left: 2px;
}
.site-footer-bottom {
  background: #0c2e27;
  color: rgba(255, 255, 255, 0.55);
}
.site-footer-bottom-inner {
  width: min(1240px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
}
.site-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  text-decoration: none;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 0.98rem;
}
.site-footer-brand img {
  width: 2.2rem;
  height: 2.2rem;
  object-fit: contain;
}
.site-footer-bottom p {
  margin: 0;
  font-size: 0.78rem;
}
@media (prefers-reduced-motion: reduce) {
  .ft-list a { transition: none; }
}

/* —— Meclis üyeleri —— */
.mc-stage {
  padding: 2.5rem 0 4.5rem;
  background:
    radial-gradient(ellipse 70% 40% at 0% 0%, rgba(201, 185, 154, 0.26), transparent 55%),
    radial-gradient(ellipse 40% 30% at 100% 10%, rgba(155, 29, 46, 0.06), transparent 50%),
    linear-gradient(180deg, #f7f4ef 0%, #eef3f0 100%);
}
.mc-wrap {
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto;
}
.mc-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
  margin-bottom: 1.5rem;
}
.mc-search {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 14rem;
  max-width: 22rem;
}
.mc-search svg {
  position: absolute;
  left: 0.9rem;
  width: 1.05rem;
  height: 1.05rem;
  color: rgba(12, 46, 39, 0.4);
  pointer-events: none;
}
.mc-search input {
  width: 100%;
  height: 2.75rem;
  padding: 0 1rem 0 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(12, 46, 39, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: #0c2e27;
  font-size: 0.9rem;
  font-weight: 500;
  outline: none;
}
.mc-search input:focus {
  border-color: rgba(155, 29, 46, 0.4);
  box-shadow: 0 0 0 3px rgba(155, 29, 46, 0.12);
}
.mc-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.mc-filter {
  height: 2.4rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(12, 46, 39, 0.12);
  background: #fff;
  color: #0c2e27;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.mc-filter:hover {
  border-color: rgba(155, 29, 46, 0.35);
  color: #9b1d2e;
}
.mc-filter.is-active {
  background: #0c2e27;
  border-color: #0c2e27;
  color: #fff;
}
.mc-count {
  margin: 0 0 0 auto;
  font-size: 0.84rem;
  font-weight: 700;
  color: rgba(12, 46, 39, 0.55);
}
.mc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}
@media (min-width: 640px) {
  .mc-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
  .mc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.05rem; }
}
.mc-card {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.95rem;
  align-items: center;
  padding: 0.9rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(12, 46, 39, 0.08);
  box-shadow: 0 14px 30px -24px rgba(12, 46, 39, 0.5);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.mc-card:hover {
  transform: translateY(-2px);
  border-color: rgba(155, 29, 46, 0.25);
  box-shadow: 0 20px 36px -22px rgba(12, 46, 39, 0.55);
}
.mc-photo {
  overflow: hidden;
  border-radius: 0.85rem;
  aspect-ratio: 3 / 4;
  background: #e8e2d6;
}
.mc-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.mc-body {
  min-width: 0;
}
.mc-party {
  display: inline-flex;
  align-items: center;
  min-height: 1.45rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(12, 46, 39, 0.08);
  color: #0c2e27;
}
.mc-party.is-chp {
  background: rgba(155, 29, 46, 0.12);
  color: #9b1d2e;
}
.mc-party.is-akp {
  background: rgba(201, 185, 154, 0.55);
  color: #5c4e34;
}
.mc-name {
  margin: 0.45rem 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #0c2e27;
}
.mc-role {
  margin: 0.3rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(12, 46, 39, 0.55);
}
.mc-empty {
  margin: 1.5rem 0 0;
  color: rgba(12, 46, 39, 0.62);
}
.mc-empty.hidden { display: none; }
@media (prefers-reduced-motion: reduce) {
  .mc-card,
  .mc-filter { transition: none; }
  .mc-card:hover { transform: none; }
}

