/* ========== SECENEK 2 — WHITE / GRID HERO ========== */

/* ========== HEADER SEARCH (Desktop — Row 1, contact-band solunda) ========== */
.header-search {
  grid-row: 1;
  grid-column: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 34px;
  width: fit-content;
  transition: width 0.35s ease, border-color 0.3s ease, background 0.3s ease;
}

.header-search-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 12px;
  height: 100%;
  white-space: nowrap;
  transition: background 0.25s ease;
}

.header-search-toggle svg {
  width: 15px;
  height: 15px;
  stroke: var(--color-gray-700);
  flex-shrink: 0;
  transition: stroke 0.25s ease;
}

.header-search-toggle span {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-gray-700);
  transition: color 0.25s ease;
}

.header-search-toggle:hover svg { stroke: var(--color-red); }
.header-search-toggle:hover span { color: var(--color-red); }

/* Input — gizli başlar */
.header-search-input {
  width: 0;
  padding: 0;
  border: none;
  background: none;
  outline: none;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-black);
  opacity: 0;
  transition: width 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
}

.header-search-input::placeholder {
  color: var(--color-gray-400);
}

/* Kapat butonu — gizli başlar */
.header-search-close {
  width: 0;
  overflow: hidden;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  flex-shrink: 0;
  transition: width 0.25s ease, opacity 0.25s ease, padding 0.25s ease;
}

.header-search-close svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-gray-400);
  transition: stroke 0.2s ease;
}

.header-search-close:hover svg {
  stroke: var(--color-red);
}

/* ===== Aktif durum — genişlemiş ===== */
.header-search.active {
  border-color: var(--color-red);
  background: var(--color-white);
}

.header-search.active .header-search-toggle span {
  display: none;
}

.header-search.active .header-search-toggle svg {
  stroke: var(--color-red);
}

.header-search.active .header-search-input {
  width: 200px;
  padding: 0 8px;
  opacity: 1;
}

.header-search.active .header-search-close {
  width: 28px;
  padding: 0 6px 0 0;
  opacity: 1;
}

/* Mobilde desktop arama gizle */
@media (max-width: 768px) {
  .header-search { display: none; }
}

/* ========== MOBILE SEARCH ========== */
.mobile-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-gray-50, #f5f5f5);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 16px;
}

.mobile-search svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--color-gray-400);
}

.mobile-search input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-black);
}

.mobile-search input::placeholder {
  color: var(--color-gray-400);
}

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

.hero2 {
  position: relative;
  background: var(--color-white);
  overflow: hidden;
  min-height: 651px;
}

/* Subtle grid pattern */
.hero2-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      to right,
      rgba(0, 0, 0, 0.035) 0,
      rgba(0, 0, 0, 0.035) 1px,
      transparent 1px,
      transparent 28px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.035) 0,
      rgba(0, 0, 0, 0.035) 1px,
      transparent 1px,
      transparent 35px
    );
}

/* Main content — two columns */
.hero2-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 80px;
  min-height: 651px;
  padding: 0 80px 0 var(--container-padding);
}

/* ========== LEFT COLUMN — Text ========== */
.hero2-left {
  flex: 1;
  min-width: 0;
}

.hero2-title {
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 800;
  color: var(--color-black);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.hero2-subtitle {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-gray-700);
  line-height: 1.5;
  margin-bottom: 36px;
}

/* Buttons */
.hero2-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 56px;
}

/* BAĞIŞ YAPIN — pill-shaped, dark red */
.hero2-btn-bagis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--color-red);
  padding: 16px 36px;
  border-radius: 9px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.hero2-btn-bagis:hover {
  background: var(--color-yellow);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(253, 185, 18, 0.35);
}

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

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

.hero2-btn-bagis .btn-icon svg path {
  fill: var(--color-yellow);
  transition: fill 0.3s ease;
}

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

.hero2-btn-bagis .btn-text {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-yellow);
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.hero2-btn-bagis:hover .btn-text {
  color: var(--color-red);
}

/* Hakkımızda — outlined */
.hero2-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  border: 1.5px solid #cfcaca;
  border-radius: 9px;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-gray-900);
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.hero2-btn-outline:hover {
  border-color: var(--color-red);
  color: var(--color-red);
}

/* Stats row */
.hero2-stats {
  display: flex;
  align-items: flex-start;
}

.hero2-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 28px;
}

.hero2-stat + .hero2-stat {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  padding-left: 28px;
}

.hero2-stat-number {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
}

.hero2-stat-label {
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 400;
  color: var(--color-gray-700);
  line-height: 1.4;
}

