/* KKU.Web.UI — anasayfa widget stilleri (legacy kku.edu.tr uyumu) */
:root {
  --kku-red: #C9151B;
  --kku-red-dark: #cb161f;
  --kku-navy: #053170;
  --kku-blue: #005493;
  --kku-navy-deep: #1D3A5F;
  --kku-gold: #B69A51;
  --kku-text: #2c3e50;
  --kku-muted: #6c757d;
  --kku-container: min(1170px, 100% - 2rem);
}

.kku-container { width: var(--kku-container); margin-inline: auto; padding-inline: 15px; }

/* —— Üstbar —— */
.kku-ustbar {
  background: linear-gradient(135deg, #1a237e 0%, var(--kku-red) 100%);
  padding: 8px 0;
  font-size: 12px;
}
.kku-ustbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.kku-ustbar__left,
.kku-ustbar__right { display: flex; flex-wrap: wrap; align-items: center; list-style: none; margin: 0; padding: 0; }
.kku-ustbar__left li a {
  color: #a3adb9;
  padding: 5px 14px;
  line-height: 30px;
  border-right: 1px solid #043267;
  text-decoration: none;
}
.kku-ustbar__left li:last-child a { border-right: none; }
.kku-ustbar__left i { margin-right: 6px; }
.kku-lang a {
  color: #fff;
  padding: 7px 12px;
  line-height: 30px;
  text-decoration: none;
  font-weight: 600;
}
.kku-lang a:nth-child(1) { background: var(--kku-red-dark); }
.kku-lang a:nth-child(2) { background: #013673; }
.kku-ustbar__social { display: flex; align-items: center; gap: 8px; margin-left: 8px; }
.kku-ustbar__social a {
  color: #fff;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  text-decoration: none;
}
.kku-search-box { display: flex; align-items: center; margin-left: 8px; }
.kku-search-box input {
  border: none;
  border-radius: 4px 0 0 4px;
  padding: 6px 10px;
  font-size: 12px;
  width: 160px;
}
.kku-search-box button {
  border: none;
  background: var(--kku-red-dark);
  color: #fff;
  padding: 7px 10px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

/* —— Header: Logo + Menü (legacy top-logo + main-menu uyumu) —— */
.kku-header-main {
  background: #fff;
  padding: 3px 0 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: relative;
  z-index: 200;
}
.kku-header-main__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  text-align: left;
}
.kku-logo-wrap { padding: 8px 0; flex-shrink: 0; }
.kku-logo-wrap__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}
.kku-logo-wrap__univ { height: 72px; width: auto; margin: 0; display: block; flex-shrink: 0; }
.kku-logo-wrap img { height: 72px; width: auto; margin: 0; display: block; }
.kku-logo-wrap--with-unit .kku-logo-wrap__unit {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: #053170;
  line-height: 1.25;
  max-width: 360px;
}
.kku-logo-wrap__fallback {
  display: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: #053170;
}
.kku-logo-wrap__fallback.is-visible { display: block; }
.kku-main-menu {
  flex: 1 1 auto;
  min-width: 0;
  position: static;
}
.kku-main-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: stretch;
  gap: 0;
}
.kku-main-menu__list > li { position: static; }
.kku-mega { position: static; }

/* Mega menü paneli */
.kku-mega__panel {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 210;
  padding-top: 2px;
}
.kku-mega__panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -8px;
  height: 8px;
}
.kku-mega__trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #000;
  padding: 20px 12px;
  line-height: 1.2;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
  position: relative;
  white-space: nowrap;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}
