/* ========== SECENEK 1 — LIGHT / MODERN THEME ========== */

html, body {
  overflow-x: hidden;
}

/* ========== HERO SLIDER ========== */
.hero-wrapper {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.hero {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 590px;
  background: #242222;
}

/* Progress Bar — dot'ların yanında */
.hero-progress {
  width: 120px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin-left: 4px;
}

.hero-progress-bar {
  height: 100%;
  width: 0%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
}

/* Background slides */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(36, 34, 34, 0.85);
}

.hero-slide--red::after {
  background: rgba(165, 30, 34, 0.8);
}

/* Content area */
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 590px;
  padding: 80px 120px 40px;
}

/* Text slides — grid overlay so all slides stack in same cell */
.hero-text {
  display: grid;
  flex: 1;
  width: 100%;
}

.hero-text-slide {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.hero-text-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 1;
}

/* Yazı+butonlar grubu */
.hero-content {
  display: flex;
  flex-direction: column;
}

/* Özel gün slide'ları — büyük yazı, tam orta */
.hero-content--centered {
  align-items: center;
  text-align: center;
}

.hero-content--centered .hero-title {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-content--centered .hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.5px;
  max-width: 600px;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: #EBEBEB;
  line-height: 1.5;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Hero Bağış Button */
.btn-bagis-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-red);
  color: var(--color-yellow);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-bagis-hero:hover {
  background: var(--color-red-dark);
  transform: translateY(-1px);
}

.btn-bagis-hero .btn-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-bagis-hero .btn-icon svg {
  width: 100%;
  height: 100%;
}

.btn-bagis-hero .btn-icon svg path {
  fill: var(--color-yellow);
}

.btn-bagis-hero .btn-text {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 800;
  color: var(--color-yellow);
  letter-spacing: 0.3px;
}

/* Hero Outline Button */
.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 28px;
  border: 2px solid #fff;
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline-hero:hover {
  background: #fff;
  color: var(--color-black);
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}

.hero-stat {
  padding-top: 12px;
  position: relative;
}

.hero-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: #fff;
}

.hero-stat-number {
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1.2;
}

.hero-stat-label {
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  display: block;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Nav wrapper — masaüstünde görünmez, çocuklar bağımsız konumlanır */
.hero-nav {
  display: contents;
}

/* Arrows — masaüstünde sağda, ayrı ayrı konumlanır */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
  padding: 0;
}

.hero-arrow.prev {
  right: 180px; /* 120px + 48px + 12px gap */
}

.hero-arrow.next {
  right: 120px;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.hero-arrow svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

/* Dots — masaüstünde sol altta */
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 120px;
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  padding: 0;
}

.hero-dot.active {
  background: var(--color-yellow);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.hero-dot.active:hover {
  background: var(--color-yellow);
}

/* ========== HERO RESPONSIVE — 1024px ========== */
@media (max-width: 1024px) {
  .hero { min-height: 530px; }
  .hero-inner {
    padding: 60px 60px 32px;
    min-height: 530px;
  }
  .hero-title { font-size: 34px; }
  .hero-content--centered .hero-title { font-size: 46px; }
  .hero-stat-number { font-size: 22px; }
  .hero-stats { gap: 28px; }
  .hero-arrow.prev { right: 120px; }
  .hero-arrow.next { right: 60px; }
  .hero-dots { left: 60px; bottom: 32px; }
}

/* ========== HERO RESPONSIVE — 768px ========== */
@media (max-width: 768px) {
  .hero-wrapper { padding: 0 24px; }
  .hero { min-height: 550px; }
  .hero-inner {
    padding: 40px 32px 28px;
    min-height: 550px;
    align-items: center;
  }
  .hero-text-slide {
    align-items: center;
    text-align: center;
  }
  .hero-content {
    align-items: center;
    text-align: center;
  }
  .hero-title { font-size: 28px; }
  .hero-content--centered .hero-title { font-size: 36px; }
  .hero-subtitle { font-size: 14px; }
  .hero-content--centered .hero-subtitle { font-size: 16px; }
  .hero-buttons { justify-content: center; }

  /* Stats — mobilde 2x2 grid, eşit genişlik */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
    width: 100%;
    max-width: 360px;
  }
  .hero-stat {
    text-align: center;
  }
  .hero-stat::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .hero-stat-number { font-size: 20px; }
  .hero-stat-label { font-size: 9px; }

  /* Arrows+Dots birleşik — ← · · → */
  .hero-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
  }
  .hero-arrow {
    position: static;
    transform: none;
    width: 38px;
    height: 38px;
  }
  .hero-dots {
    position: static;
  }
}

