/* ============================================================
   7Slots Sorumlu Oyun Vakfi — Donation / Non-Profit Page
   Palette: Humanitarian Teal + Warm Coral — LIGHT THEME
   ============================================================ */

:root {
  --c-primary: #0D9488;
  --c-primary-dark: #0F766E;
  --c-primary-light: #14B8A6;
  --c-accent: #F97316;
  --c-accent-dark: #EA580C;
  --c-secondary: #134E4A;
  --c-secondary-light: #1A5C56;
  --c-bg: #F0FDFA;
  --c-bg-alt: #CCFBF1;
  --c-bg-card: #FFFFFF;
  --c-text: #1E293B;
  --c-text-muted: #64748B;
  --c-border: #D1FAE5;
  --c-border-strong: #99F6E4;
  --c-white: #FFFFFF;
  --c-heart: #EF4444;
  --c-success: #10B981;
  --c-danger: #EF4444;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(15, 23, 42, .06);
  --shadow-lg: 0 12px 48px rgba(15, 23, 42, .1);
  --shadow-teal: 0 8px 32px rgba(13, 148, 136, .15);
  --transition: .25s cubic-bezier(.4, 0, .2, 1);
  --wrap: 1140px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-primary-dark); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: fixed; top: -100px; left: 16px;
  background: var(--c-primary); color: var(--c-white);
  padding: 12px 24px; border-radius: var(--radius-sm);
  z-index: 10000; font-weight: 600;
  transition: top var(--transition);
}

/* ============================================================
   ANIMATION CLASSES
   ============================================================ */
.anim-hidden {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.anim-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: .95rem;
  border: 2px solid transparent; cursor: pointer;
  transition: all var(--transition); text-decoration: none;
  gap: 8px; white-space: nowrap;
}
.btn-primary {
  background: var(--c-primary); color: var(--c-white); border-color: var(--c-primary);
}
.btn-primary:hover {
  background: var(--c-primary-dark); border-color: var(--c-primary-dark); color: var(--c-white);
  transform: translateY(-2px); box-shadow: var(--shadow-teal);
}
.btn-accent {
  background: var(--c-accent); color: var(--c-white); border-color: var(--c-accent);
}
.btn-accent:hover {
  background: var(--c-accent-dark); border-color: var(--c-accent-dark); color: var(--c-white);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249, 115, 22, .25);
}
.btn-outline {
  background: transparent; color: var(--c-primary); border-color: var(--c-primary);
}
.btn-outline:hover {
  background: var(--c-primary); color: var(--c-white); transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: .85rem; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--c-secondary); color: rgba(255,255,255,.8);
  padding: 10px 0; font-size: .85rem; text-align: center;
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
}
.topbar-badge {
  background: var(--c-primary); color: var(--c-white);
  padding: 2px 12px; border-radius: 50px;
  font-weight: 800; font-size: .7rem; letter-spacing: 1px;
}
.topbar-dot {
  width: 6px; height: 6px; background: var(--c-success);
  border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}