.kku-main-menu__link::after,
.kku-mega__trigger::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  height: 3px;
  background: #e66030;
  transform: scaleX(0);
  transition: transform 0.15s ease-in;
}
.kku-main-menu__link:hover,
.kku-main-menu__link.is-active,
.kku-mega__trigger:hover,
.kku-mega.is-open > .kku-mega__trigger { color: #e66030; }
.kku-main-menu__link:hover::after,
.kku-main-menu__link.is-active::after,
.kku-mega__trigger:hover::after,
.kku-mega.is-open > .kku-mega__trigger::after { transform: scaleX(1); }
.kku-mega__chevron {
  font-size: 10px;
  opacity: 0.65;
  transition: transform 0.2s;
}
.kku-mega.is-open > .kku-mega__trigger .kku-mega__chevron { transform: rotate(180deg); }

.kku-main-menu__link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #000;
  padding: 20px 12px;
  line-height: 1.2;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
  position: relative;
  white-space: nowrap;
}
.kku-mega.is-open > .kku-mega__panel { display: block; }
.kku-mega__panel-inner {
  background: linear-gradient(to top, #dfe9f3 0%, #fff 100%);
  box-shadow: 0 7px 12px -4px rgba(0,0,0,0.45);
  border-radius: 0 0 10px 10px;
  padding: 20px 10px 24px;
}
.kku-mega__grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.kku-mega__col {
  flex: 1 1 22%;
  min-width: 200px;
  padding: 12px 20px;
  border-right: 1px solid #eaeaea;
  box-sizing: border-box;
}
.kku-mega__col:last-child { border-right: none; }
.kku-mega__col--wide { flex: 1 1 100%; border-right: none; }
.kku-mega__col--half { flex: 1 1 48%; border-right: none; }
.kku-mega__col h4 {
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eaeaea;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #053170;
}
.kku-mega__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.kku-mega__col ul li {
  position: relative;
  padding-left: 14px;
}
.kku-mega__col ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--kku-red);
  font-weight: 700;
}
.kku-mega__col a {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  font-weight: 500;
  color: #203245;
  text-decoration: none;
  line-height: 1.45;
}
.kku-mega__col a:hover { color: var(--kku-red); }
.kku-mega__sub {
  margin-top: 18px;
  clear: both;
}
.kku-mega__sub h5 {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #5a6a7a;
}
.kku-mega__cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.kku-nav-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid #ddd;
  background: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}
@media (min-width: 992px) {
  .kku-header-main__inner { flex-wrap: nowrap; }
  .kku-main-menu__list { flex-wrap: nowrap; }
  .kku-main-menu__link,
  .kku-mega__trigger { padding: 20px 10px; font-size: 14px; }
}

/* —— Panel başlık (kırmızı şerit) —— */
.kku-panel {
  min-height: 60px;
  padding: 15px 10px 10px 2px;
  box-shadow: 0 7px 12px -4px #000;
  background: var(--kku-red-dark);
}
.kku-panel__title {
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  text-decoration: none;
}
.kku-panel__title:hover { color: #fff; opacity: 0.9; }

/* —— Manşet Slider (tam genişlik — width mode) —— */
.kku-manset-wrap {
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background: #0d0d0d;
}
.kku-manset {
  margin-bottom: 0;
  padding-bottom: 0;
  width: 100%;
}
.kku-manset__container {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
.kku-manset__stage {
  position: relative;
  height: 580px;
  overflow: hidden;
  width: 100%;
}
.kku-manset__slides {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  background: #0d0d0d;
}
.kku-manset__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
  z-index: 0;
}
.kku-manset__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.kku-manset__link {
  display: block;
  position: relative;
  height: 100%;
  text-decoration: none;
}
.kku-manset__link img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  background: #0d0d0d;
  display: block;
}
.kku-manset__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 24px 20px;
  max-width: min(1170px, 100%);
  pointer-events: none;
}
.kku-manset__aciklama {
  margin: 0;
  padding: 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 24px;
  text-align: left;
  background: rgba(28, 3, 3, 0.2);
  border-radius: 6px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(2.3px);
  backdrop-filter: blur(2.3px);
  border: 1px solid rgba(28, 3, 3, 0.13);
}

/* Kırmızı yuvarlak oklar — görsel üzerinde */
.kku-manset__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #c90d0d;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
  padding: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: background 0.2s, transform 0.2s;
}
.kku-manset__arrow:hover {
  background: #a80b0b;
  transform: translateY(-50%) scale(1.05);
}
.kku-manset__arrow--prev { left: 16px; }
.kku-manset__arrow--next { right: 16px; }

