/* ============================================================
   PASVAK Aşevi – Modern Web Sitesi
   Premium Design System & Component Styles (Full & Responsive)
   ============================================================ */

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Primary Palette – Vibrant Cyan */
  --primary: #23b9d7;
  --primary-dark: #1a8fa6;
  --primary-light: #4dd4ec;
  --primary-50: #e8f8fb;
  --primary-100: #c5eef5;

  /* Accent – Energetic Orange */
  --accent: #f77b00;
  --accent-dark: #d46800;
  --accent-light: #ffd6a8;
  --accent-50: #fff5eb;

  /* Neutrals */
  --neutral-50: #fafaf7;
  --neutral-100: #ffffff;
  --neutral-200: #e8e6e1;
  --neutral-300: #d4d1ca;
  --neutral-400: #9aa0a8;
  --neutral-500: #6b7280;
  --neutral-600: #4b5058;
  --neutral-700: #2d3138;
  --neutral-800: #1a1d21;
  --neutral-900: #0d0f11;

  --white: #ffffff;

  /* Semantic */
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Elevation */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 50px rgba(0, 0, 0, 0.14);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 0.15s;
  --duration: 0.3s;
  --duration-slow: 0.5s;

  /* Typography: Lexend */
  --font: "Lexend", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container-pad: 24px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

/* Menüye kaydığında başlığın logonun altında kalmaması için (Header yüksekliğine göre ayarlayın) */
#menu-section {
    scroll-margin-top: 100px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--neutral-800);
  background: var(--neutral-50);
  overflow-x: hidden;
  width: 100%;
}

/* Mobil Menü Açıldığında Arka Plan Kaymasını Önleme */
body.nav-open {
  overflow: hidden !important;
  touch-action: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-fast) var(--ease);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

/* Lucide icon base sizing */
[data-lucide] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* --- Section Labels & Titles --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--primary);
  background: var(--primary-50);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--neutral-800);
  line-height: 1.2;
  margin-bottom: 8px;
}

.section-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent);
  opacity: 0;
  transition: opacity var(--duration-fast) var(--ease);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--primary);
  color: var(--white) !important;
  box-shadow: 0 4px 14px rgba(35, 185, 215, 0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(35, 185, 215, 0.45);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(247, 123, 0, 0.35);
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 123, 0, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: #23b9d7;
  border-color: rgba(255, 255, 255, 0.65);
  transform: translateY(-2px);
  color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--neutral-700);
  border: 1.5px solid var(--neutral-200);
}
.btn-outline-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn [data-lucide] {
  width: 16px;
  height: 16px;
}

/* ============================================================
   1. NAVBAR & OFF-CANVAS MOBİL MENÜ
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--duration) var(--ease);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  transition: color var(--duration) var(--ease);
  z-index: 1002;
}

.navbar-brand img {
  height: 45px;
  width: auto;
}

.navbar.scrolled .navbar-brand {
  color: var(--neutral-800);
}

/* Logo Değişim Stilleri (Scroll Efekti) */
.navbar-brand .logo-scrolled {
  display: none;
}
.navbar.scrolled .navbar-brand .logo-default {
  display: none;
}
.navbar.scrolled .navbar-brand .logo-scrolled {
  display: block;
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.brand-icon [data-lucide] {
  width: 18px;
  height: 18px;
}

/* Nav links (Masaüstü) */
.navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.navbar-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all var(--duration-fast) var(--ease);
}

.navbar-nav li:nth-child(1){
    display: none;
}

.navbar.scrolled .navbar-nav a {
  color: var(--neutral-500);
}
.navbar-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.navbar.scrolled .navbar-nav a:hover {
  color: var(--primary);
  background: var(--primary-50);
}

/* CTA */
.navbar-cta {
  display: flex;
  align-items: center;
}

/* Hamburger Butonu */
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  padding: 8px;
  cursor: pointer;
  background:#fff;
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1002;
  transition: all var(--duration-fast) var(--ease);
}

.navbar.scrolled .navbar-toggle {
  background: var(--neutral-100);
  border-color: var(--neutral-200);
}

.navbar-toggle span {
  width: 22px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  margin: 2.5px 0;
}

.navbar.scrolled .navbar-toggle span {
  background: var(--neutral-800);
}

.navbar-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--neutral-900) !important;
}
.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.navbar-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--neutral-900) !important;
}

/* Off-Canvas Backdrop Arka Plan Katmanı */
.nav-backdrop {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(13, 15, 17, 0.7) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  z-index: 999 !important;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* MOBİL VE TABLET İÇİN SOLDAN SAĞA AÇILAN ÇEKMECE MENÜ */
@media (max-width: 991px) {
  .navbar-toggle {
    display: flex;
  }

  .navbar-nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 310px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    z-index: 1001;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 90px 24px 32px 24px;
    transform: translateX(-100%); /* Solda saklı durur */
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .navbar-nav.active {
    transform: translateX(0); /* Soldan sağa süzülerek açılır */
  }

  .navbar-nav a {
    color: var(--neutral-700) !important;
    font-size: 0.98rem;
    font-weight: 600;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--neutral-50);
  }

  .navbar-nav a:hover,
  .navbar-nav a:active {
    background: var(--primary-50) !important;
    color: var(--primary) !important;
    padding-left: 22px;
  }

  .navbar-nav::before {
    content: "PASVAK AŞEVİ";
    position: absolute;
    top: 36px;
    left: 24px;
    font-size: 25px;
    font-weight: 800;
    color: var(--neutral-900);
    letter-spacing: -1px;

  }
}

/* ============================================================
   2. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    160deg,
    #041e2b 0%,
    #0a3a4d 25%,
    #135a6e 50%,
    #1a8fa6 75%,
    #0d4a5e 100%
  );
  background-size: 300% 300%;
  animation: heroGradient 12s ease infinite;
  overflow: hidden;
  padding: 120px 0 100px;
}

@keyframes heroGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/hero-bg.webp") center / cover no-repeat;
  opacity: 0.12;
  mix-blend-mode: luminosity;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero-decorations {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-deco {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
}
.hero-deco:nth-child(1) {
  width: 700px;
  height: 700px;
  top: -250px;
  right: -150px;
}
.hero-deco:nth-child(2) {
  width: 500px;
  height: 500px;
  bottom: -200px;
  left: -150px;
}
.hero-deco:nth-child(3) {
  width: 300px;
  height: 300px;
  top: 35%;
  left: 25%;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  filter: blur(80px);
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(35, 185, 215, 0.25),
    transparent 70%
  );
  top: 10%;
  right: 5%;
  animation: orbFloat1 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(247, 123, 0, 0.2), transparent 70%);
  bottom: 15%;
  left: 5%;
  animation: orbFloat2 10s ease-in-out infinite;
}

.hero-orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(77, 212, 236, 0.15),
    transparent 70%
  );
  top: 50%;
  left: 40%;
  animation: orbFloat3 12s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-30px, 20px) scale(1.1);
  }
  66% {
    transform: translate(20px, -30px) scale(0.95);
  }
}

@keyframes orbFloat2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(25px, -25px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 15px) scale(0.9);
  }
}

@keyframes orbFloat3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-35px, -20px) scale(1.15);
  }
}

.hero > .hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--neutral-50), transparent);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
}

.hero-content {
  max-width: 720px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s var(--ease) both;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 12px rgba(247, 123, 0, 0.5);
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  animation: fadeInUp 0.8s var(--ease) 0.15s both;
}

.hero-title .accent {
  background: linear-gradient(
    135deg,
    var(--accent),
    #ffb347,
    var(--accent-light)
  );
  background-size: 200% 200%;
  animation: accentShimmer 4s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes accentShimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
  animation: fadeInUp 0.8s var(--ease) 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s var(--ease) 0.45s both;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  animation: fadeInUp 0.8s var(--ease) 0.6s both;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  font-weight: 500;
}

.hero-trust-item [data-lucide] {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.hero-trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-scroll-line {
  width: 2px;
  height: 40px;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
  50% {
    opacity: 0.8;
    transform: scaleY(1);
  }
}

/* ============================================================
   3. STATS BAR
   ============================================================ */