/* ========== HERO RESPONSIVE — 480px ========== */
@media (max-width: 480px) {
  .hero-wrapper { padding: 0 20px; }
  .hero { min-height: 620px; }
  .hero-inner {
    padding: 40px 24px 28px;
    min-height: 620px;
  }
  .hero-title { font-size: 24px; }
  .hero-content--centered .hero-title { font-size: 30px; }
  .hero-content--centered .hero-subtitle { font-size: 14px; }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-stat-number { font-size: 18px; }
  .hero-stat-label { font-size: 9px; }
  .hero-arrow {
    width: 34px;
    height: 34px;
  }
  .hero-arrow svg {
    width: 14px;
    height: 14px;
  }
}

/* ========== HIZLI BAĞIŞ SECTION ========== */
.quick-donate-wrapper {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 40px var(--container-padding) 0;
  position: relative;
}

.quick-donate {
  position: relative;
}

/* Top line — sarı + kırmızı net blok */
.quick-donate-gradient {
  height: 5px;
  display: flex;
}

.quick-donate-gradient::before {
  content: '';
  flex: 1;
  background: var(--color-yellow);
}

.quick-donate-gradient::after {
  content: '';
  flex: 1;
  background: var(--color-red);
}

/* Header — gradient çizginin ortasında, beyaz arka planlı */
.quick-donate-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -2.5px;
  transform: translateY(-50%);
  position: relative;
  z-index: 1;
}

.quick-donate-title {
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: var(--color-red);
  padding: 10px 32px;
  border: 9px solid var(--color-white);
  border-radius: 9px;
}

/* Fund Slider — ekran kenarlarına kadar genişler */
.fund-slider {
  position: relative;
  overflow: hidden;
  padding: 0 0 32px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  user-select: none;
  -webkit-user-select: none;
}

.fund-slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}

/* Fund Card */
.fund-card {
  flex: 0 0 calc((100% - 48px) / 4);
  background: rgba(253, 185, 18, 0.02);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 1px 20px;
  gap: 16px;
}

/* Card accent bar */
.fund-card-accent {
  display: flex;
  justify-content: center;
}

.fund-card-accent .accent-red {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-red);
  border-radius: 2px;
}

.fund-card-accent .accent-yellow {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-yellow);
  border-radius: 2px 0 0 2px;
}

.fund-card-accent--split .accent-red {
  border-radius: 0 2px 2px 0;
}

/* Card fund name */
.fund-card-name {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-black);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

/* Card action buttons */
.fund-card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 200px;
  padding: 0 12px;
}

/* Bağış button in card */
.fund-btn-bagis {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-red);
  color: var(--color-yellow);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.fund-btn-bagis:hover {
  background: var(--color-yellow);
  transform: translateY(-1px);
}

.fund-btn-bagis:hover svg path {
  fill: var(--color-red);
}

.fund-btn-bagis:hover span {
  color: var(--color-red);
}

.fund-btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.fund-btn-icon path {
  transition: fill 0.3s ease;
}

.fund-btn-bagis span {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 800;
  color: var(--color-yellow);
  letter-spacing: 0.3px;
}

/* Detail button in card */
.fund-btn-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid var(--color-gray-150);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.fund-btn-detail:hover {
  border-color: var(--color-red);
}

.fund-detail-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--color-gray-400);
  transition: color 0.2s ease;
}

.fund-btn-detail span {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-gray-400);
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.fund-btn-detail:hover .fund-detail-icon,
.fund-btn-detail:hover span {
  color: var(--color-red);
}

/* Slider arrows */
.fund-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1.5px solid var(--color-gray-150);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-sm);
  padding: 0;
}