/* Sağ üst thumb şeridi */
.kku-manset__thumbs {
  position: absolute;
  top: 20px;
  right: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 11;
}
.kku-manset__thumb {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  overflow: visible;
  cursor: pointer;
  position: relative;
  border: 2px solid #cfd9df;
  margin-left: -10px;
  opacity: 0.9;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  background: #fff;
}
.kku-manset__thumb:first-child { margin-left: 0; }
.kku-manset__thumb > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.kku-manset__thumb.is-active,
.kku-manset__thumb:hover {
  transform: scale(1.55) translateY(-2px);
  z-index: 3;
  border-color: #fff;
  opacity: 1;
  box-shadow: 0 0 15px rgba(255,255,255,0.5), 0 0 25px rgba(255,255,255,0.25);
}
.kku-manset__thumb-preview {
  display: none;
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.35);
  z-index: 20;
  pointer-events: none;
}
.kku-manset__thumb-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kku-manset__thumb:hover .kku-manset__thumb-preview { display: block; }

.kku-manset__gallery-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid #cfd9df;
  background: rgba(255, 255, 255, 0.95);
  color: #03204d;
  cursor: pointer;
  margin-left: 6px;
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.kku-manset__gallery-btn:hover { transform: scale(1.1); }

/* Manşet galeri modal */
.kku-manset-modal[hidden] { display: none; }
.kku-manset-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: start center;
  padding: 80px 16px 24px;
}
.kku-manset-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.kku-manset-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1200px, 100%);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.kku-manset-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid #eee;
}
.kku-manset-modal__header h4 { margin: 0; font-size: 18px; font-weight: 600; }
.kku-manset-modal__close {
  border: none;
  background: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #666;
}
.kku-manset-modal__body { padding: 16px; max-height: 70vh; overflow: auto; }
.kku-manset-modal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}
.kku-manset-modal__item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 180px;
  display: block;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.kku-manset-modal__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.kku-manset-modal__item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.kku-manset-modal__item:hover img { transform: scale(1.08); }