.stats-bar {
  position: relative;
  z-index: 3;
  margin-top: -60px;
}

.stats-bar-inner {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(35, 185, 215, 0.08);
  padding: 32px 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border: 1px solid var(--neutral-200);
  position: relative;
  overflow: hidden;
}

.stats-bar-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--accent),
    var(--primary)
  );
  background-size: 200% 100%;
  animation: gradientSlide 4s ease infinite;
}

@keyframes gradientSlide {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-left: 41px;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: var(--neutral-200);
}

.stat-number-wrap {
  display: flex;
  align-items: start;
  gap:20px;
}

.stat-lead-icon {
  width: 38px;
  height: 38px;
  color: #fff;
  flex-shrink: 0;
  padding: 6px;
  border-radius: var(--radius-sm);
  background: var(--primary);
}

.stat-number {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--neutral-900);
  margin-top: 6px;
}

/* ============================================================
   4-11. MAIN CONTENT – Two-Column Grid
   ============================================================ */
.main-content {
  padding: 22px 0 0;
  overflow: visible !important;
}

.main-content > .container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

.content-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0 !important;
  max-width: 100% !important;
}

.content-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 90px !important;
  align-self: flex-start !important;
  z-index: 10 !important;
  overflow: visible !important;
}

/* ============================================================
   4. BİZİM HİKAYEMİZ
   ============================================================ */
.story-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--neutral-200);
  padding: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.story-card:hover {
  box-shadow: 0 12px 40px rgba(35, 185, 215, 0.1);
  border-color: rgba(35, 185, 215, 0.15);
}
.story-card:hover::before {
  opacity: 1;
}

.story-text h2 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--neutral-800);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.story-text p {
  color: var(--neutral-500);
  line-height: 1.65;
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.story-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--neutral-500);
  padding: 8px 16px;
  background: var(--neutral-100);
  border-radius: var(--radius-full);
}
.trust-badge [data-lucide] {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.story-video {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #0a2e3d 0%, #135a6e 100%);
  cursor: pointer;
}

.story-video-pattern {
  position: absolute;
  inset: 0;
  opacity: 70%;
  background-image:
    radial-gradient(circle at 25% 35%, var(--white) 1px, transparent 1px),
    radial-gradient(circle at 75% 65%, var(--white) 1px, transparent 1px);
  background-size: 30px 30px;
}

.story-video-pattern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(0, 0, 0, 0.15);
  transition: background var(--duration) var(--ease);
}
.story-video:hover .story-video-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.play-btn {
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  transition: all var(--duration) var(--ease);
  color: var(--primary);
}
.play-btn [data-lucide] {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}
.story-video:hover .play-btn {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.story-video-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

/* ============================================================
   KAYNAKLARIMIZ - ÇAPRAZ KESİMLİ (SLANTED) SAĞ RESİMLİ KARTLAR
   ============================================================ */
.resources-wrapper {
  margin-bottom: 0px;
}

.resources-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin: 4px 0 0 0;
}

.resource-blocks-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.resource-block-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 16px 130px 16px 18px;
  display: flex;
  align-items: center;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
  min-height: 110px;
}

.resource-block-card:hover {
  transform: translateY(-4px);
  border-color: #23b9d7;
  box-shadow: 0 14px 28px -6px rgba(35, 185, 215, 0.2);
  background: #ffffff;
}

.resource-block-content {
  flex: 1;
  min-width: 0;
  z-index: 2;
}

.resource-block-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #23b9d7;
  background: rgba(35, 185, 215, 0.08);
  padding: 3px 9px;
  border-radius: 12px;
  margin-bottom: 6px;
}

.resource-block-badge [data-lucide] {
  width: 12px;
  height: 12px;
}

.resource-block-badge.accent-badge {
  color: #f77b00;
  background: rgba(247, 123, 0, 0.08);
}

.resource-block-card h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 3px 0;
  line-height: 1.3;
}

.resource-block-card p {
  font-size: 0.78rem;
  color: #64748b;
  margin: 0 0 8px 0;
  line-height: 1.35;
}

.resource-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #23b9d7;
  transition: gap 0.2s ease;
}

.resource-link-btn [data-lucide] {
  width: 14px;
  height: 14px;
}

.resource-block-card:hover .resource-link-btn {
  gap: 8px;
  color: #1a8fa6;
}

.resource-link-btn.accent-link {
  color: #f77b00;
}
.resource-block-card:hover .resource-link-btn.accent-link {
  color: #d46800;
}

.resource-block-img-slanted {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 125px;
  clip-path: polygon(28px 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s ease;
}

.resource-block-img-slanted img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.resource-block-card:hover .resource-block-img-slanted img {
  transform: scale(1.12);
}
.resource-block-card:hover .resource-block-img-slanted {
  clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%);
}

.resource-block-card.accent-card {
  background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
  border-color: rgba(247, 123, 0, 0.25);
}

.resource-block-card.accent-card:hover {
  border-color: #f77b00;
  box-shadow: 0 14px 28px -6px rgba(247, 123, 0, 0.22);
}

/* ============================================================
   6. NASIL ÇALIŞIYORUZ
   ============================================================ */
.process-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--neutral-200);
  padding: 25px;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.process-card:hover {
  box-shadow: 0 12px 40px rgba(35, 185, 215, 0.1);
  border-color: rgba(35, 185, 215, 0.15);
}
.process-card:hover::before {
  opacity: 1;
}

.process-card > h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--neutral-800);
  margin-bottom: 22px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 0 4px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  background: var(--primary-50);
  color: var(--primary);
  position: relative;
  transition: all var(--duration) var(--ease);
}
.process-step-icon [data-lucide] {
  width: 24px;
  height: 24px;
}

.process-step:hover .process-step-icon {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(35, 185, 215, 0.3);
}

.process-step-number {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid var(--white);
}

.process-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 4px;
}

.process-step p {
  font-size: 0.75rem;
  color: var(--neutral-400);
  line-height: 1.45;
}

.process-connector {
  position: absolute;
  top: 30px;
  right: -16px;
  color: var(--neutral-300);
  z-index: 1;
  transition: all 0.4s ease;
}
.process-connector [data-lucide] {
  width: 24px;
  height: 24px;
}

/* AŞAMA AŞAMA TURUNCU AKIŞ STİLLERİ */
.process-step.is-active .process-step-icon {
  background: var(--accent) !important;
  color: #ffffff !important;
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 10px 25px rgba(247, 123, 0, 0.45) !important;
}

.process-step.is-active .process-step-number {
  background: #0f172a !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}

.process-step.is-active h4 {
  color: var(--accent) !important;
  font-weight: 800;
}

.process-connector.is-active {
  color: var(--accent) !important;
  transform: scale(1.25);
  filter: drop-shadow(0 4px 10px rgba(247, 123, 0, 0.4));
  animation: connectorArrowPulse 1.2s infinite alternate;
}

@keyframes connectorArrowPulse {
  0% {
    transform: scale(1.1) translateX(0);
  }
  100% {
    transform: scale(1.3) translateX(4px);
  }
}

/* ============================================================
   FAALİYET ALANLARIMIZ
   ============================================================ */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.activity-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 22px 18px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.activity-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.12);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.activity-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.35) 0%,
    rgba(15, 23, 42, 0.88) 100%
  );
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 2;
}

.activity-content {
  position: relative;
  z-index: 3;
}

.activity-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2px;
}

.activity-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(35, 185, 215, 0.1);
  color: #23b9d7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0 !important;
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.activity-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 !important;
  transition: color 0.3s ease;
}

.activity-item p {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
  padding-left: 56px;
  transition: color 0.3s ease;
}

.activity-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px -8px rgba(15, 23, 42, 0.3);
  border-color: transparent;
}

.activity-item:hover .activity-bg-img {
  opacity: 1;
  transform: scale(1);
}
.activity-item:hover .activity-overlay {
  opacity: 1;
}
.activity-item:hover .activity-icon {
  background: #23b9d7;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(35, 185, 215, 0.4);
}
.activity-item:hover h4 {
  color: #ffffff;
}
.activity-item:hover p {
  color: rgba(255, 255, 255, 0.88);
}