.fund-arrow:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  box-shadow: var(--shadow-md);
}

.fund-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-gray-500);
  transition: stroke 0.2s ease;
}

.fund-arrow:hover svg {
  stroke: #fff;
}

.fund-arrow-prev {
  left: 8px;
}

.fund-arrow-next {
  right: 8px;
}

.fund-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* ========== HIZLI BAĞIŞ RESPONSIVE — 1024px ========== */
@media (max-width: 1024px) {
  .quick-donate-title {
    font-size: 24px;
  }

  .fund-card {
    flex: 0 0 calc((100% - 32px) / 3);
  }

  .fund-card-name {
    font-size: 16px;
  }
}

/* ========== HIZLI BAĞIŞ RESPONSIVE — 768px ========== */
@media (max-width: 768px) {
  .quick-donate-wrapper {
    padding: 16px 24px 0;
  }

  .quick-donate-header {
    margin-top: -14px;
  }

  .quick-donate-title {
    font-size: 22px;
    padding: 3px 16px;
  }

  .fund-card {
    flex: 0 0 calc((100% - 12px) / 2);
  }

  .fund-slider-track {
    gap: 12px;
  }

  .fund-card {
    padding: 20px 1px 16px;
    gap: 12px;
  }

  .fund-card-name {
    font-size: 14px;
  }

  .fund-card-actions {
    max-width: 180px;
  }

  .fund-btn-bagis {
    padding: 9px 12px;
    gap: 6px;
  }

  .fund-btn-bagis span {
    font-size: 11px;
  }

  .fund-btn-icon {
    width: 16px;
    height: 16px;
  }

  .fund-btn-detail {
    padding: 7px 12px;
  }

  .fund-btn-detail span {
    font-size: 11px;
  }

  .fund-arrow {
    width: 34px;
    height: 34px;
  }

  .fund-arrow-prev { left: 4px; }
  .fund-arrow-next { right: 4px; }
}

/* ========== HIZLI BAĞIŞ RESPONSIVE — 480px ========== */
@media (max-width: 480px) {
  .quick-donate-wrapper {
    padding: 12px 16px 0;
  }

  .quick-donate-header {
    margin-top: -12px;
  }

  .quick-donate-title {
    font-size: 18px;
    padding: 2px 12px;
  }

  .fund-slider-track {
    gap: 10px;
  }

  .fund-card {
    flex: 0 0 calc((100% - 10px) / 2);
    padding: 16px 1px 14px;
    gap: 10px;
  }

  .fund-card-name {
    font-size: 13px;
  }

  .fund-card-accent .accent-red,
  .fund-card-accent .accent-yellow {
    width: 28px;
  }

  .fund-card-actions {
    max-width: 160px;
    padding: 0 8px;
  }

  .fund-btn-bagis {
    padding: 8px 10px;
  }

  .fund-btn-bagis span {
    font-size: 10px;
  }

  .fund-btn-icon {
    width: 14px;
    height: 14px;
  }

  .fund-btn-detail {
    padding: 6px 10px;
  }

  .fund-btn-detail span {
    font-size: 10px;
  }

  .fund-detail-icon {
    width: 12px;
    height: 12px;
  }

  .fund-arrow {
    width: 28px;
    height: 28px;
  }

  .fund-arrow svg {
    width: 12px;
    height: 12px;
  }

  .fund-arrow-prev { left: 2px; }
  .fund-arrow-next { right: 2px; }
}

/* ========== VAKIF BÖLÜMÜ ========== */
.vakif-wrapper {
  width: 100%;
  padding: 10px 0 0;
}

.vakif-section {
  position: relative;
  display: flex;
  background: var(--color-white);
  border-radius: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  min-height: 558px;
}

.vakif-content {
  position: relative;
  z-index: 2;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0 60px 80px;
  flex-shrink: 0;
}

.vakif-heading {
  font-family: var(--font-primary);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
}

.vakif-heading-dark { color: #1a1a1a; }
.vakif-heading-yellow { color: var(--color-yellow); }
.vakif-heading-red { color: var(--color-red); }

.vakif-desc {
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #6b7280;
  max-width: 460px;
  margin-bottom: 36px;
}

/* Stats — üst çizgili tasarım */
.vakif-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 36px;
}