/* —— Hızlı Linkler (Orta Banner — legacy _OrtaBannerMenu / Swiper) —— */
.kku-quicklinks {
  background: linear-gradient(135deg, var(--kku-navy-deep) 0%, var(--kku-red) 100%);
  max-width: 100vw;
  margin: 0;
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
}
.kku-service-swiper {
  max-width: 100vw;
  margin: 0;
  padding: 0 80px;
  position: relative;
  touch-action: pan-x pinch-zoom;
  cursor: grab;
}
.kku-service-swiper.swiper-grabbing {
  cursor: grabbing;
}
.kku-quicklinks .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* transform slide'da değil kartta — Swiper sürüklemesi bozulmasın */
.kku-quicklinks .swiper-slide .kku-service-card {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.kku-quicklinks .swiper-slide:not(.swiper-slide-visible) .kku-service-card {
  opacity: 0.3;
  transform: scale(0.9);
}
.kku-quicklinks .swiper-slide.swiper-slide-visible .kku-service-card {
  opacity: 1;
  transform: scale(1);
}
.kku-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  border-radius: 20px;
  padding: 1.5rem 1rem;
  text-decoration: none;
  color: #fff;
  height: 180px;
  width: 100%;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease;
  -webkit-user-drag: none;
  user-select: none;
}
.kku-quicklinks .swiper-slide.swiper-slide-visible .kku-service-card:hover {
  transform: translateY(-5px);
  opacity: 1;
  color: #fff;
  text-decoration: none;
}
.kku-service-card__icon {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  position: relative;
  z-index: 2;
}
.kku-service-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}
.kku-service-card:hover .kku-service-card__icon img { transform: scale(1.1); }
.kku-service-card__title {
  text-align: center;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.3;
  color: #fff;
  margin-top: 0.5rem;
  position: relative;
  z-index: 2;
}
.kku-quicklinks .swiper-button-next,
.kku-quicklinks .swiper-button-prev {
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.3s ease;
}
.kku-quicklinks .swiper-button-next:hover,
.kku-quicklinks .swiper-button-prev:hover {
  background: rgba(255,255,255,1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.kku-quicklinks .swiper-button-next::after,
.kku-quicklinks .swiper-button-prev::after {
  color: var(--kku-red);
  font-size: 20px;
  font-weight: bold;
}
.kku-quicklinks .swiper-button-next:hover::after,
.kku-quicklinks .swiper-button-prev:hover::after { color: var(--kku-navy-deep); }
.kku-quicklinks .swiper-button-prev { left: 20px; }
.kku-quicklinks .swiper-button-next { right: 20px; }
.kku-quicklinks .swiper-pagination {
  position: relative;
  margin-top: 1rem;
}
.kku-quicklinks .swiper-pagination-bullet {
  background: rgba(255,255,255,0.5);
  opacity: 1;
  transition: all 0.3s ease;
}
.kku-quicklinks .swiper-pagination-bullet-active {
  background: var(--kku-gold);
  transform: scale(1.2);
}
@media (max-width: 1200px) {
  .kku-service-swiper { padding: 0 70px; }
}
@media (max-width: 768px) {
  .kku-service-swiper { padding: 0 60px; }
  .kku-service-card { height: 160px; padding: 1.25rem 0.75rem; }
  .kku-service-card__icon { width: 50px; height: 50px; }
  .kku-service-card__title { font-size: 1rem; }
  .kku-quicklinks .swiper-button-next,
  .kku-quicklinks .swiper-button-prev { width: 40px; height: 40px; }
  .kku-quicklinks .swiper-button-next::after,
  .kku-quicklinks .swiper-button-prev::after { font-size: 16px; }
  .kku-quicklinks .swiper-button-prev { left: 15px; }
  .kku-quicklinks .swiper-button-next { right: 15px; }
}
@media (max-width: 480px) {
  .kku-quicklinks { padding: 0.5rem 0; }
  .kku-service-swiper { padding: 0 50px; }
  .kku-service-card { height: 140px; padding: 1rem 0.5rem; }
  .kku-service-card__icon { width: 64px; height: 64px; }
  .kku-service-card__title { font-size: 1.1rem; }
  .kku-quicklinks .swiper-button-next,
  .kku-quicklinks .swiper-button-prev { width: 36px; height: 36px; }
  .kku-quicklinks .swiper-button-next::after,
  .kku-quicklinks .swiper-button-prev::after { font-size: 14px; }
  .kku-quicklinks .swiper-button-prev { left: 10px; }
  .kku-quicklinks .swiper-button-next { right: 10px; }
}

/* —— Duyurular —— */
.kku-duyuru-section {
  padding: 15px 0 30px;
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.97), rgba(252,252,252,0.97));
}
.kku-duyuru-list { display: flex; flex-direction: column; gap: 15px; }
.kku-duyuru-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  border-left: 4px solid var(--kku-blue);
  transition: box-shadow 0.3s, transform 0.3s;
}
.kku-duyuru-item:hover {
  box-shadow: 0 8px 20px rgba(0,84,147,0.15);
  transform: translateY(-3px);
}
.kku-duyuru-info { display: flex; align-items: flex-start; flex: 1; }
.kku-duyuru-date {
  min-width: 70px;
  margin-right: 15px;
  color: var(--kku-blue);
  text-align: center;
  border-right: 1px solid #f0f0f0;
  padding-right: 15px;
}
.kku-duyuru-date .day { font-size: 20px; font-weight: 700; display: block; line-height: 1; }
.kku-duyuru-date .month { font-size: 14px; text-transform: uppercase; display: block; margin: 4px 0; }
.kku-duyuru-date .year { font-size: 13px; opacity: 0.7; display: block; }
.kku-duyuru-title { font-size: 16px; font-weight: 600; margin: 0; line-height: 1.4; }
.kku-duyuru-title a { color: var(--kku-text); text-decoration: none; }
.kku-duyuru-title a:hover { color: var(--kku-blue); }
.kku-btn-detay {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8f9fa;
  color: var(--kku-blue);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}
.kku-btn-detay:hover { background: var(--kku-blue); color: #fff; }
.kku-pagination-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 15px;
}
.kku-pagination {
  display: flex;
  gap: 8px;
  background: #fff;
  padding: 10px 15px;
  border-radius: 50px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}