.topbar a { color: var(--c-primary-light); font-weight: 700; margin-left: 6px; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  background: var(--c-white); border-bottom: 1px solid var(--c-border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,.04);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 900; font-size: 1.2rem; color: var(--c-secondary);
}
.logo:hover { color: var(--c-primary); }
.logo-icon {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; background: var(--c-secondary);
  color: var(--c-primary); border-radius: 10px;
  font-weight: 900; font-size: .85rem;
}
.nav { display: flex; gap: 28px; }
.nav a {
  color: var(--c-text-muted); font-weight: 600; font-size: .9rem;
  position: relative; padding: 4px 0;
}
.nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--c-primary);
  transition: width var(--transition);
}
.nav a:hover { color: var(--c-primary); }
.nav a:hover::after { width: 100%; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { padding: 14px 0; background: var(--c-bg); }
.breadcrumb ol {
  display: flex; align-items: center; gap: 8px;
  list-style: none; font-size: .85rem; color: var(--c-text-muted);
}
.breadcrumb li + li::before { content: '/'; margin-right: 8px; color: var(--c-border-strong); }
.breadcrumb a { color: var(--c-text-muted); }
.breadcrumb a:hover { color: var(--c-primary); }
.breadcrumb [aria-current] { color: var(--c-primary); font-weight: 600; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--c-secondary) 0%, #0A3D38 50%, var(--c-secondary-light) 100%);
  padding: 80px 0 60px; overflow: hidden; color: var(--c-white);
  text-align: center;
}
.hero-particles {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 25% 70%, rgba(13, 148, 136, .15) 0%, transparent 50%),
    radial-gradient(circle at 75% 30%, rgba(249, 115, 22, .08) 0%, transparent 40%);
}
.heart-particle {
  position: absolute; font-size: 14px; color: var(--c-heart);
  opacity: .25; animation: heart-float linear infinite;
}
.hp1 { left: 8%; animation-duration: 7s; animation-delay: 0s; bottom: -20px; }
.hp2 { left: 22%; animation-duration: 9s; animation-delay: 1.5s; bottom: -20px; }
.hp3 { left: 40%; animation-duration: 6s; animation-delay: 3s; bottom: -20px; }
.hp4 { left: 58%; animation-duration: 8s; animation-delay: .5s; bottom: -20px; }
.hp5 { left: 75%; animation-duration: 10s; animation-delay: 2s; bottom: -20px; }
.hp6 { left: 90%; animation-duration: 7.5s; animation-delay: 4s; bottom: -20px; }
@keyframes heart-float {
  0% { transform: translateY(0) scale(1) rotate(0deg); opacity: .4; }
  50% { opacity: .7; transform: translateY(-300px) scale(1.2) rotate(15deg); }
  100% { transform: translateY(-650px) scale(.5) rotate(-10deg); opacity: 0; }
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  background: rgba(13, 148, 136, .2); border: 1px solid rgba(13, 148, 136, .4);
  color: var(--c-primary-light);
  padding: 6px 20px; border-radius: 50px;
  font-size: .8rem; font-weight: 700; letter-spacing: .5px;
  margin-bottom: 18px;
}
.hero h1 { font-size: 3rem; font-weight: 900; line-height: 1.15; margin-bottom: 16px; }
.hero h1 em { font-style: normal; color: var(--c-primary-light); }
.hero-subtitle {
  font-size: 1.15rem; color: rgba(255,255,255,.7);
  margin-bottom: 16px; max-width: 640px; margin-left: auto; margin-right: auto;
}
.hero-mission {
  font-size: 1rem; color: rgba(255,255,255,.5); font-style: italic;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
section { padding: 80px 0; }
section h2 {
  font-size: 2.2rem; font-weight: 900;
  text-align: center; margin-bottom: 12px; color: var(--c-secondary);
}
.section-desc {
  text-align: center; color: var(--c-text-muted);
  font-size: 1.05rem; margin-bottom: 48px;
  max-width: 600px; margin-left: auto; margin-right: auto;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--c-white); padding: 32px 0;
  border-bottom: 1px solid var(--c-border);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-icon { font-size: 1.6rem; display: block; margin-bottom: 6px; }
.stat-value { display: block; font-size: 1.4rem; color: var(--c-primary); font-weight: 800; }
.stat-label {
  display: block; font-size: .75rem; color: var(--c-text-muted);
  text-transform: uppercase; letter-spacing: .5px; margin-top: 2px;
}

/* ============================================================
   MISSION
   ============================================================ */
.mission { background: var(--c-bg); }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mission-card {
  background: var(--c-bg-card); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 32px 24px;
  text-align: center; transition: all var(--transition);
}
.mission-card:hover {
  border-color: var(--c-primary); transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.mission-icon { font-size: 2.5rem; margin-bottom: 14px; }
.mission-card h3 {
  font-size: 1.05rem; font-weight: 800; color: var(--c-secondary);
  margin-bottom: 10px;
}
.mission-card p { font-size: .9rem; color: var(--c-text-muted); line-height: 1.7; }

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs { background: var(--c-white); }
.program-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.program-card {
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 28px 20px;
  text-align: center; transition: all var(--transition);
}
.program-card:hover {
  border-color: var(--c-primary); transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.program-icon { font-size: 2rem; margin-bottom: 8px; }
.program-stat {
  font-size: .7rem; font-weight: 800; color: var(--c-accent);
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px;
}
.program-card h3 {
  font-size: .95rem; font-weight: 800; color: var(--c-secondary);
  margin-bottom: 8px;
}
.program-card p { font-size: .83rem; color: var(--c-text-muted); line-height: 1.6; margin-bottom: 14px; }

/* ============================================================
   DONATE
   ============================================================ */
.donate {
  background: linear-gradient(135deg, var(--c-secondary) 0%, #0A3D38 100%);
  color: var(--c-white);
}
.donate h2 { color: var(--c-white); }
.donate .section-desc { color: rgba(255,255,255,.6); }
.donate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.donate-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 28px 20px;
  text-align: center; position: relative;
  transition: all var(--transition);
}
.donate-card:hover {
  background: rgba(255,255,255,.1); transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(13, 148, 136, .2);
}
.donate-featured {
  border-color: var(--c-primary);
  background: rgba(13, 148, 136, .1);
}
.donate-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--c-accent); color: var(--c-white);
  padding: 4px 16px; border-radius: 50px;
  font-size: .65rem; font-weight: 800; letter-spacing: .5px;
  text-transform: uppercase; white-space: nowrap;
}
.donate-amount {
  font-size: 2.2rem; font-weight: 900; color: var(--c-primary-light);
  margin-bottom: 8px;
}
.donate-impact {
  font-size: .8rem; font-weight: 700; color: var(--c-accent);
  text-transform: uppercase; letter-spacing: .3px; margin-bottom: 12px;
}
.donate-card p { font-size: .83rem; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 18px; }
.donate-custom {
  text-align: center; margin-top: 32px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
}
.donate-custom p { color: rgba(255,255,255,.5); margin-bottom: 14px; }

/* ============================================================
   IMPACT TIMELINE
   ============================================================ */
.impact-timeline { background: var(--c-bg); }
.timeline {
  max-width: 700px; margin: 0 auto; position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: ''; position: absolute; left: 15px; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--c-primary), var(--c-accent));
  border-radius: 50px;
}
.tl-item { position: relative; margin-bottom: 36px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  position: absolute; left: -33px; top: 6px;
  width: 14px; height: 14px;
  background: var(--c-primary); border: 3px solid var(--c-bg);
  border-radius: 50%; z-index: 1;
}
.tl-current .tl-dot {
  background: var(--c-accent);
  box-shadow: 0 0 16px rgba(249, 115, 22, .4);
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(249, 115, 22, .3); }
  50% { box-shadow: 0 0 20px rgba(249, 115, 22, .6); }
}
.tl-content {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 20px 24px;
  transition: all var(--transition);
}
.tl-item:hover .tl-content { box-shadow: var(--shadow); transform: translateX(4px); }
.tl-year {
  font-size: .75rem; font-weight: 800; color: var(--c-primary);
  text-transform: uppercase; letter-spacing: 1px;
}
.tl-content h3 {
  font-size: 1.05rem; font-weight: 800; color: var(--c-secondary);
  margin: 4px 0 6px;
}
.tl-content p { font-size: .9rem; color: var(--c-text-muted); line-height: 1.6; }