.vakif-stat {
  position: relative;
  padding-top: 12px;
}

.vakif-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--color-red);
}

.vakif-stat-number {
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  display: block;
}

.vakif-stat-label {
  font-family: var(--font-secondary);
  font-size: 10px;
  font-weight: 500;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-top: 4px;
}

/* Butonlar — pill/oval, metin | ok */
.vakif-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vakif-btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--color-red);
  border-radius: 9px;
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.2s ease;
}

.vakif-btn-primary:hover {
  background: var(--color-red-dark);
  transform: translateY(-1px);
}

.vakif-btn-primary .vakif-btn-text {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color-yellow);
  padding: 14px 20px 14px 28px;
}

.vakif-btn-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.vakif-btn-primary .vakif-btn-arrow {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-yellow);
  padding: 14px 24px 14px 16px;
}

.vakif-btn-secondary {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #d1d5db;
  border-radius: 9px;
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.vakif-btn-secondary:hover {
  border-color: var(--color-red);
  transform: translateY(-1px);
}

.vakif-btn-secondary .vakif-btn-text {
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  padding: 12px 16px 12px 24px;
  transition: color 0.2s ease;
}

.vakif-btn-secondary .vakif-btn-divider {
  background: #d1d5db;
  transition: background 0.2s ease;
}

.vakif-btn-secondary .vakif-btn-arrow {
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 500;
  color: #9ca3af;
  padding: 12px 20px 12px 12px;
  transition: color 0.2s ease;
}

.vakif-btn-secondary:hover .vakif-btn-text,
.vakif-btn-secondary:hover .vakif-btn-arrow {
  color: var(--color-red);
}

.vakif-btn-secondary:hover .vakif-btn-divider {
  background: var(--color-red);
}

.vakif-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  overflow: hidden;
}

.vakif-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vakif-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    #fff 0%,
    rgba(255,255,255,0.9) 12%,
    rgba(255,255,255,0.4) 35%,
    rgba(255,255,255,0) 60%
  );
}

.vakif-watermark {
  position: absolute;
  bottom: 30px;
  right: 40px;
  font-family: var(--font-primary);
  font-size: 120px;
  font-weight: 800;
  color: rgba(182,182,182,0.19);
  line-height: 1;
  letter-spacing: -4px;
  pointer-events: none;
}

/* ========== VAKIF RESPONSIVE — 1024px ========== */
@media (max-width: 1024px) {
  .vakif-section { min-height: 460px; }
  .vakif-content { padding: 48px 0 48px 48px; }
  .vakif-heading { font-size: 36px; }
  .vakif-desc { font-size: 14px; max-width: 380px; }
  .vakif-stat-number { font-size: 26px; }
  .vakif-stat + .vakif-stat { padding-left: 24px; }
  .vakif-stat { padding-right: 24px; }
  .vakif-watermark { font-size: 80px; }
}

/* ========== VAKIF RESPONSIVE — 768px ========== */
@media (max-width: 768px) {
  .vakif-wrapper { padding: 16px 0 0; }
  .vakif-section { flex-direction: column-reverse; min-height: auto; }
  .vakif-content { width: 100%; padding: 32px 28px; }
  .vakif-image { position: relative; width: 100%; height: 240px; }
  .vakif-image-overlay {
    background: linear-gradient(180deg,
      rgba(255,255,255,0) 40%,
      rgba(255,255,255,0.8) 80%,
      #fff 100%
    );
  }
  .vakif-heading { font-size: 32px; }
  .vakif-desc { max-width: 100%; font-size: 14px; }
  .vakif-stats { flex-wrap: wrap; gap: 16px 0; }
  .vakif-watermark { font-size: 60px; bottom: 16px; right: 20px; }
}