/* ============================================================
   8. BAĞIŞ YAPMAK ÇOK KOLAY (Sidebar Klasik)
   ============================================================ */
.donation-card {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-dark) 100%
  );
  border-radius: var(--radius-xl);
  padding: 22px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.donation-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.donation-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
}

.donation-amounts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
  position: relative;
}

.donation-amount {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 14px 10px;
  text-align: center;
  transition: all var(--duration) var(--ease);
  cursor: pointer;
}
.donation-amount:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.donation-amount .amount {
  font-size: 1.35rem;
  font-weight: 800;
  display: block;
  margin-bottom: 2px;
}
.donation-amount .desc {
  font-size: 0.7rem;
  opacity: 0.6;
  display: block;
  margin-bottom: 14px;
}

.donation-amount .btn {
  width: 100%;
  justify-content: center;
  padding: 8px 14px;
  font-size: 0.75rem;
  background: var(--white);
  color: var(--accent);
  border-radius: var(--radius-full);
}
.donation-amount .btn:hover {
  background: var(--primary-50);
  color: var(--primary);
}

.donation-sms {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 16px;
  text-align: center;
  transition: all var(--duration) var(--ease);
  cursor: pointer;
  position: relative;
}
.donation-sms:hover {
  background: rgba(255, 255, 255, 0.14);
}
.donation-sms h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.donation-sms p {
  font-size: 0.72rem;
  opacity: 0.55;
}

/* ============================================================
   9. GÜNCEL İHTİYAÇLARIMIZ (Sidebar Klasik)
   ============================================================ */
.needs-card {
  background: var(--accent-50);
  border-radius: var(--radius-xl);
  border: 1px solid var(--accent-light);
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.needs-card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 110px;
  height: 110px;
  background: var(--accent-light);
  border-radius: 50%;
  opacity: 0.5;
}

.needs-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 8px;
  position: relative;
}
.needs-card > p {
  font-size: 0.85rem;
  color: var(--neutral-500);
  margin-bottom: 20px;
  position: relative;
  line-height: 1.6;
}
.needs-card .btn {
  position: relative;
}

/* ============================================================
   10. ZAMAN ÇİZELGESİ
   ============================================================ */
.timeline-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--neutral-200);
  padding: 28px;
  transition: box-shadow var(--duration) var(--ease);
}
.timeline-card:hover {
  box-shadow: var(--shadow-md);
}

.timeline-card > h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--neutral-800);
  margin-bottom: 22px;
}

.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 10px;
  right: 10px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-100),
    var(--primary),
    var(--accent)
  );
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  text-align: center;
  flex: 1;
  max-width: 130px;
}

.timeline-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary);
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration) var(--ease);
}
.timeline-item:hover .timeline-dot {
  background: var(--primary);
  transform: scale(1.15);
}

.timeline-dot-inner {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  transition: background var(--duration) var(--ease);
}
.timeline-item:hover .timeline-dot-inner {
  background: var(--white);
}

.timeline-year {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}
.timeline-desc {
  font-size: 0.72rem;
  color: var(--neutral-400);
  line-height: 1.4;
}
.timeline-footer {
  text-align: center;
  margin-top: 20px;
}

/* ============================================================
   12. SON HABERLER
   ============================================================ */
.news-section {
  padding: 70px 0;
  background: linear-gradient(180deg, var(--neutral-100) 0%, #e8f8fb 100%);
  margin-top: 70px;
  position: relative;
}

.news-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary),
    var(--accent),
    transparent
  );
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--neutral-200);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.news-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.news-card-image.img-green {
  background: linear-gradient(135deg, #1a8fa6, #4dd4ec);
}
.news-card-image.img-blue {
  background: linear-gradient(135deg, #135a6e, #23b9d7);
}
.news-card-image.img-orange {
  background: linear-gradient(135deg, #d46800, #f77b00);
}
.news-card-image.img-purple {
  background: linear-gradient(135deg, #0a2e3d, #1a8fa6);
}

.news-img-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.1);
}

.news-img-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.news-img-icon [data-lucide] {
  width: 56px;
  height: 56px;
}

.news-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 1;
}

.news-card-body {
  padding: 16px;
}

.news-card-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--neutral-800);
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--duration-fast) var(--ease);
}
.news-card-link [data-lucide] {
  width: 14px;
  height: 14px;
}
.news-card-link:hover {
  gap: 10px;
}

/* ============================================================
   13. FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(180deg, #0d0f11 0%, #0a1a22 100%);
  color: rgba(255, 255, 255, 0.65);
  padding: 64px 0 0;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary),
    var(--accent),
    transparent
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr 1.1fr;
  gap: 30px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
}

.footer-brand img {
  height: 40px;
}
.footer-brand .brand-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
}
.footer-about p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin: 16px 0 16px 0;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) var(--ease);
  color: rgba(255, 255, 255, 0.4);
}
.footer-social a [data-lucide] {
  width: 16px;
  height: 16px;
}
.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.footer-col ul {
  padding-left: 0px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  transition: all var(--duration-fast) var(--ease);
}
.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact {
  margin-left: 0px;
  padding-left: 0px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px !important;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-light);
}
.footer-contact-icon [data-lucide] {
  width: 14px;
  height: 14px;
}

.footer-contact-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
}

.footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom a:hover {
  color: var(--white);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.visible .stat-item,
.animate-on-scroll.visible .process-step,
.animate-on-scroll.visible .activity-item,
.animate-on-scroll.visible .timeline-item,
.animate-on-scroll.visible .news-card {
  animation: fadeInUp 0.5s var(--ease) both;
}

.animate-on-scroll.visible .stat-item:nth-child(1),
.animate-on-scroll.visible .process-step:nth-child(1),
.animate-on-scroll.visible .activity-item:nth-child(1),
.animate-on-scroll.visible .news-card:nth-child(1) {
  animation-delay: 0s;
}

.animate-on-scroll.visible .stat-item:nth-child(2),
.animate-on-scroll.visible .process-step:nth-child(2),
.animate-on-scroll.visible .activity-item:nth-child(2),
.animate-on-scroll.visible .news-card:nth-child(2) {
  animation-delay: 0.08s;
}

.animate-on-scroll.visible .stat-item:nth-child(3),
.animate-on-scroll.visible .process-step:nth-child(3),
.animate-on-scroll.visible .activity-item:nth-child(3),
.animate-on-scroll.visible .news-card:nth-child(3) {
  animation-delay: 0.16s;
}

.animate-on-scroll.visible .stat-item:nth-child(4),
.animate-on-scroll.visible .process-step:nth-child(4),
.animate-on-scroll.visible .activity-item:nth-child(4),
.animate-on-scroll.visible .news-card:nth-child(4) {
  animation-delay: 0.24s;
}

.animate-on-scroll.visible .activity-item:nth-child(5) {
  animation-delay: 0.32s;
}
.animate-on-scroll.visible .activity-item:nth-child(6) {
  animation-delay: 0.4s;
}

/* ============================================================
   ÖZEL ŞIK YEMEK DAĞITIM HEDEFİ KARTI STİLLERİ
   ============================================================ */
.daily-meal-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
  border: 1px solid rgba(35, 185, 215, 0.2) !important;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: var(--radius-sm);
}

.daily-meal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #23b9d7 0%, #f77b00 100%);
}

.daily-meal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -6px rgba(35, 185, 215, 0.2) !important;
  border-color: rgba(35, 185, 215, 0.4) !important;
}

.pulse-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.meal-count-badge {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1a8fa6;
  background: #e8f8fb;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(35, 185, 215, 0.25);
}

.meal-percent-wrap {
  background: rgba(35, 185, 215, 0.08);
  border: 1px solid rgba(35, 185, 215, 0.25);
  padding: 2px 14px;
  border-radius: 20px;
}

#mealPercentText {
  font-weight: 900 !important;
  font-size: 1.15rem !important;
  color: #f77b00;
}

.meal-progress-track {
  height: 14px !important;
  border-radius: 20px !important;
  background: #e2e8f0 !important;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  padding: 2px;
}

.meal-progress-bar {
  height: 100% !important;
  border-radius: 20px !important;
  background: linear-gradient(90deg, #23b9d7 0%, #f77b00 100%) !important;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(247, 123, 0, 0.4);
}

.meal-progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: shimmerLight 2.2s infinite;
}