/* ============================================================
   TRANSPARENCY
   ============================================================ */
.transparency { background: var(--c-white); }
.transparency-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
  max-width: 800px; margin: 0 auto;
}
.transparency-card {
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 32px;
  text-align: center; transition: all var(--transition);
}
.transparency-card:hover { box-shadow: var(--shadow); }
.transparency-card h3 {
  font-size: 1.1rem; font-weight: 800; color: var(--c-secondary);
  margin-bottom: 20px;
}

/* CSS Pie Chart */
.pie-chart {
  width: 180px; height: 180px; border-radius: 50%;
  background: conic-gradient(
    var(--c-primary) 0% 40%,
    var(--c-accent) 40% 70%,
    #8B5CF6 70% 90%,
    var(--c-text-muted) 90% 100%
  );
  margin: 0 auto 20px; position: relative;
}
.pie-center {
  position: absolute; inset: 30px;
  background: var(--c-bg); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; color: var(--c-secondary);
}
.pie-center small { font-size: .65rem; color: var(--c-text-muted); font-weight: 600; }
.pie-segment { display: none; }
.pie-legend { list-style: none; text-align: left; display: inline-block; }
.pie-legend li {
  font-size: .8rem; color: var(--c-text-muted);
  padding: 4px 0; display: flex; align-items: center; gap: 8px;
}
.pie-legend strong { color: var(--c-text); }
.legend-dot {
  width: 10px; height: 10px; border-radius: 3px; flex-shrink: 0;
}
.ld-1 { background: var(--c-primary); }
.ld-2 { background: var(--c-accent); }
.ld-3 { background: #8B5CF6; }
.ld-4 { background: var(--c-text-muted); }

.audit-badge {
  width: 80px; height: 80px; margin: 0 auto 16px;
  background: var(--c-bg-alt); border: 3px solid var(--c-success);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--c-success);
}
.audit-org { font-weight: 800; color: var(--c-secondary); margin-bottom: 4px; }
.audit-date { font-size: .8rem; color: var(--c-text-muted); margin-bottom: 14px; }
.transparency-card p { font-size: .85rem; color: var(--c-text-muted); line-height: 1.7; margin-bottom: 14px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--c-bg); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 28px;
  text-align: center; transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: var(--c-primary); box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.testimonial-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .9rem; color: var(--c-white);
  margin: 0 auto 12px;
}
.ta-1 { background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light)); }
.ta-2 { background: linear-gradient(135deg, #8B5CF6, #A78BFA); }
.ta-3 { background: linear-gradient(135deg, var(--c-accent), #FB923C); }
.testimonial-card strong { display: block; font-size: 1rem; color: var(--c-secondary); margin-bottom: 4px; }
.testimonial-program {
  display: inline-block; font-size: .7rem; font-weight: 700;
  color: var(--c-primary); background: var(--c-bg-alt);
  padding: 2px 10px; border-radius: 50px; margin-bottom: 12px;
}
.testimonial-card p { font-size: .88rem; color: var(--c-text-muted); line-height: 1.7; font-style: italic; }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners { background: var(--c-white); }
.partner-grid {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.partner-item { text-align: center; }
.partner-logo {
  width: 64px; height: 64px; margin: 0 auto 8px;
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.partner-item span { font-size: .75rem; color: var(--c-text-muted); font-weight: 600; display: block; max-width: 100px; }

/* ============================================================
   SECURITY
   ============================================================ */
.security {
  background: var(--c-bg); padding: 40px 0;
  border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border);
}
.security-grid {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.security-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: var(--c-text-muted); font-weight: 600;
}
.security-icon { font-size: 1.3rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--c-white); }
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item {
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: var(--radius); margin-bottom: 12px;
  overflow: hidden; transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: 0 2px 12px rgba(13, 148, 136, .08); }
.faq-item summary {
  padding: 18px 24px; font-weight: 700; font-size: 1rem;
  cursor: pointer; color: var(--c-secondary);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--c-primary); font-weight: 300; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item[open] summary { border-bottom: 1px solid var(--c-border); }
.faq-item p {
  padding: 18px 24px; font-size: .95rem;
  color: var(--c-text-muted); line-height: 1.7;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: linear-gradient(135deg, var(--c-secondary) 0%, #0A3D38 100%);
  color: var(--c-white); text-align: center; padding: 80px 0;
}
.cta-heart {
  font-size: 3rem; color: var(--c-heart); margin-bottom: 16px;
  animation: heart-beat 1.5s ease-in-out infinite;
}
@keyframes heart-beat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.15); }
  30% { transform: scale(1); }
  45% { transform: scale(1.1); }
  60% { transform: scale(1); }
}
.final-cta h2 { color: var(--c-white); margin-bottom: 16px; }
.final-cta > .wrap > p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.cta-note { font-size: .8rem; color: rgba(255,255,255,.4); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--c-secondary); color: rgba(255,255,255,.6);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo .logo-icon { background: rgba(255,255,255,.1); }
.footer-brand p { font-size: .85rem; line-height: 1.7; }
.footer-links h4 {
  color: var(--c-primary-light); font-size: .9rem; font-weight: 800;
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: .5px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.5); font-size: .85rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--c-primary-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0; text-align: center;
}
.footer-bottom p { font-size: .8rem; margin-bottom: 4px; }
.footer-disclaimer { color: rgba(255,255,255,.4); font-size: .75rem; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--c-secondary); color: var(--c-white);
  padding: 16px 24px; z-index: 9999;
  display: none; justify-content: center;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
}
.cookie-inner {
  display: flex; align-items: center; gap: 20px;
  max-width: var(--wrap); flex-wrap: wrap; justify-content: center;
}
.cookie-inner p { font-size: .85rem; color: rgba(255,255,255,.8); }
.cookie-inner a { color: var(--c-primary-light); }