/* ========== VAKIF RESPONSIVE — 480px ========== */
@media (max-width: 480px) {
  .vakif-wrapper { padding: 12px 0 0; }
  .vakif-content { padding: 24px 20px; }
  .vakif-heading { font-size: 28px; }
  .vakif-desc { font-size: 13px; margin-bottom: 24px; }
  .vakif-stat-number { font-size: 22px; }
  .vakif-stat-label { font-size: 10px; }
  .vakif-stat { padding-right: 16px; }
  .vakif-stat + .vakif-stat { padding-left: 16px; }
  .vakif-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .vakif-watermark { font-size: 48px; bottom: 10px; right: 12px; }
}

/* ========== HABERLER SECTION ========== */
.news-wrapper {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 64px var(--container-padding) 64px;
}

.news-title {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-black);
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 32px;
}

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* News Card */
.news-card {
  position: relative;
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease;
}

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

.news-card:active {
  transform: scale(0.98);
}

.news-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 340 / 222;
  border-radius: 9px;
  overflow: hidden;
}

/* Crossfade görseller */
.news-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease, transform 0.4s ease;
}

.news-img.active {
  opacity: 1;
}

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

/* Dark gradient overlay */
.news-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02) 0%,
    rgba(0, 0, 0, 0.08) 30%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.78) 100%
  );
  pointer-events: none;
}

/* Category badge */
.news-card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(200, 16, 46, 0.75);
  border: 1px solid rgba(200, 16, 46, 0.3);
  color: white;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 6px 14px;
  border-radius: 100px;
  z-index: 1;
}

/* Bottom content */
.news-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 1;
}

.news-card-date {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}

.news-card-title {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

/* Arrow button — kartın köşesine oturur */
.news-card-arrow {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ededed;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-radius 0.3s ease;
  z-index: 2;
}

.news-card-arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-gray-500);
  transition: stroke 0.3s ease, transform 0.3s ease;
}

.news-card:hover .news-card-arrow {
  background: var(--color-red);
}

.news-card:hover .news-card-arrow svg {
  stroke: white;
  transform: rotate(20deg);
}

.news-card:active .news-card-arrow {
  background: #a00d24;
  border-radius: 0;
}

.news-card:active .news-card-arrow svg {
  transform: rotate(25deg);
}

/* News Footer — Tüm Haberler butonu */
.news-footer {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.news-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-red);
  text-decoration: none;
  border: 2px solid var(--color-red);
  padding: 12px 28px;
  border-radius: var(--radius-md);
  transition: background 0.3s ease, color 0.3s ease, gap 0.3s ease;
}

.news-all-btn svg {
  stroke: var(--color-red);
  transition: stroke 0.3s ease, transform 0.3s ease;
}

.news-all-btn:hover {
  background: var(--color-red);
  color: white;
  gap: 12px;
}

.news-all-btn:hover svg {
  stroke: white;
  transform: translateX(2px);
}

/* ========== HABERLER RESPONSIVE — 1024px ========== */
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .news-card-title {
    font-size: 15px;
  }

  .news-card-arrow {
    width: 40px;
    height: 40px;
    bottom: -5px;
    right: -5px;
  }
}

/* ========== HABERLER RESPONSIVE — 768px ========== */
@media (max-width: 768px) {
  .news-wrapper {
    padding: 48px 24px;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .news-title {
    font-size: 24px;
  }

  .news-card-badge {
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    font-size: 10px;
  }

  .news-card-content {
    padding: 14px;
    right: 60px;
  }

  .news-card-date {
    font-size: 10px;
  }

  .news-card-title {
    font-size: 13px;
  }

  .news-card-arrow {
    width: 36px;
    height: 36px;
    bottom: -4px;
    right: -4px;
  }

  .news-card-arrow svg {
    width: 14px;
    height: 14px;
  }
}

/* ========== HABERLER RESPONSIVE — 480px ========== */
@media (max-width: 480px) {
  .news-wrapper {
    padding: 36px 16px;
  }

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

  .news-title {
    font-size: 20px;
  }

  .news-card-arrow {
    width: 38px;
    height: 38px;
    bottom: -5px;
    right: -5px;
  }

  .news-card-arrow svg {
    width: 14px;
    height: 14px;
  }

  .news-card-content {
    padding: 16px;
    right: 70px;
  }

  .news-card-title {
    font-size: 14px;
  }
}

/* ========== BAĞIŞ BÖLÜMÜ ========== */
.bagis-wrapper {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 64px var(--container-padding);
}

.bagis-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: 9px;
  overflow: hidden;
}