@keyframes shimmerLight {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* ============================================================
   INTERACTIVE COMPONENTS & EXTRA STYLES
   ============================================================ */

/* Daily Goal Bar */
.daily-goal-bar {
  margin-top: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-200);
}
.daily-goal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.875rem;
}
.daily-goal-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--neutral-700);
}
.daily-goal-percent {
  font-weight: 800;
  color: var(--primary-dark);
  font-size: 0.95rem;
}
.daily-goal-track {
  width: 100%;
  height: 10px;
  background: var(--neutral-100);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.daily-goal-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-full);
  transition: width 1.5s var(--ease);
}

/* Menu Card Header & Active Day */
.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.menu-live-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--success);
  background: rgba(34, 197, 94, 0.1);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.menu-table tr.active-day {
  background: var(--primary-50);
  border-left: 3px solid var(--primary);
}
.menu-table tr.active-day .day-cell {
  font-weight: 700;
  color: var(--primary-dark);
}
.menu-actions-wrap {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.menu-actions-wrap .btn {
  flex: 1;
  justify-content: center;
}

/* Footer IBAN Card */
.footer-iban-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 12px;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.footer-iban-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.iban-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}
.iban-code {
  display: block;
  font-family: monospace;
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.copy-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--primary-light);
  margin-top: 6px;
  font-weight: 600;
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(13, 15, 17, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-card {
  background: var(--white);
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-sm);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  padding: 32px;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform var(--duration) var(--ease-bounce);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--neutral-100);
  color: var(--neutral-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) var(--ease);
  border: none;
  cursor: pointer;
  z-index: 10;
}
.modal-close:hover {
  background: var(--neutral-200);
  color: var(--neutral-900);
  transform: rotate(90deg);
}
.modal-header {
  text-align: center;
  margin-bottom: 24px;
}
.modal-icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-50);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.modal-icon-badge [data-lucide] {
  width: 28px;
  height: 28px;
}
.modal-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--neutral-900);
  margin-bottom: 6px;
}
.modal-header p {
  font-size: 0.875rem;
  color: var(--neutral-500);
  line-height: 1.4;
}
.modal-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--neutral-500);
  margin: 16px 0 8px;
}

/* Freq toggle */
.donate-freq-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--neutral-100);
  padding: 4px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.freq-btn {
  padding: 10px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neutral-600);
  border: none;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease);
}
.freq-btn.active {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}

/* Presets */
.donate-presets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.preset-btn {
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--neutral-200);
  background: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--neutral-700);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease);
}
.preset-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.preset-btn.active {
  border-color: var(--primary);
  background: var(--primary-50);
  color: var(--primary-dark);
}

/* Custom amount */
.custom-amount-wrap {
  position: relative;
  margin-bottom: 12px;
}
.currency-symbol {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  color: var(--neutral-500);
}
.custom-amount-wrap input {
  width: 100%;
  padding: 12px 16px 12px 36px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--neutral-200);
  font-size: 1rem;
  font-weight: 600;
  outline: none;
}
.custom-amount-wrap input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(35, 185, 215, 0.15);
}

/* Impact Box */
.donate-impact-box {
  background: linear-gradient(
    135deg,
    rgba(35, 185, 215, 0.08),
    rgba(247, 123, 0, 0.08)
  );
  border: 1px solid var(--primary-100);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--neutral-700);
  margin-bottom: 16px;
}
.donate-impact-box [data-lucide] {
  color: var(--accent);
  flex-shrink: 0;
}

/* Payment methods */
.pay-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}
.pay-method-btn {
  padding: 8px 6px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--neutral-200);
  background: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--neutral-600);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease);
}
.pay-method-btn.active {
  border-color: var(--primary);
  background: var(--primary-50);
  color: var(--primary-dark);
}

/* Form controls */
.form-group {
  margin-bottom: 12px;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--neutral-600);
  margin-bottom: 4px;
}
.form-control,.custom-select {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--neutral-200);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--duration-fast) var(--ease);
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(35, 185, 215, 0.15);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.donate-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 16px;
}

/* IBAN & SMS Detail Boxes */
.iban-detail-box,
.sms-detail-box {
  background: var(--neutral-50);
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-md);
  padding: 16px;
}
.bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neutral-600);
  margin-bottom: 8px;
}
.btn-copy-sm {
  background: var(--primary-50);
  color: var(--primary-dark);
  border: none;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}
.iban-code {
  font-family: monospace;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 10px;
}
.iban-desc {
  font-size: 0.8rem;
  color: var(--neutral-500);
}
.sms-detail-box {
  text-align: center;
}
.sms-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-50);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.sms-detail-box h4 {
  font-size: 1.1rem;
  color: var(--neutral-800);
  margin-bottom: 6px;
}
.sms-detail-box p {
  font-size: 0.85rem;
  color: var(--neutral-600);
}

/* Success Screen */
.modal-success-screen {
  text-align: center;
  padding: 20px 0;
}
.success-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.success-icon-wrap [data-lucide] {
  width: 36px;
  height: 36px;
}
.modal-success-screen h3 {
  font-size: 1.5rem;
  color: var(--neutral-900);
  margin-bottom: 8px;
}
.modal-success-screen p {
  color: var(--neutral-600);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.receipt-badge {
  display: inline-block;
  background: var(--neutral-100);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--neutral-700);
  margin-bottom: 24px;
}

/* Video Modal */
.video-modal-card {
  max-width: 800px;
  padding: 0;
  overflow: hidden;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-modal-info {
  padding: 20px 24px;
}
.video-modal-info h4 {
  font-size: 1.1rem;
  color: var(--neutral-800);
  margin-bottom: 4px;
}
.video-modal-info p {
  font-size: 0.85rem;
  color: var(--neutral-500);
}

/* Floating Live Social Proof Toast */
.live-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1500;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-full);
  padding: 10px 18px 10px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--duration-slow) var(--ease-bounce);
  pointer-events: none;
}
.live-toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.live-toast-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.live-toast-avatar [data-lucide] {
  width: 18px;
  height: 18px;
}
.live-toast-content {
  font-size: 0.8rem;
}
.live-toast-title {
  font-weight: 700;
  color: var(--neutral-800);
}
.live-toast-sub {
  color: var(--neutral-500);
  font-size: 0.72rem;
}
.live-toast-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--neutral-400);
  cursor: pointer;
  line-height: 1;
  margin-left: 4px;
}

/* Floating Quick Donate FAB */
.fab-donate {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1400;
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-dark) 100%
  );
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(247, 123, 0, 0.4);
  cursor: pointer;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--duration) var(--ease-bounce);
}
.fab-donate.visible {
  transform: translateY(0);
  opacity: 1;
}
.fab-donate:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(247, 123, 0, 0.5);
}

/* Toast Container & Alerts */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.toast-message {
  background: var(--neutral-900);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: toastIn 0.3s var(--ease) forwards;
}
@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   BU AYIN MENÜSÜ - EXCEL (.XLSX) TABLO DÜZENİ & STİLLERİ
   ============================================================ */
.excel-week-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
  -webkit-overflow-scrolling: touch;
}

.week-tab-btn {
  padding: 8px 16px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.week-tab-btn:hover {
  background: #e8f8fb;
  color: #1a8fa6;
  border-color: #23b9d7;
}

.week-tab-btn.active {
  background: #23b9d7;
  color: #ffffff;
  border-color: #23b9d7;
  box-shadow: 0 4px 12px rgba(35, 185, 215, 0.3);
}

.excel-table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-sm);
  border: 1px solid #e2e8f0;
  margin-bottom: 20px;
}

.excel-menu-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
  text-align: left;
  background: #ffffff;
  min-width: 680px;
}

.excel-menu-table thead tr {
  background: #0f172a;
  color: #ffffff;
}

.excel-menu-table th {
  padding: 11px 9px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 2px solid #1e293b;
}

.excel-menu-table th [data-lucide] {
  width: 14px;
  height: 14px;
  vertical-align: text-bottom;
  margin-right: 4px;
  color: #23b9d7;
}

.excel-menu-table tbody tr {
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.2s ease;
}