/* ========== RIGHT COLUMN — News Slider ========== */
.hero2-right {
  width: 440px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Slider container */
.hero2-slider {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.hero2-slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.hero2-slide-img {
  width: 100%;
  flex-shrink: 0;
  aspect-ratio: 440 / 280;
  object-fit: cover;
}

/* Title area — crossfade */
.hero2-card-titles {
  position: relative;
  min-height: 45px;
}

.hero2-card-title {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  color: #1c1c1c;
  line-height: 1.4;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero2-card-title.active {
  opacity: 1;
  position: relative;
}

/* Card footer — link + navigation */
.hero2-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero2-card-link {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: #1c1c1c;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  transition: color 0.2s ease, opacity 0.3s ease;
}

.hero2-card-link.hidden {
  opacity: 0;
  pointer-events: none;
}

.hero2-card-link:hover {
  color: var(--color-red);
}

/* Navigation dots + arrows */
.hero2-card-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero2-nav-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  padding: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.hero2-nav-arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-black);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s ease;
}

.hero2-nav-arrow:hover {
  background: var(--color-black);
}

.hero2-nav-arrow:hover svg {
  stroke: var(--color-white);
}

.hero2-nav-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero2-nav-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ccc;
  transition: background 0.3s ease;
}

.hero2-nav-dot.active {
  background: var(--color-black);
}

/* ========== RESPONSIVE — 1024px ========== */
@media (max-width: 1024px) {
  .hero2 { min-height: 560px; }
  .hero2-inner {
    padding: 0 40px 0 var(--container-padding);
    gap: 48px;
    min-height: 560px;
  }
  .hero2-title { font-size: 38px; }
  .hero2-right { width: 360px; }
  .hero2-stat { padding-right: 24px; }
  .hero2-stat + .hero2-stat { padding-left: 24px; }
  .hero2-stat-number { font-size: 20px; }
}

/* ========== RESPONSIVE — 768px ========== */
@media (max-width: 768px) {
  .hero2-wrapper { padding: 0; }
  .hero2 { min-height: auto; }
  .hero2-inner {
    flex-direction: column;
    padding: 40px 28px;
    gap: 36px;
    min-height: auto;
    align-items: stretch;
  }
  .hero2-right { width: 100%; }
  .hero2-title { font-size: 32px; }
  .hero2-subtitle { font-size: 15px; margin-bottom: 28px; }
  .hero2-buttons { margin-bottom: 36px; }
  .hero2-btn-bagis { padding: 14px 28px; }
  .hero2-btn-outline { padding: 13px 24px; }

  .hero2-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .hero2-stat { padding-right: 0; }
  .hero2-stat + .hero2-stat { border-left: none; padding-left: 0; }
  .hero2-stat-number { font-size: 20px; }
}

/* ========== HIZLI BAĞIŞ / FON KARTLARI ========== */
.fund2-section {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding) 80px;
}

/* Hızlı Bağış butonu — hero'ya biniyor */
.fund2-header {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-bottom: -26px;
}

.fund2-quick-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 800;
  color: var(--color-white);
  background: var(--color-dark);
  padding: 14px 44px;
  border-radius: 9px;
  border: 3px solid var(--color-white);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.fund2-quick-btn:hover {
  background: var(--color-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(168, 53, 58, 0.3);
}

/* Kırmızı bant */
.fund2-band {
  background: var(--color-red);
  border-radius: 14px;
  padding: 52px 40px 36px;
  position: relative;
  overflow: hidden;
}

/* Fund slider */
.fund-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  user-select: none;
  -webkit-user-select: none;
}

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

/* ---- Kart tasarımı ---- */
.fund-card {
  flex: 0 0 calc((100% - 42px) / 4);
  background: var(--color-yellow);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 16px 22px;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fund-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-red), rgba(168, 53, 58, 0.6));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fund-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.fund-card:hover::before {
  opacity: 1;
}

.fund-card-name {
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 800;
  color: var(--color-red);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.25;
}

/* Kart butonları — dikey */
.fund-card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 0 6px;
  margin-top: auto;
}

/* BAĞIŞ YAPIN butonu */
.fund-btn-bagis {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-red);
  padding: 10px 14px;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.fund-btn-bagis:hover {
  background: var(--color-yellow);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(253, 185, 18, 0.35);
}

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

.fund-btn-icon path {
  fill: var(--color-yellow);
  transition: fill 0.3s ease;
}

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

.fund-btn-bagis span {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-yellow);
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

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