/* Kart genel */
.bagis-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 56px 48px;
  text-align: center;
  overflow: hidden;
  transition: background 0.5s ease;
}

/* Renk varyantları */
.bagis-card--yellow {
  background: #f9bc33;
}

.bagis-card--red {
  background: var(--color-red);
}

.bagis-card--yellow .bagis-card-title {
  color: #1a1a1a;
  transition: color 0.5s ease;
}

.bagis-card--yellow .bagis-card-desc {
  color: rgba(0, 0, 0, 0.6);
  transition: color 0.5s ease;
}

.bagis-card--red .bagis-card-title {
  color: white;
  transition: color 0.5s ease;
}

.bagis-card--red .bagis-card-desc {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.5s ease;
}

/* Hover — renk ters dönme + beyaz border */
.bagis-card--yellow:hover {
  background: var(--color-red);
  box-shadow: inset 0 0 0 2px white;
}

.bagis-card--yellow:hover .bagis-card-title {
  color: white;
}

.bagis-card--yellow:hover .bagis-card-desc {
  color: rgba(255, 255, 255, 0.72);
}

.bagis-card--red:hover {
  background: #f9bc33;
  box-shadow: inset 0 0 0 2px white;
}

.bagis-card--red:hover .bagis-card-title {
  color: #1a1a1a;
}

.bagis-card--red:hover .bagis-card-desc {
  color: rgba(0, 0, 0, 0.6);
}

/* Kart görseli */
.bagis-card-img {
  width: 100%;
  max-width: 250px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.bagis-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 40px rgba(0, 0, 0, 0.12));
}

/* Başlık */
.bagis-card-title {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}

/* Açıklama */
.bagis-card-desc {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 28px;
}

/* Butonlar */
.bagis-card-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Primary buton — BAĞIŞ YAPIN / KART GÖNDER */
.bagis-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  height: 48px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.bagis-btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.bagis-btn-primary--red {
  background: var(--color-red);
  color: var(--color-yellow);
  transition: background 0.5s ease, color 0.5s ease, transform 0.2s ease;
}

.bagis-btn-primary--yellow {
  background: var(--color-yellow);
  color: var(--color-red);
  transition: background 0.5s ease, color 0.5s ease, transform 0.2s ease;
}

/* Hover — buton renkleri de ters döner */
.bagis-card--yellow:hover .bagis-btn-primary--red {
  background: var(--color-yellow);
  color: var(--color-red);
}

.bagis-card--red:hover .bagis-btn-primary--yellow {
  background: var(--color-red);
  color: var(--color-yellow);
}