.excel-menu-table tbody tr:last-child {
  border-bottom: none;
}

.excel-menu-table tbody tr:hover {
  background: #f8fafc;
}

.excel-menu-table td {
  padding: 14px 16px;
  vertical-align: middle;
  color: #334155;
}

/* Tatil Satırları */
.excel-menu-table tbody tr.holiday-row {
  background-color: #f8fafc !important;
  opacity: 0.65;
}

.excel-menu-table tbody tr.holiday-row td {
  color: #94a3b8 !important;
}

.excel-menu-table tbody tr.holiday-row .dish-main {
  color: #64748b !important;
  font-weight: 600;
}

.menu-section-footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px dashed var(--neutral-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.menu-trust-features {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neutral-600);
  gap: 20px;
}

.menu-trust-features span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-trust-features [data-lucide] {
  color: var(--primary);
}

.holiday-badge {
  background: #e2e8f0;
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  display: inline-block;
  margin-left: 6px;
}

.date-cell {
  display: flex;
  flex-direction: column;
}

.date-cell .day-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: #0f172a;
}

.date-cell .day-date {
  font-size: 0.75rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.today-row {
  background: linear-gradient(
    90deg,
    rgba(35, 185, 215, 0.08) 0%,
    rgba(247, 123, 0, 0.05) 100%
  ) !important;
  border-left: 4px solid #23b9d7;
}

.today-badge {
  background: #23b9d7;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.today-badge .pulse-dot {
  background: #ffffff;
  box-shadow: none;
}

.dish-tag.soup {
  color: #1a8fa6;
  font-weight: 600;
}

.dish-main {
  color: #0f172a;
  font-weight: 700;
}

.kcal-cell {
  font-size: 0.8rem;
  font-weight: 700;
  color: #d46800;
  background: #fff5eb;
  border-radius: 8px;
  text-align: center;
}

/* ============================================================
   KİBAR HERO SWIPER SECTION
   ============================================================ */
.hero-swiper-section {
  position: relative;
  background: #041e2b;
  overflow: hidden;
}

.hero-swiper-section .swiper-slide {
  height: 620px !important;
}

.hero-slide-bg {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.hero-left-aligned {
  text-align: left !important;
  align-items: flex-start !important;
  max-width: 580px !important;
  padding: 175px 0 45px !important;
}

.hero-badge {
  padding: 6px 16px !important;
  font-size: 0.78rem !important;
  margin-bottom: 16px !important;
  border-radius: 20px !important;
}

.hero-badge .dot {
  width: 7px !important;
  height: 7px !important;
}

.hero-title {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem) !important;
  font-weight: 800 !important;
  line-height: 1.18 !important;
  margin-bottom: 14px !important;
  letter-spacing: -0.02em !important;
}

.hero-description {
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  margin-bottom: 22px !important;
  max-width: 480px !important;
}

.hero-actions {
  gap: 12px !important;
  margin-bottom: 0 !important;
}

.hero-actions .btn-lg {
  padding: 10px 22px !important;
  font-size: 0.88rem !important;
}

.hero-next,
.hero-prev {
  width: 40px !important;
  height: 40px !important;
}

.hero-next::after,
.hero-prev::after {
  font-size: 1rem !important;
}

.hero-pagination {
  bottom: 16px !important;
}

/* ============================================================
   LÜKS & PREMIUM TARİHÇE STİLLERİ
   ============================================================ */
.timeline-premium-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--radius-sm);
  padding: 30px;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden !important;
  min-width: 0 !important;
}

.timeline-premium-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

.premium-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #23b9d7;
  background: rgba(35, 185, 215, 0.08);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 8px;
  border: 1px solid rgba(35, 185, 215, 0.15);
}

.badge-pulse-ring {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #23b9d7;
  box-shadow: 0 0 0 3px rgba(35, 185, 215, 0.25);
}

.premium-main-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.timeline-nav-arrows {
  display: flex;
  gap: 10px;
}

.tl-arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tl-arrow-btn:hover {
  background: #23b9d7;
  color: #ffffff;
  border-color: #23b9d7;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(35, 185, 215, 0.25);
}

.timelinePremiumSwiper {
  position: relative;
  padding-top: 15px;
  padding-bottom: 12px;
  min-width: 0 !important;
  width: 100% !important;
  overflow: hidden !important;
}

.timeline-main-track {
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #23b9d7 0%, #f77b00 100%);
  z-index: 1;
  opacity: 0.35;
}

.timelinePremiumSwiper .swiper-slide {
  box-sizing: border-box !important;
}

.tl-premium-card {
  position: relative;
  z-index: 2;
  height: 100%;
}

.tl-watermark-year {
  position: absolute;
  right: 12px;
  top: 40px;
  font-size: 3.5rem;
  font-weight: 900;
  color: #000000;
  opacity: 0.04;
  letter-spacing: -2px;
  pointer-events: none;
  font-family: "Lexend", sans-serif;
}

.tl-node-holder {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  height: 22px;
}

.tl-ring-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid #23b9d7;
  box-shadow: 0 0 0 3px rgba(35, 185, 215, 0.15);
  transition: all 0.3s ease;
}

.tl-ring-dot.active-ring {
  border-color: #f77b00;
  box-shadow: 0 0 0 4px rgba(247, 123, 0, 0.25);
  background: #f77b00;
}

.tl-card-inner {
  height: 190px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 22px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.tl-premium-card:hover .tl-card-inner {
  transform: translateY(-5px);
  border-color: #23b9d7;
  box-shadow: 0 16px 32px rgba(35, 185, 215, 0.12);
}

.tl-year-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: #23b9d7;
  background: rgba(35, 185, 215, 0.1);
  padding: 3px 10px;
  border-radius: 12px;
  width: fit-content;
  margin-bottom: 10px;
}

.tl-year-badge.active-tag {
  color: #ffffff;
  background: #f77b00;
}

.tl-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.tl-card-text {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.tl-card-inner.active-inner {
  background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
  border: 1.5px solid rgba(247, 123, 0, 0.4);
}

.main-content,
.content-left,
.timeline-section-modern,
.timelineSwiper {
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

.main-content {
  overflow: visible !important;
}

.content-right {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 90px !important;
  align-self: flex-start !important;
  z-index: 10 !important;
  overflow: visible !important;
}

/* ============================================================
   17.000.000+ BANNER
   ============================================================ */
.stat-meal-banner {
  position: relative;
  border-radius: var(--radius-sm);
  padding: 44px 24px;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 16px 36px -10px rgba(247, 123, 0, 0.35);
}

.stat-meal-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.stat-meal-banner:hover .stat-meal-bg-img {
  transform: scale(1.12);
}

.stat-meal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(247, 123, 0, 0.9) 0%,
    rgba(180, 80, 0, 0.92) 100%
  );
  z-index: 2;
  opacity: 80%;
}

.stat-meal-bg-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.35) 0%,
    transparent 70%
  );
  z-index: 3;
  pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite alternate;
}

.stat-meal-content {
  position: relative;
  z-index: 4;
}