.kku-page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f8f9fa;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font: inherit;
}
.kku-page-link:hover { background: #e9ecef; color: var(--kku-blue); }
.kku-page-link.is-active { background: var(--kku-blue); color: #fff; }
.kku-page-link.is-disabled { opacity: 0.5; pointer-events: none; }
.kku-btn-tumunu {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--kku-blue);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}
.kku-btn-tumunu:hover { background: #003c6a; color: #fff; }

/* —— Haberler —— */
.kku-haber-section {
  position: relative;
  padding: 30px 0 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.97), rgba(252,252,252,0.97));
}
.kku-haber-carousel { position: relative; padding: 10px 0 100px; }
.kku-haber-footer,
.kku-etkinlik-footer {
  display: flex;
  justify-content: center;
  padding: 0 0 28px;
}
.kku-etkinlik-footer { padding-top: 8px; }
.kku-haber-page { display: none; }
.kku-haber-page.is-active { display: block; }
.kku-haber-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 15px;
}
.kku-news-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 450px;
  transition: transform 0.4s, box-shadow 0.4s;
}
.kku-news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}
.kku-news-card a { text-decoration: none; color: inherit; display: block; height: 100%; }
.kku-news-card__img { height: 245px; overflow: hidden; background: #f8f9fa; }
.kku-news-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.kku-news-card:hover .kku-news-card__img img { transform: scale(1.08); }
.kku-news-card__body { padding: 20px; display: flex; flex-direction: column; height: calc(100% - 245px); }
.kku-news-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--kku-text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 15px;
  flex: 1;
}
.kku-news-card:hover .kku-news-card__title { color: var(--kku-red); }
.kku-news-card__meta {
  padding: 8px 12px;
  border-radius: 20px;
  background: #f8f9fa;
  font-size: 13px;
  color: #7f8c8d;
  display: flex;
  align-items: center;
  gap: 6px;
}
.kku-news-card__meta i { color: var(--kku-red); }
.kku-haber-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  padding: 15px;
  background: rgba(255,255,255,0.98);
  border-radius: 30px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  list-style: none;
  margin: 0;
}
.kku-haber-indicators button {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: none;
  background: #f0f0f0;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.kku-haber-indicators button.is-active { outline: 2px solid var(--kku-red); transform: scale(1.1); }

/* —— Etkinlikler —— */
.kku-etkinlik-section {
  padding: 10px 0 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.97), rgba(252,252,252,0.97));
}
.kku-etkinlik-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.kku-takvim {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
}
.kku-takvim__header {
  background: var(--kku-red);
  padding: 15px;
  color: #fff;
}
.kku-takvim__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.kku-takvim__nav button {
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
}
.kku-takvim__nav button:hover { background: rgba(255,255,255,0.4); }
.kku-takvim__title { font-size: 20px; font-weight: 600; text-transform: capitalize; }
.kku-takvim__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}
.kku-takvim__days span {
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
  font-size: 12px;
  color: #495057;
  text-transform: uppercase;
}
.kku-takvim__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: #f1f3f5;
  padding: 1px;
}
.kku-takvim__cell {
  background: #fff;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.2s;
}
.kku-takvim__cell.is-empty { background: #f8f9fa; cursor: default; }
.kku-takvim__cell.is-today { background: #e8f4ff; box-shadow: inset 0 0 0 2px #007bff; color: #007bff; font-weight: 700; }
.kku-takvim__cell.is-selected { background: #ffe8e8; box-shadow: inset 0 0 0 2px var(--kku-red); }
.kku-takvim__cell.has-event { color: var(--kku-red); }
.kku-takvim__badge {
  position: absolute;
  top: 3px;
  right: 3px;
  background: linear-gradient(135deg, #ff4b51, var(--kku-red));
  color: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.4);
}
.kku-gunun-etkinlikleri {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 15px;
  min-height: 440px;
}
.kku-gunun-etkinlikleri h3 {
  margin: 0 0 15px;
  font-size: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e9ecef;
}
.kku-etkinlik-ozet {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 15px;
  margin-bottom: 12px;
  border-left: 3px solid var(--kku-red);
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.kku-etkinlik-ozet:hover { transform: translateX(5px); }
.kku-etkinlik-ozet i { color: var(--kku-red); font-size: 20px; }
.kku-etkinlik-ozet a { color: var(--kku-text); text-decoration: none; font-weight: 600; }
.kku-etkinlik-ozet a:hover { color: var(--kku-red); }
.kku-etkinlik-yok { color: var(--kku-muted); font-style: italic; text-align: center; padding: 20px; }

/* —— Sayılarla Biz —— */
.kku-stats-section {
  padding: 30px 0 60px;
  background: linear-gradient(135deg, rgba(255,255,255,0.97), rgba(248,249,250,0.97));
}
.kku-stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 1.5rem;
}
.kku-stat-card {
  border-radius: 16px;
  padding: 25px 20px;
  min-height: 180px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.4s;
}
.kku-stat-card:hover { transform: translateY(-10px); }
.kku-stat-card--red { background: linear-gradient(135deg, var(--kku-red), #A5040A); }
.kku-stat-card--navy { background: linear-gradient(135deg, var(--kku-navy), #04285C); }
.kku-stat-card--teal { background: linear-gradient(135deg, #4793AF, #36728A); }
.kku-stat-card--gold { background: linear-gradient(135deg, #FFC470, #E0A048); color: #2B2B2B; }
.kku-stat-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  font-size: 24px;
}
.kku-stat-card h3 { font-size: 36px; font-weight: 700; margin: 0; }
.kku-stat-card p { margin: 5px 0 0; opacity: 0.9; font-size: 16px; }
.kku-stat-card__bg {
  position: absolute;
  bottom: -15px;
  right: -15px;
  font-size: 100px;
  opacity: 0.1;
  transform: rotate(-15deg);
}
.kku-chart-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 1.5rem;
}
.kku-chart-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  min-height: 400px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.kku-chart-card h4 {
  text-align: center;
  font-size: 18px;
  margin: 0 0 15px;
  padding-bottom: 10px;
  position: relative;
}
.kku-chart-card h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--kku-red), var(--kku-navy));
}
.kku-chart-box { width: 100%; height: 330px; }
.kku-chart-box--wide { height: 300px; }
.kku-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.kku-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  min-height: 200px;
}
.kku-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--kku-red), var(--kku-navy));
}
.kku-info-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(201,21,27,0.1);
  display: grid;
  place-items: center;
  margin-right: 20px;
  flex-shrink: 0;
  font-size: 32px;
  color: var(--kku-red);
}
.kku-info-card h4 { margin: 0 0 10px; font-size: 18px; }
.kku-info-card .num { font-size: 28px; font-weight: 700; color: var(--kku-navy); margin: 0 0 5px; }
.kku-info-card .desc { color: var(--kku-muted); font-size: 14px; margin: 0; }

/* —— İlgili Linkler (legacy owl-carousel-kurulus → Swiper) —— */
.kku-links-section { padding: 10px 0 40px; }
.kku-kurulus-swiper {
  padding: 20px 56px;
  position: relative;
  overflow: hidden;
}
.kku-kurulus-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kku-kurulus-swiper .swiper-slide a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  min-height: 104px;
}
.kku-kurulus-swiper .swiper-slide a:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.kku-kurulus-swiper img {
  height: 80px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.kku-kurulus-swiper .swiper-button-next,
.kku-kurulus-swiper .swiper-button-prev {
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}
.kku-kurulus-swiper .swiper-button-next:hover,
.kku-kurulus-swiper .swiper-button-prev:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}
.kku-kurulus-swiper .swiper-button-next::after,
.kku-kurulus-swiper .swiper-button-prev::after {
  color: var(--kku-red);
  font-size: 18px;
  font-weight: bold;
}
.kku-kurulus-swiper .swiper-button-prev { left: 8px; }
.kku-kurulus-swiper .swiper-button-next { right: 8px; }
@media (max-width: 768px) {
  .kku-kurulus-swiper { padding: 16px 44px; }
  .kku-kurulus-swiper .swiper-button-next,
  .kku-kurulus-swiper .swiper-button-prev { width: 36px; height: 36px; }
  .kku-kurulus-swiper img { height: 64px; }
}