/* DETAYLI BİLGİ butonu */
.fund-btn-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(168, 53, 58, 0.08);
  padding: 8px 14px;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.fund-btn-detail:hover {
  background: rgba(168, 53, 58, 0.15);
}

.fund-detail-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--color-red);
  opacity: 0.6;
}

.fund-btn-detail span {
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 700;
  color: var(--color-red);
  letter-spacing: 0.3px;
  opacity: 0.7;
}

/* Slider okları — bandın dışında */
.fund-arrow {
  position: absolute;
  top: calc(50% + 12px);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gray-200);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.fund-arrow:hover {
  background: var(--color-black);
  border-color: var(--color-black);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fund-arrow svg {
  width: 15px;
  height: 15px;
  stroke: var(--color-black);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s ease;
}

.fund-arrow:hover svg {
  stroke: var(--color-white);
}

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

/* ========== FUND RESPONSIVE — 1024px ========== */
@media (max-width: 1024px) {
  .fund2-band { padding: 48px 32px 32px; }
  .fund-card { flex: 0 0 calc((100% - 28px) / 3); }
}

/* ========== FUND RESPONSIVE — 768px ========== */
@media (max-width: 768px) {
  .fund2-section { margin-top: 20px; padding: 0 20px; }
  .fund2-band { border-radius: 12px; padding: 44px 20px 28px; }
  .fund-card { flex: 0 0 calc((100% - 14px) / 2); }
  .fund-card-name { font-size: 15px; }
  .fund2-quick-btn { font-size: 14px; padding: 12px 32px; }
  .fund-arrow { display: none; }
}

/* ========== FUND RESPONSIVE — 480px ========== */
@media (max-width: 480px) {
  .fund2-section { padding: 0 12px; }
  .fund2-band { padding: 40px 10px 24px; border-radius: 10px; }
  .fund-slider { overflow: hidden; }
  .fund-slider-track { gap: 10px; }
  .fund-card { flex: 0 0 calc((100% - 10px) / 2); padding: 18px 10px 16px; }
  .fund-card-name { font-size: 12px; }
  .fund2-quick-btn { font-size: 13px; padding: 10px 28px; }
  .fund-card-actions { flex-direction: column; gap: 6px; }
  .fund-btn-bagis { padding: 8px 8px; }
  .fund-btn-bagis span { font-size: 9px; }
  .fund-btn-icon { width: 12px; height: 12px; }
  .fund-btn-detail { padding: 6px 8px; }
  .fund-btn-detail span { font-size: 8px; }
  .fund-detail-icon { width: 10px; height: 10px; }

  /* "..." scroll göstergesi */
  .fund2-band::after {
    content: '•••';
    display: block;
    text-align: center;
    font-size: 18px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 16px;
  }
}

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

.vakif2-section {
  display: flex;
  align-items: center;
  gap: 64px;
}

/* Görsel — sol taraf */
.vakif2-image {
  flex: 1;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 420px;
}

.vakif2-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.vakif2-watermark {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-family: var(--font-primary);
  font-size: 100px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  pointer-events: none;
}

/* İçerik — sağ taraf */
.vakif2-content {
  flex: 1;
  min-width: 0;
}

.vakif2-label {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.vakif2-heading {
  font-family: var(--font-primary);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.vakif2-heading-dark { color: var(--color-black); }
.vakif2-heading-yellow { color: var(--color-yellow); }
.vakif2-heading-red { color: var(--color-red); }

.vakif2-desc {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-gray-700);
  margin-bottom: 32px;
}

/* İstatistikler — yatay çizgili */
.vakif2-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--color-gray-100);
}

.vakif2-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vakif2-stat-number {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-black);
  line-height: 1.2;
}

.vakif2-stat-label {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 500;
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Butonlar */
.vakif2-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.vakif2-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red);
  color: var(--color-yellow);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: 9px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.vakif2-btn-primary:hover {
  background: var(--color-yellow);
  color: var(--color-red);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(253, 185, 18, 0.35);
}

.vakif2-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-gray-200);
  color: var(--color-gray-900);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: 9px;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.vakif2-btn-secondary:hover {
  border-color: var(--color-red);
  color: var(--color-red);
}

/* ========== VAKIF RESPONSIVE — 1024px ========== */
@media (max-width: 1024px) {
  .vakif2-wrapper { padding: 60px var(--container-padding); }
  .vakif2-section { gap: 40px; }
  .vakif2-heading { font-size: 36px; }
  .vakif2-image { min-height: 360px; }
}