.stat-meal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.stat-meal-number {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-meal-title {
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  opacity: 0.98;
}

.stat-meal-subtitle {
  font-size: 0.9rem;
  opacity: 0.88;
  max-width: 480px;
  margin: 0 auto;
  font-weight: 400;
}

/* ============================================================
   GERÇEK HİKAYELER
   ============================================================ */
.stories-section {
  background: #ffffff;
  border-radius: var(--radius-sm);
  padding: 30px;
  border: 1px solid #e2e8f0;
}

.stories-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.stories-nav-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stories-arrows {
  display: flex;
  gap: 8px;
}

.stories-arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.stories-arrow-btn:hover {
  background: #f77b00;
  color: #ffffff;
  border-color: #f77b00;
  box-shadow: 0 6px 16px rgba(247, 123, 0, 0.3);
  transform: translateY(-2px);
}

.storiesSwiper {
  min-width: 0 !important;
  width: 100% !important;
  overflow: hidden !important;
  padding-bottom: 12px;
}

.story-card-item.horizontal {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  min-height: 160px;
}

.story-card-item.horizontal:hover {
  background: #ffffff;
  border-color: #f77b00;
  box-shadow: 0 14px 28px rgba(247, 123, 0, 0.12);
}

.story-card-item.horizontal .story-card-img {
  width: 135px;
  height: 175px;
  flex-shrink: 0;
  position: relative;
}

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

.story-card-item.horizontal:hover .story-card-img img {
  transform: scale(1.08);
}

.story-card-item.horizontal .story-card-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.story-card-item.horizontal .story-tag2 {
  font-size: 0.7rem;
  font-weight: 700;
  color: #f77b00;
  background: rgba(247, 123, 0, 0.08);
  padding: 2px 8px;
  border-radius: 10px;
  width: fit-content;
  margin-bottom: 6px;
}

.story-card-item.horizontal .story-name2 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.story-text2 {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.4;
  margin-top: 10px;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #f77b00;
  text-decoration: none !important;
  transition: gap 0.2s ease;
  margin-top: 13px;
}

.story-read-btn [data-lucide] {
  width: 14px;
  height: 14px;
}

.story-card-item:hover .story-read-btn {
  gap: 10px;
  color: #d46800;
}

.stories-pagination .swiper-pagination-bullet-active {
  background: #f77b00 !important;
}

/* ============================================================
   SADELEŞTİRİLMİŞ MODERN BAĞIŞ KARTI (SIDEBAR)
   ============================================================ */
.donation-card-modern {
  position: relative;
  border-radius: var(--radius-sm);
  padding: 28px 22px;
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(247, 123, 0, 0.35);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.donation-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(247, 123, 0, 0.45);
}

.donation-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.05);
  transition: transform 0.8s ease;
}

.donation-card-modern:hover .donation-bg-img {
  transform: scale(1.12);
}

.donation-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(247, 123, 0, 0.92) 0%,
    rgba(180, 75, 0, 0.95) 100%
  );
  z-index: 2;
}

.donation-card-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.donation-badge-mini {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.donation-badge-mini [data-lucide] {
  width: 13px;
  height: 13px;
}

.donation-card-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.25;
}

.donation-card-content p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 20px 0;
  line-height: 1.5;
  font-weight: 400;
}

.donation-main-btn {
  width: 100%;
  background: #ffffff;
  color: #f77b00;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.donation-main-btn [data-lucide] {
  width: 16px;
  height: 16px;
}

.donation-main-btn .btn-arrow {
  transition: transform 0.25s ease;
}

.donation-main-btn:hover {
  background: #ffffff;
  color: #d46800;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.donation-main-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ============================================================
   GÜNCEL İHTİYAÇLARIMIZ - MODERN KART
   ============================================================ */
.needs-card-modern {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.needs-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f77b00 0%, #23b9d7 100%);
}

.needs-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -8px rgba(247, 123, 0, 0.18);
  border-color: rgba(247, 123, 0, 0.3);
}

.needs-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.needs-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff5eb;
  color: #f77b00;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 123, 0, 0.15);
  transition: all 0.3s ease;
}

.needs-icon-wrap [data-lucide] {
  width: 20px;
  height: 20px;
}

.needs-card-modern:hover .needs-icon-wrap {
  background: #f77b00;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(247, 123, 0, 0.3);
}

.needs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #d46800;
  background: #fff5eb;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(247, 123, 0, 0.2);
}

.needs-card-body {
  margin-bottom: 20px;
}

.needs-card-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px 0;
}

.needs-card-body p {
  font-size: 0.83rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

.needs-card-footer .needs-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.82rem;
  padding: 10px 16px;
  border-radius: 20px;
  background: #f77b00;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(247, 123, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 8px;
}

.needs-card-footer .needs-btn:hover {
  background: #d46800;
  box-shadow: 0 6px 18px rgba(247, 123, 0, 0.35);
}

/* ============================================================
   BENTO / KOLAJ FOTOĞRAF IZGARASI
   ============================================================ */
.bento-gallery-section {
  position: relative;
}

.bento-gallery-section .container-ic {
  position: relative;
}

.gallery-header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  text-align: center;
  width: 90%;
  max-width: 480px;
  padding: 20px;
  pointer-events: none;
}

.gallery-header::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 140%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.75) 45%,
    rgba(255, 255, 255, 0) 80%
  );
  filter: blur(20px);
  z-index: -1;
  border-radius: 50%;
}

.gallery-header .section-title,
.gallery-header .section-label {
  color: #0f172a;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

.bento-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.2fr 1fr;
  grid-template-rows: 210px 210px;
  gap: 14px;
}

.bento-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.bento-tall {
  grid-column: 1;
  grid-row: 1 / span 2;
}
.bento-wide-1 {
  grid-column: 2;
  grid-row: 1;
}
.bento-wide-2 {
  grid-column: 2;
  grid-row: 2;
}
.bento-tall-large {
  grid-column: 3;
  grid-row: 1 / span 2;
}
.bento-small-top {
  grid-column: 4;
  grid-row: 1;
}
.bento-small-bottom {
  grid-column: 4;
  grid-row: 2;
}

.bento-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition:
    opacity 1.2s ease-in-out,
    transform 0.6s ease;
}

.bento-img.active {
  opacity: 1;
}
.bento-item:hover .bento-img.active {
  transform: scale(1.06);
}

/* ============================================================
   ERASMUS+ BANTI STİLLERİ
   ============================================================ */
.erasmus-banner {
  position: relative;
  background: linear-gradient(135deg, #002b7f 0%, #001a4d 100%);
  border-radius: var(--radius-sm);
  padding: 30px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 43, 127, 0.25);
  border: 1px solid rgba(255, 204, 0, 0.25);
  color: #ffffff;
}

.erasmus-bg-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(255, 204, 0, 0.15) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  pointer-events: none;
}

.erasmus-container {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.erasmus-logo-box {
  position: relative;
  flex-shrink: 0;
  width: 240px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: #003399;
}

.erasmus-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.erasmus-year-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: #ffcc00;
  color: #002b7f;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.erasmus-info {
  flex-grow: 1;
}

.erasmus-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 204, 0, 0.15);
  color: #ffcc00;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 204, 0, 0.3);
  margin-bottom: 12px;
}

.erasmus-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
  letter-spacing: -0.3px;
}

.erasmus-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 16px 0;
}

.erasmus-desc strong {
  color: #ffcc00;
  font-weight: 600;
}

.erasmus-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  padding: 5px 12px;
  border-radius: 6px;
}

.feature-item svg {
  color: #ffcc00;
}

/* ===================================================
   BÜTÇE DAĞILIMI STİLLERİ
   =================================================== */
.budget-section {
  display: block;
}
.budget-container {
  width: 100%;
}

.budget-card {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  gap: 50px;
}

.chart-box {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.donut-chart {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: conic-gradient(
    #00a8cc 0% 75%,
    #a855f7 75% 85%,
    #ff8c00 85% 95%,
    #1e293b 95% 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 8px 18px rgba(0, 168, 204, 0.25));
  transition: transform 0.3s ease;
}

.donut-chart:hover {
  transform: scale(1.03);
}

.donut-center {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.06);
}

.donut-number {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, #00a8cc 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.donut-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 700;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.breakdown-list {
  flex: 1.4;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.breakdown-item {
  display: flex;
  flex-direction: column;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.item-cyan {
  background-color: #f0fdfa;
  border-color: #ccfbf1;
}
.item-cyan:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 168, 204, 0.12);
}

.item-purple {
  background-color: #faf5ff;
  border-color: #f3e8ff;
}
.item-purple:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.12);
}

.item-orange {
  background-color: #fff7ed;
  border-color: #ffedd5;
}
.item-orange:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.12);
}

.item-dark {
  background-color: #f8fafc;
  border-color: #e2e8f0;
}
.item-dark:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(30, 41, 59, 0.08);
}

.breakdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.breakdown-title {
  font-weight: 700;
  color: #0f172a;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-box {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.icon-cyan {
  background-color: #cffafe;
  color: #0891b2;
}
.icon-purple {
  background-color: #f3e8ff;
  color: #9333ea;
}
.icon-orange {
  background-color: #ffedd5;
  color: #ea580c;
}
.icon-dark {
  background-color: #e2e8f0;
  color: #334155;
}