/* ============================================================
   CHAT WIDGET
   ============================================================ */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 9998; }
.chat-btn {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; background: var(--c-heart);
  color: var(--c-white); border-radius: 50%; font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(239, 68, 68, .3); transition: all var(--transition);
}
.chat-btn:hover {
  background: #DC2626; color: var(--c-white);
  transform: scale(1.1); box-shadow: 0 6px 28px rgba(239, 68, 68, .45);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero h1 { font-size: 2.4rem; }
  .mission-grid { grid-template-columns: 1fr; }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .donate-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .transparency-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  section h2 { font-size: 1.8rem; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  .program-grid { grid-template-columns: 1fr; }
  .donate-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .footer-inner { grid-template-columns: 1fr; }
  .partner-grid { gap: 24px; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .wrap { padding: 0 16px; }
  .hero { padding: 40px 0 30px; }
  .hero h1 { font-size: 1.7rem; }
  .btn-lg { padding: 14px 28px; font-size: .95rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .donate-amount { font-size: 1.8rem; }
  .pie-chart { width: 150px; height: 150px; }
  .pie-center { inset: 24px; font-size: .95rem; }
  .board-grid { grid-template-columns: 1fr 1fr; }
  .donor-feed { max-height: 200px; }
}

/* ===== DONATION PROGRESS BAR ===== */
.donation-progress { padding: var(--s-3xl) var(--s-md); background: var(--c-bg); }
.donation-progress h2 { text-align: center; font-size: 1.5rem; font-weight: 700; margin-bottom: var(--s-xs); }
.donation-progress .subtitle { text-align: center; color: var(--c-text-muted); margin-bottom: var(--s-xl); }
.dp-card {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--s-xl);
  background: var(--c-card);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--c-primary);
}
.dp-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: var(--s-sm); }
.dp-collected { font-size: 1.5rem; font-weight: 900; color: var(--c-primary); }
.dp-goal { font-size: 0.875rem; color: var(--c-text-muted); }
.dp-track {
  width: 100%;
  height: 16px;
  background: #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: var(--s-md);
  position: relative;
}
.dp-fill {
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  transition: width 1.5s ease;
  position: relative;
}
.dp-fill::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--c-primary);
}
.dp-stats { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--c-text-muted); }
.dp-pct { font-weight: 700; color: var(--c-primary); }
.dp-donors { font-weight: 600; }