/* ========== VAKIF RESPONSIVE — 768px ========== */
@media (max-width: 768px) {
  .vakif2-wrapper { padding: 48px 28px; }
  .vakif2-section { flex-direction: column; gap: 32px; }
  .vakif2-image { width: 100%; min-height: 260px; }
  .vakif2-heading { font-size: 32px; }
  .vakif2-stats { gap: 28px; }
  .vakif2-stat-number { font-size: 24px; }
}

/* ========== VAKIF RESPONSIVE — 480px ========== */
@media (max-width: 480px) {
  .vakif2-wrapper { padding: 36px 20px; }
  .vakif2-heading { font-size: 28px; }
  .vakif2-image { min-height: 200px; border-radius: 10px; }
  .vakif2-stats { flex-wrap: wrap; gap: 20px; }
  .vakif2-actions { flex-direction: column; align-items: stretch; }
  .vakif2-btn-primary, .vakif2-btn-secondary { justify-content: center; }
  .vakif2-watermark { font-size: 60px; }
}

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

.news2-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}

.news2-title {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-black);
  letter-spacing: 1px;
}

.news2-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-red);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 2px solid var(--color-red);
  transition: gap 0.3s ease, opacity 0.3s ease;
}

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

.news2-all-btn:hover {
  gap: 12px;
}

.news2-all-btn:hover svg {
  transform: translateX(3px);
}

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

/* Kart */
.news2-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-gray-100);
  background: var(--color-white);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.news2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

/* Kart görseli */
.news2-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

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

.news2-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-red);
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 5px 14px;
  border-radius: 100px;
}

/* Kart içerik */
.news2-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.news2-date {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-gray-400);
  letter-spacing: 0.3px;
}

.news2-card-title {
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.35;
  letter-spacing: -0.2px;
}

.news2-read-more {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-red);
  margin-top: auto;
  padding-top: 4px;
  transition: letter-spacing 0.3s ease;
}

.news2-card:hover .news2-read-more {
  letter-spacing: 0.5px;
}

/* ========== HABERLER RESPONSIVE — 1024px ========== */
@media (max-width: 1024px) {
  .news2-grid { gap: 18px; }
  .news2-card-title { font-size: 15px; }
}

/* ========== HABERLER RESPONSIVE — 768px ========== */
@media (max-width: 768px) {
  .news2-wrapper { padding: 0 28px 56px; }
  .news2-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .news2-header { margin-bottom: 28px; }
  .news2-title { font-size: 26px; }
  .news2-card:nth-child(3) { grid-column: 1 / -1; }
  .news2-card:nth-child(3) .news2-card-img { aspect-ratio: 21 / 9; }
}

/* ========== HABERLER RESPONSIVE — 480px ========== */
@media (max-width: 480px) {
  .news2-wrapper { padding: 0 20px 44px; }
  .news2-grid { grid-template-columns: 1fr; gap: 16px; }
  .news2-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .news2-title { font-size: 24px; }
  .news2-card:nth-child(3) .news2-card-img { aspect-ratio: 16 / 10; }
}

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

.tarih2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.tarih2-card {
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
  height: 380px;
}

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

.tarih2-card:hover .tarih2-card-img {
  transform: scale(1.06);
}

.tarih2-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.15) 30%,
    rgba(0, 0, 0, 0.5) 65%,
    rgba(0, 0, 0, 0.8) 100%
  );
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.tarih2-card:hover .tarih2-card-overlay {
  opacity: 0.9;
}

.tarih2-card-content {
  position: absolute;
  bottom: 40px;
  left: 36px;
  right: 36px;
  z-index: 2;
}

.tarih2-heading {
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.t2-yellow { color: var(--color-yellow); }
.t2-red { color: var(--color-red); }

.tarih2-desc {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 380px;
  margin-bottom: 20px;
}

.tarih2-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 11px 24px;
  border-radius: 9px;
  transition: background 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
}

.tarih2-btn span {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.8px;
  transition: color 0.3s ease;
}

.tarih2-btn svg {
  stroke: #fff;
  transition: transform 0.3s ease, stroke 0.3s ease;
}

.tarih2-card:hover .tarih2-btn {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  transform: translateY(-1px);
}

.tarih2-card:hover .tarih2-btn span {
  color: var(--color-red);
}

.tarih2-card:hover .tarih2-btn svg {
  stroke: var(--color-red);
  transform: translateX(3px);
}

/* ========== TARİH RESPONSIVE — 1024px ========== */
@media (max-width: 1024px) {
  .tarih2-card { height: 320px; }
  .tarih2-heading { font-size: 26px; }
  .tarih2-card-content { bottom: 32px; left: 28px; right: 28px; }
}