.breakdown-percent {
  font-weight: 800;
  font-size: 18px;
}

.text-cyan {
  color: #00a8cc;
}
.text-purple {
  color: #a855f7;
}
.text-orange {
  color: #ff8c00;
}
.text-dark {
  color: #1e293b;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.progress-fill {
  height: 100%;
  border-radius: 20px;
  transition: width 1s ease-in-out;
}
.fill-cyan {
  background: linear-gradient(90deg, #00a8cc 0%, #38bdf8 100%);
}
.fill-purple {
  background: linear-gradient(90deg, #a855f7 0%, #ec4899 100%);
}
.fill-orange {
  background: linear-gradient(90deg, #ff8c00 0%, #f59e0b 100%);
}
.fill-dark {
  background: linear-gradient(90deg, #1e293b 0%, #475569 100%);
}

.breakdown-desc {
  font-size: 12px;
  color: #64748b;
  margin-top: 6px;
  margin-bottom: 0;
}

.budget-footer {
  margin-top: 28px;
  background: linear-gradient(135deg, #00a8cc 0%, #00738c 100%);
  color: #ffffff;
  padding: 20px 28px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: 0 8px 25px rgba(0, 168, 204, 0.25);
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.info-icon {
  font-size: 24px;
  background: rgba(255, 255, 255, 0.2);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.footer-info p {
  margin: 0;
  font-size: 14px;
  color: #f0fdfa;
  line-height: 1.4;
}

.pdf-link {
  font-size: 13px;
  font-weight: 700;
  color: #00738c;
  background-color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pdf-link:hover {
  background-color: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES (TABLET & MOBİL TAM UYUM)
   ============================================================ */

/* --- LARGE TABLET / LAPTOP (Max: 1100px) --- */
@media (max-width: 1100px) {
  .hero-trust {
    gap: 14px;
    padding: 12px 20px;
  }

  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 28px 32px;
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }

  .main-content > .container {
    grid-template-columns: 1fr;
  }

  .content-right {
    position: static !important;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .story-card {
    grid-template-columns: 1fr;
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- PORTRAIT TABLET (Max: 991px) --- */
@media (max-width: 991px) {
  :root {
    --container-pad: 20px;
  }

  .bento-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .bento-tall,
  .bento-tall-large {
    grid-row: auto;
    min-height: 230px;
  }

  .budget-card {
    flex-direction: column;
    gap: 30px;
  }
  .chart-box,
  .breakdown-list {
    width: 100%;
  }

  .erasmus-container {
    flex-direction: column;
    text-align: center;
  }
  .erasmus-logo-box {
    width: 100%;
    max-width: 260px;
  }
  .erasmus-features {
    justify-content: center;
  }

  .budget-footer {
    flex-direction: column;
    text-align: center;
  }
  .footer-info {
    flex-direction: column;
  }
}

/* --- MOBILE LANDSCAPE & TABLETS (Max: 768px) --- */
@media (max-width: 768px) {
  :root {
    --container-pad: 18px;
  }

  .hero {
    min-height: auto;
    padding: 110px 0 80px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-trust {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-scroll {
    display: none;
  }

  .stats-bar-inner {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 24px 20px;
  }
  .stat-item::after {
    display: none !important;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .process-connector {
    display: none;
  }

  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .content-right {
    grid-template-columns: 1fr;
  }

  .timeline {
    flex-direction: column;
    gap: 20px;
    padding: 0;
  }
  .timeline::before {
    top: 0;
    bottom: 0;
    left: 18px;
    width: 3px;
    height: auto;
    right: auto;
  }
  .timeline-item {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 100%;
  }
  .timeline-dot {
    margin: 0;
    flex-shrink: 0;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .hero-swiper-section {
    min-height: 440px !important;
    max-height: none !important;
  }
  .hero-left-aligned {
    padding: 175px 0 35px !important;
  }
  .hero-description {
    font-size: 0.88rem !important;
  }

  .gallery-header {
    width: 95%;
  }
  .gallery-header::before {
    width: 100%;
    height: 100%;
  }
}

/* --- PHONES (Max: 576px) --- */
@media (max-width: 576px) {
  .story-card-item.horizontal {
    flex-direction: column;
  }
  .story-card-item.horizontal .story-card-img {
    width: 100%;
    height: 160px;
  }

  .activity-item p {
    padding-left: 0;
    margin-top: 6px;
  }

  .resource-block-card {
    padding: 16px;
  }
  .resource-block-img-slanted {
    display: none;
  } /* Dar ekranlarda görsel gizlenerek metin ferahlatılır */
}

/* --- SMALL PHONES (Max: 480px) --- */
@media (max-width: 480px) {

    .stat-number {
      font-size: 1.55rem;
      font-weight:700;
    }

    .stat-lead-icon {
      width: 28px;
      height: 28px;
      padding:4px;
      display: none;
    }

  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-trust {
    flex-direction: column;
    gap: 10px;
    border-radius: var(--radius-lg);
  }
  .hero-trust-divider {
    width: 40px;
    height: 1px;
  }

  .stats-bar-inner {
      grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .process-steps {
grid-template-columns: repeat(2, 1fr);  }
  .activities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .donation-amounts {
    grid-template-columns: 1fr;
  }
  .story-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .bento-gallery-grid {
    grid-template-columns: 1fr;
  }

  .donut-chart {
    width: 180px;
    height: 180px;
  }
  .donut-center {
    width: 115px;
    height: 115px;
  }
  .donut-number {
    font-size: 26px;
  }

    .activities-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory; /* Kartların ekrana takılarak düzgün durmasını sağlar */
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch; /* iOS cihazlarda akıcı kaydırma */
        gap: 16px; /* Kartlar arası boşluk */
        padding-bottom: 15px; /* Alt gölgeler veya taşmalar kesilmesin diye */
        padding-left: 4px;
        padding-right: 4px;

        /* Kaydırma çubuğunu gizlemek için (daha temiz görünüm) */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE ve Edge */
    }

    /* Chrome, Safari ve Opera için kaydırma çubuğunu gizle */
    .activities-grid::-webkit-scrollbar {
        display: none;
    }

    .activity-item {
        flex: 0 0 85% !important; /* Kart genisliği: %85 görünür, %15 yandaki karttan ipucu verir */
        max-width: 85% !important;
        scroll-snap-align: start; /* Kaydırınca kartın sol başa hizalanması */
    }

        .bento-gallery-grid {
        grid-template-columns: 1fr;
    gap: 0px;
    }

}


@media (max-width: 1199px) {

    .container {
        max-width: 98%;
    }
    .gallery-header {
        width: 100%;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        padding: 0;
        max-width: 100%;
    }
    .process-card,.stories-section {
    padding: 15px;
}

  .stat-item {
    padding-left: 0px;
  }
  .navbar-toggle {
    display: flex !important;
  }

  .navbar-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 320px !important;
    max-width: 85vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #ffffff !important;
    z-index: 1050 !important; /* Backdrop katmanının (1040) üstünde durur */
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding: 90px 24px 32px 24px !important;
    transform: translateX(-100%) !important; /* Ekranın solunda bekler */
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    display: flex !important;
  }

  .navbar-nav.active {
    transform: translateX(
      0
    ) !important; /* Soldan sağa beyaz panel olarak kayar */
  }

  .navbar-nav a {
    color: #1a1d21 !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    padding: 14px 18px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-bottom: 1px solid #fafaf7 !important;
  }

  .navbar-nav a:hover,
  .navbar-nav a:active {
    background: #e8f8fb !important;
    color: #23b9d7 !important;
  }
}



/* --- Donut Chart Scroll Animation --- */
.chart-box .donut-chart {
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
    transition: transform 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.8s ease;
}
.chart-box.animate-chart .donut-chart {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.chart-box .donut-center {
    opacity: 0;
    transform: scale(0.5);
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.4s, opacity 0.5s ease 0.4s;
}
.chart-box.animate-chart .donut-center {
    opacity: 1;
    transform: scale(1);
}

/* Ensure hover scale still works after animation */
.chart-box.animate-chart .donut-chart:hover {
    transform: scale(1.03) rotate(0deg) !important;
}


@media(max-width:1024px){
  .btn{
    padding: 8px 16px !important;
  }

  .content-card-elegant{
    padding: 20px 20px !important;
  }
}

/* Tablo Genel Yapısı */
.excel-menu-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.excel-menu-table thead th {
    background-color: #141b2d; /* Koyu Lacivert Başlık */
    color: #ffffff;
    padding: 15px 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* İlk ve son başlık köşe yuvarlama */
.excel-menu-table thead th:first-child { border-top-left-radius: 8px; }
.excel-menu-table thead th:last-child { border-top-right-radius: 8px; }

.excel-menu-table tbody td {
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: #4a5568;
    font-size: 14px;
    vertical-align: middle;
}

/* Yemek 1 Kolonu Kalın Yazım */
.excel-menu-table tbody td:nth-child(3) {
    font-weight: 700;
    color: #1a202c;
}

/* BUGÜN SATIRI VURGUSU */
.row-today {
    background: linear-gradient(90deg, #f0fdfa 0%, #ffffff 100%) !important;
    position: relative;
}

.row-today td {
    border-bottom: 1px solid #b2f5ea !important;
}

/* Sol taraftaki Turkuaz Çizgi */
.row-today td:first-child {
    border-left: 4px solid var(--primary);
}

/* Bugün Etiketi (Gün isminin altında) */
.badge-today {
    background-color: var(--primary);
    color: white;
    font-size: 11px;
    padding: 3px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 5px;
    font-weight: 600;
}

/* TATİL SATIRI VE ETİKETİ */
.row-holiday {
    color: #a0aec0 !important;
}

.row-holiday td {
    color: #cbd5e0 !important;
}

.badge-holiday {
    background-color: #edf2f7;
    color: #718096;
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: 600;
}

/* İkonların Başlıktaki Hizalanması */
.excel-menu-table thead th i {
    margin-right: 8px;
    vertical-align: middle;
    color: #38bdf8; /* İkon rengi (Açık Mavi) */
}

/* Dergi Widget Genel Yapısı */
.mag-sidebar-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: all 0.3s ease;
}

.mag-sidebar-widget:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(35, 185, 215, 0.1);
}

.mag-badge-line {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--primary);
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 8px;
}

/* Dergi Kapağı 3D Efekti */
.mag-cover-container {
    perspective: 1000px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.mag-book-effect {
    width: 160px; /* Kapak genişliği */
    height: 225px; /* Kapak yüksekliği */
    position: relative;
    transform: rotateY(-15deg);
    transform-style: preserve-3d;
    box-shadow: 15px 15px 25px rgba(0,0,0,0.2);
    transition: transform 0.5s ease;
}

.mag-book-effect img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px 4px 4px 2px;
}

/* Dergi Sırtı (Cilt) Efekti */
.mag-book-spine {
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: rgba(0,0,0,0.15);
    border-radius: 2px 0 0 2px;
    box-shadow: inset -2px 0 5px rgba(0,0,0,0.2);
}

.mag-sidebar-widget:hover .mag-book-effect {
    transform: rotateY(0deg) scale(1.05);
}

/* Metin Alanı */
.mag-text-content h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.mag-text-content p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 0;
}

/* Buton */
.btn-mag-full {
    width: 100%;
    margin-top: 20px;
    background: #f8fafc;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.btn-mag-full:hover {
    background: var(--primary);
    color: #fff !important;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-mag-full [data-lucide] {
    width: 16px;
    height: 16px;
}




/* ============================================================
   PASVAK MOBILE ELEGANCE ADD-ONS (Existing Structure Safe)
   ============================================================ */

@media (max-width: 768px) {
    /* 1. Tipografi Rafine Etme */
    :root {
        --section-title-size: 1.75rem; /* Mobilde daha dengeli başlıklar */
    }

    .section-title {
        font-size: var(--section-title-size) !important;
        letter-spacing: -0.02em;
    }

    /* 2. Hero Bölümü Mobil Şıklığı */
    .hero {
        padding: 100px 0 60px !important;
        min-height: 80vh !important; /* Çok uzun ekranlarda boğulmaması için */
    }

    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
    }

    .hero-description {
        font-size: 0.95rem !important;
        padding: 0 10px;
    }

    /* 3. Kartlar ve Gölgeler (Daha Yumuşak) */
    .story-card, .process-card, .activities-grid .activity-item, .news-card, .mag-sidebar-widget {
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04) !important;
    }

    /* 4. Stat Bar (Mobil Grid Düzenleme) */
    .stats-bar-inner {
        padding: 20px 15px !important;
        gap: 15px !important;
    }

    .stat-item {
        background: var(--neutral-50);
        padding: 15px !important;
        border-radius: var(--radius-md);
        border: 1px solid rgba(35, 185, 215, 0.1);
    }

    .stat-number {
        font-size: 1.4rem !important;
    }

    /* 5. Kaynaklar / Blog Kartları (Resimli olanlar) */
    .resource-block-card {
        padding-right: 15px !important; /* Görseli gizlediğimiz için boşluğu alıyoruz */
        min-height: auto !important;
    }

    /* 6. Menü Tablosu (Excel Görünümü Yerine App Görünümü) */
    /* Mobilde yatay kaydırma çubuğunu daha zarif yapalım */
    .excel-table-responsive::-webkit-scrollbar {
        height: 4px;
    }
    .excel-table-responsive::-webkit-scrollbar-thumb {
        background: var(--primary-light);
        border-radius: 10px;
    }

    .excel-menu-table td, .excel-menu-table th {
        padding: 12px 10px !important;
        font-size: 0.8rem !important;
    }

    /* 7. Bağış Kartları (Sidebar'daki kartların mobil hali) */
    .content-right {
        margin-top: 30px;
    }

    .donation-card-modern, .needs-card-modern {
        border-radius: var(--radius-lg) !important;
    }

    /* 8. Bento Galeri (Mobilde Karmaşayı Önleme) */
    .bento-gallery-grid {
        gap: 8px !important;
    }

    .gallery-header {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(5px);
        padding: 15px !important;
        border-radius: var(--radius-md);
        width: 85% !important;
    }

    .stats-bar{
        margin-top: 20px;
    }

    /* 9. Footer (Daha Kompakt) */
    .footer {
        padding-top: 0px !important;
    }

    .footer-brand img {
        height: 35px;
    }

    .footer-col h4 {
        margin-bottom: 12px !important;
        font-size: 0.75rem !important;
    }

    /* 10. Navigasyon Çekmecesi (Daha Akıcı) */
    .navbar-nav {
        box-shadow: 15px 0 30px rgba(0,0,0,0.1);
    }

    .navbar-nav a {
        margin-bottom: 5px;
        background: #fcfcfc;
    }

    /* 11. Butonlar (Dokunmatik Dostu) */
    .btn-lg, .btn-primary, .btn-accent {
        min-height: 48px; /* Apple/Google tavsiyesi */
        width: 100%; /* Mobilde butonlar genelde tam genişlik daha şık durur */
    }

    /* 12. "Bugün" Vurgusu (Tablo için extra şıklık) */
    .row-today {
        border-left: 6px solid var(--primary) !important;
        background: #fff !important;
        box-shadow: inset 0 0 15px rgba(35, 185, 215, 0.05);
    }
}

/* Küçük dokunuş: Cihaz döndürüldüğünde (Landscape) düzenin bozulmaması için */
@media (max-height: 500px) and (orientation: landscape) {
    .navbar-nav {
        padding-top: 60px !important;
    }
    .navbar-nav a {
        padding: 8px 15px !important;
    }
    .hero {
        padding: 80px 0 40px !important;
    }
}

@media(max-width:1024px){
  .bento-gallery-section{
    display: none;
  }

  .footer-grid{
    display: none;
  }

  .tarihce-image {
    width: 100% !important;
  }

  .tarihce-item {
    padding-left: 0 !important;
  }

  .tarihce-content {
    padding: 60px 10px !important;
  }

  .p-5 {
    padding: 15px !important;
  }

  .p-4 {
    padding: 15px !important;
  }

  .hy{
    z-index: 1 !important;
  }
  
  .butooonn{
    position: relative !important;
    top: 0 !important;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}