/* ===== RECURRING TOGGLE ===== */
.donate-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--s-xl);
  background: var(--c-bg-alt);
  border-radius: 100px;
  padding: 4px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.donate-toggle-btn {
  flex: 1;
  padding: var(--s-sm) var(--s-md);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-text-muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.donate-toggle-btn.active {
  background: var(--c-primary);
  color: white;
  box-shadow: 0 2px 8px rgba(13,148,136,0.3);
}
.recurring-badge {
  display: inline-block;
  font-size: 0.5625rem;
  background: var(--c-accent);
  color: white;
  padding: 1px 6px;
  border-radius: 100px;
  margin-left: 4px;
  vertical-align: middle;
}

/* ===== RECENT DONORS FEED ===== */
.recent-donors { padding: var(--s-3xl) var(--s-md); background: var(--c-bg-alt); }
.recent-donors h2 { text-align: center; font-size: 1.5rem; font-weight: 700; margin-bottom: var(--s-xs); }
.recent-donors .subtitle { text-align: center; color: var(--c-text-muted); margin-bottom: var(--s-xl); }
.donor-feed {
  max-width: 500px;
  margin: 0 auto;
  max-height: 280px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
  padding-right: var(--s-sm);
}
.donor-feed::-webkit-scrollbar { width: 4px; }
.donor-feed::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 2px; }
.donor-item {
  display: flex;
  align-items: center;
  gap: var(--s-md);
  padding: var(--s-md);
  background: var(--c-card);
  border-radius: var(--r-md);
  border-left: 3px solid var(--c-primary);
  animation: donorSlideIn 0.5s ease;
}
@keyframes donorSlideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.donor-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.donor-info { flex: 1; }
.donor-name { font-size: 0.875rem; font-weight: 600; }
.donor-amount { font-size: 0.8125rem; color: var(--c-primary); font-weight: 700; }
.donor-time { font-size: 0.6875rem; color: var(--c-text-muted); }