/* ========== TARİH RESPONSIVE — 768px ========== */
@media (max-width: 768px) {
  .tarih2-wrapper { padding: 0 28px 56px; }
  .tarih2-grid { grid-template-columns: 1fr; gap: 20px; }
  .tarih2-card { height: 300px; }
  .tarih2-heading { font-size: 28px; }
}

/* ========== TARİH RESPONSIVE — 480px ========== */
@media (max-width: 480px) {
  .tarih2-wrapper { padding: 0 20px 44px; }
  .tarih2-card { height: 260px; border-radius: 10px; }
  .tarih2-heading { font-size: 24px; }
  .tarih2-card-content { bottom: 24px; left: 20px; right: 20px; }
  .tarih2-desc { font-size: 13px; }
}

/* ========== BAĞIŞ SEÇENEKLERİ ========== */
.bagis2-wrapper {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding) 80px;
}

.bagis2-title {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-black);
  letter-spacing: 1px;
  margin-bottom: 36px;
}

.bagis2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Kart */
.bagis2-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.bagis2-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

/* Kart görsel alanı */
.bagis2-card-img {
  width: 100%;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bagis2-card-img img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.bagis2-card:hover .bagis2-card-img img {
  transform: scale(1.06);
}

/* Kart içerik */
.bagis2-card-title {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-black);
  padding: 22px 24px 0;
  letter-spacing: -0.3px;
}

.bagis2-card-desc {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-gray-700);
  padding: 10px 24px 0;
}

/* Butonlar */
.bagis2-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 24px 24px;
  margin-top: auto;
}

.bagis2-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-red);
  padding: 11px 22px;
  border-radius: 9px;
  text-decoration: none;
  color: var(--color-yellow);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.bagis2-btn-primary:hover {
  background: var(--color-yellow);
  color: var(--color-red);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(253, 185, 18, 0.35);
}

.bagis2-btn-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--color-yellow);
  transition: color 0.3s ease;
}

.bagis2-btn-primary:hover .bagis2-btn-icon {
  color: var(--color-red);
}

.bagis2-btn-primary span {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.bagis2-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-gray-200);
  padding: 10px 20px;
  border-radius: 9px;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-gray-700);
  letter-spacing: 0.3px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.bagis2-btn-secondary:hover {
  border-color: var(--color-red);
  color: var(--color-red);
}

/* ========== BAĞIŞ RESPONSIVE — 1024px ========== */
@media (max-width: 1024px) {
  .bagis2-card-title { font-size: 18px; }
  .bagis2-card-desc { font-size: 12px; }
  .bagis2-grid { gap: 18px; }
}

/* ========== BAĞIŞ RESPONSIVE — 768px ========== */
@media (max-width: 768px) {
  .bagis2-wrapper { padding: 0 28px 56px; }
  .bagis2-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .bagis2-title { font-size: 26px; margin-bottom: 28px; }
  .bagis2-card-title { font-size: 17px; padding: 18px 20px 0; }
  .bagis2-card-desc { padding: 8px 20px 0; }
  .bagis2-card-actions { padding: 16px 20px 20px; }
}

/* ========== BAĞIŞ RESPONSIVE — 480px ========== */
@media (max-width: 480px) {
  .bagis2-wrapper { padding: 0 20px 44px; }
  .bagis2-grid { grid-template-columns: 1fr; gap: 16px; }
  .bagis2-title { font-size: 24px; }
  .bagis2-card-img { aspect-ratio: 5 / 2.5; }
  .bagis2-card-actions { flex-direction: column; align-items: stretch; }
  .bagis2-btn-primary, .bagis2-btn-secondary { justify-content: center; }
}

/* ========== FOOTER SPACING ========== */
.tarih2-wrapper + .footer-wrapper {
  margin-top: 0;
}

/* ========== RESPONSIVE — 480px ========== */
@media (max-width: 480px) {
  .hero2-inner { padding: 32px 20px; gap: 28px; }
  .hero2-title { font-size: 28px; }
  .hero2-subtitle { font-size: 14px; }
  .hero2-buttons { flex-direction: column; align-items: stretch; }
  .hero2-btn-bagis, .hero2-btn-outline { justify-content: center; }

  .hero2-stats { gap: 20px; }
  .hero2-stat-number { font-size: 18px; }
  .hero2-stat-number { font-size: 18px; }

  .hero2-card-title { font-size: 14px; }
  .hero2-card-link { font-size: 13px; }
  .hero2-card-footer { flex-direction: row; align-items: center; justify-content: space-between; gap: 12px; }
}