.bagis-card--yellow:hover .bagis-btn-secondary--dark {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.bagis-card--red:hover .bagis-btn-secondary--light {
  background: rgba(0, 0, 0, 0.07);
  color: #1a1a1a;
  border-color: rgba(0, 0, 0, 0.1);
}

.bagis-btn-primary .bagis-btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.bagis-btn-primary span {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

/* Secondary buton — DETAYLI BİLGİ */
.bagis-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  height: 48px;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.bagis-btn-secondary:hover {
  transform: translateY(-1px);
}

.bagis-btn-secondary--dark {
  background: rgba(0, 0, 0, 0.07);
  color: #1a1a1a;
}

.bagis-btn-secondary--dark:hover {
  background: rgba(0, 0, 0, 0.12);
}

.bagis-btn-secondary--light {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.bagis-btn-secondary--light:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ========== BAĞIŞ RESPONSIVE — 1024px ========== */
@media (max-width: 1024px) {
  .bagis-card {
    padding: 40px 36px;
  }

  .bagis-card-title {
    font-size: 24px;
  }

  .bagis-card-desc {
    font-size: 13px;
  }

  .bagis-card-img {
    height: 150px;
  }
}

/* ========== BAĞIŞ RESPONSIVE — 768px ========== */
@media (max-width: 768px) {
  .bagis-wrapper {
    padding: 48px 24px;
  }

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

  .bagis-card {
    padding: 36px 28px;
  }

  .bagis-card-title {
    font-size: 24px;
  }

  .bagis-card-img {
    height: 140px;
    max-width: 200px;
  }
}

/* ========== BAĞIŞ RESPONSIVE — 480px ========== */
@media (max-width: 480px) {
  .bagis-wrapper {
    padding: 36px 16px;
  }

  .bagis-card {
    padding: 32px 20px;
  }

  .bagis-card-title {
    font-size: 22px;
  }

  .bagis-card-desc {
    font-size: 13px;
  }

  .bagis-card-img {
    height: 120px;
    max-width: 180px;
  }

  .bagis-card-actions {
    flex-direction: column;
    gap: 10px;
  }

  .bagis-btn-primary {
    width: 100%;
  }

  .bagis-btn-secondary {
    width: 100%;
  }
}

/* ========== TARİH BÖLÜMÜ ========== */
.tarih-wrapper {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.tarih-section {
  display: flex;
  position: relative;
  height: 360px;
  border-radius: 9px;
  overflow: hidden;
}

.tarih-card {
  position: relative;
  flex: 1;
  display: block;
  text-decoration: none;
  overflow: hidden;
}

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

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

.tarih-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.2) 30%,
    rgba(0, 0, 0, 0.55) 65%,
    rgba(0, 0, 0, 0.82) 100%
  );
  pointer-events: none;
}

.tarih-card-content {
  position: absolute;
  top: 50%;
  left: 48px;
  right: 48px;
  transform: translateY(-50%);
  z-index: 2;
}

.tarih-heading {
  font-family: var(--font-secondary);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.tarih-heading .text-yellow {
  color: var(--color-yellow);
}

.tarih-heading .text-red {
  color: var(--color-red);
}

.tarih-desc {
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 420px;
}

.tarih-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  margin-top: 20px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.tarih-btn span {
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}

.tarih-btn svg {
  width: 24px;
  height: 24px;
  stroke: #1a1a1a;
  transition: transform 0.3s ease, stroke 0.3s ease;
}

.tarih-card:hover .tarih-btn {
  background: var(--color-red);
  transform: translateY(-1px);
}

.tarih-card:hover .tarih-btn span {
  color: #fff;
}

.tarih-card:hover .tarih-btn svg {
  stroke: #fff;
  transform: translateX(3px);
}

/* Ayırıcı çizgi */
.tarih-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 3;
}

/* ========== TARİH RESPONSIVE — 1024px ========== */
@media (max-width: 1024px) {
  .tarih-section {
    height: 320px;
  }

  .tarih-heading {
    font-size: 28px;
  }

  .tarih-card-content {
    top: 40px;
    left: 36px;
    right: 36px;
  }

  .tarih-desc {
    font-size: 13px;
  }
}

/* ========== TARİH RESPONSIVE — 768px ========== */
@media (max-width: 768px) {
  .tarih-wrapper {
    padding: 0 24px;
  }

  .tarih-section {
    flex-direction: column;
    height: auto;
    border-radius: 9px;
    overflow: hidden;
  }

  .tarih-card {
    height: auto;
    min-height: 400px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tarih-card-img {
    position: absolute;
    inset: 0;
  }

  .tarih-card-left {
    border-radius: 9px 9px 0 0;
  }

  .tarih-card-right {
    border-radius: 0 0 9px 9px;
  }

  .tarih-divider {
    display: none;
  }

  .tarih-card-content {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    padding: 48px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .tarih-heading {
    font-size: 26px;
  }

  .tarih-desc {
    max-width: 100%;
  }

  .tarih-desc {
    font-size: 13px;
  }
}

/* ========== TARİH RESPONSIVE — 480px ========== */
@media (max-width: 480px) {
  .tarih-wrapper {
    padding: 0 16px;
  }

  .tarih-card-content {
    padding: 28px 20px;
  }

  .tarih-heading {
    font-size: 22px;
  }

  .tarih-desc {
    font-size: 12px;
  }

  .tarih-btn {
    padding: 10px 24px;
  }

  .tarih-btn span {
    font-size: 12px;
  }
}