/* —— Footer (legacy modern-footer uyumu) —— */
.kku-footer {
  position: relative;
  margin-top: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
  z-index: 20;
  clear: both;
}
.kku-footer__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 20% 30%, #fff 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.kku-footer__top {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0 2rem;
}
.kku-footer__layout {
  display: grid;
  grid-template-columns: minmax(280px, 5fr) minmax(320px, 6fr);
  gap: 2rem;
  align-items: start;
}
.kku-footer__brand {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s, background 0.3s;
}
.kku-footer__brand:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}
.kku-footer__logo img {
  display: block;
  width: 237px;
  max-width: 100%;
  height: auto;
}
.kku-footer__address {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.kku-footer__address-icon {
  width: 45px;
  height: 45px;
  background: rgba(5, 49, 112, 0.25);
  border: 1px solid rgba(5, 49, 112, 0.3);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.kku-footer__address-icon i {
  font-size: 1.6rem;
  color: #1e88e5;
}
.kku-footer__address-text {
  color: #fff;
  line-height: 1.8;
  font-size: 0.95rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.kku-footer__side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.kku-footer__title {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.kku-footer__title i { color: #1e88e5; font-size: 1.1rem; }
.kku-footer ul { list-style: none; margin: 0; padding: 0; }
.kku-footer__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: background 0.3s, transform 0.3s;
}
.kku-footer__item:hover {
  background: rgba(0, 0, 0, 0.55);
  transform: translateX(4px);
}
.kku-footer__item-icon {
  width: 45px;
  height: 45px;
  background: rgba(5, 49, 112, 0.2);
  border: 1px solid rgba(5, 49, 112, 0.25);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.kku-footer__item-icon i { color: #cb161f; font-size: 1.2rem; }
.kku-footer__item-body { flex: 1; min-width: 0; }
.kku-footer__label {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.15rem;
}
.kku-footer a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.4;
  word-break: break-word;
}
.kku-footer a:hover { color: #1e88e5; }
.kku-footer__bottom {
  position: relative;
  z-index: 1;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(20, 20, 20, 0.85));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
}
.kku-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1.5rem;
}
.kku-footer__copyright,
.kku-footer__credit {
  margin: 0;
  color: #fff;
  font-size: 0.9rem;
  opacity: 0.9;
}
.kku-footer__copyright i,
.kku-footer__credit i { margin-right: 0.35rem; opacity: 0.8; }

/* —— Responsive —— */
@media (max-width: 992px) {
  .kku-haber-grid { grid-template-columns: repeat(2, 1fr); }
  .kku-stat-cards { grid-template-columns: repeat(2, 1fr); }
  .kku-chart-row { grid-template-columns: 1fr; }
  .kku-info-cards { grid-template-columns: 1fr; }
  .kku-footer__layout { grid-template-columns: 1fr; }
  .kku-footer__side { grid-template-columns: 1fr; }
  .kku-manset__stage { height: 400px; }
  .kku-manset__link img { height: 400px; }
  .kku-manset__thumbs { display: none; }
  .kku-manset__arrow--prev { left: 8px; }
  .kku-manset__arrow--next { right: 8px; }
  .kku-manset__aciklama { font-size: 14px; padding: 12px; }
}
@media (max-width: 991px) {
  .kku-header-main__inner { flex-direction: column; align-items: stretch; }
  .kku-logo-wrap { text-align: center; }
  .kku-logo-wrap img { margin: 0 auto; }
  .kku-nav-toggle { display: flex; align-items: center; gap: 8px; }
  .kku-main-menu__list {
    display: none;
    flex-direction: column;
    justify-content: stretch;
    border-top: 1px solid #eee;
  }
  .kku-main-menu__list.is-open { display: flex; }
  .kku-main-menu__link,
  .kku-mega__trigger {
    width: 100%;
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
    justify-content: space-between;
  }
  .kku-mega__panel {
    position: static;
    box-shadow: none;
  }
  .kku-mega__panel-inner {
    background: #f7f9fc;
    border-radius: 0;
    padding: 0 0 12px;
    box-shadow: none;
  }
  .kku-mega__grid { flex-direction: column; margin: 0; }
  .kku-mega__col {
    min-width: 0;
    border-right: none;
    border-bottom: 1px solid #e8ecf0;
    padding: 12px 20px 12px 28px;
  }
  .kku-mega__cols-2 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .kku-manset__caption { display: none; }
  .kku-manset__stage { height: 220px; }
  .kku-manset__link img { height: 220px; object-fit: cover; }
  .kku-ustbar__left li a { border-right: none; padding: 4px 8px; }
  .kku-etkinlik-row { grid-template-columns: 1fr; }
  .kku-haber-grid { grid-template-columns: 1fr; }
  .kku-news-card { height: auto; }
  .kku-news-card__img { height: 200px; }
  .kku-duyuru-item { flex-direction: column; align-items: flex-start; gap: 12px; }
  .kku-stat-cards { grid-template-columns: 1fr; }
  .kku-pagination-wrap { flex-direction: column; align-items: stretch; }
}