/* ===== TAX DEDUCTION ===== */
.tax-deduction { padding: var(--s-3xl) var(--s-md); background: var(--c-bg); }
.tax-deduction h2 { text-align: center; font-size: 1.5rem; font-weight: 700; margin-bottom: var(--s-xs); }
.tax-deduction .subtitle { text-align: center; color: var(--c-text-muted); margin-bottom: var(--s-xl); }
.tax-card {
  max-width: 550px;
  margin: 0 auto;
  padding: var(--s-xl);
  background: var(--c-card);
  border: 2px solid #16A34A;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.tax-icon-row { text-align: center; font-size: 2.5rem; margin-bottom: var(--s-md); }
.tax-info { font-size: 0.875rem; color: var(--c-text-muted); text-align: center; margin-bottom: var(--s-lg); line-height: 1.6; }
.tax-calc { display: flex; gap: var(--s-md); }
.tax-box {
  flex: 1;
  text-align: center;
  padding: var(--s-md);
  background: var(--c-bg-alt);
  border-radius: var(--r-md);
}
.tax-box-label { font-size: 0.6875rem; color: var(--c-text-muted); margin-bottom: 4px; text-transform: uppercase; }
.tax-box-value { font-size: 1.125rem; font-weight: 700; }
.tax-box-value.green { color: #16A34A; }
.tax-receipt { text-align: center; font-size: 0.75rem; color: var(--c-text-muted); margin-top: var(--s-md); }

/* ===== BOARD OF DIRECTORS ===== */
.board { padding: var(--s-3xl) var(--s-md); background: var(--c-bg-alt); }
.board h2 { text-align: center; font-size: 1.5rem; font-weight: 700; margin-bottom: var(--s-xs); }
.board .subtitle { text-align: center; color: var(--c-text-muted); margin-bottom: var(--s-xl); }
.board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-md);
  max-width: 800px;
  margin: 0 auto;
}
.board-card {
  background: var(--c-card);
  border-radius: var(--r-md);
  padding: var(--s-lg);
  text-align: center;
  border: 1px solid var(--c-border);
}
.board-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto var(--s-sm);
}
.board-name { font-size: 0.9375rem; font-weight: 700; margin-bottom: 2px; }
.board-role { font-size: 0.6875rem; color: var(--c-primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: var(--s-xs); }
.board-bio { font-size: 0.75rem; color: var(--c-text-muted); line-height: 1.4; }
