/* ===== GIVING BACK HERO ICON ===== */
.page-hero .hero-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

/* ===== CONTENT SECTIONS ===== */
.content-section { padding: 3rem 2.5rem; }
.content-section:nth-child(even) { background: rgba(26, 11, 46, 0.3); }
.content-inner { max-width: 860px; margin: 0 auto; }

/* ===== GLASS CARDS ===== */
.glass-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 20px;
  padding: 2.5rem; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0; transform: translateY(30px);
}
.glass-card.visible { opacity: 1; transform: translateY(0); }
.glass-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3); }
.glass-card h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 1.6rem;
  margin-bottom: 1.2rem; color: #fff;
}
.glass-card p {
  font-size: 1rem; color: rgba(240, 230, 255, 0.65); line-height: 1.8; margin-bottom: 1rem;
}
.glass-card p:last-child { margin-bottom: 0; }
.glass-card ul {
  list-style: none; padding: 0; margin-top: 1rem;
}
.glass-card ul li {
  font-size: 1rem; color: rgba(240, 230, 255, 0.65); line-height: 1.8;
  padding: 0.6rem 0; padding-left: 2rem; position: relative;
}
.glass-card ul li::before {
  content: ''; position: absolute; left: 0; top: 1rem;
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--vivid-pink), var(--hot-orange));
}
.glass-card ul li strong { color: var(--soft-white); }

/* ===== IMPACT STATS ===== */
.stats-section { padding: 4rem 2.5rem; }
.stats-grid {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.stat-card {
  text-align: center; padding: 2.5rem 1.5rem;
  background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 20px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  opacity: 0; transform: translateY(30px);
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.6s ease;
}
.stat-card.visible { opacity: 1; transform: translateY(0); }
.stat-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3); }
.stat-number {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 3rem;
  background: linear-gradient(135deg, var(--vivid-pink), var(--hot-orange), var(--tropical-teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-size: 200% 200%; animation: gradientShift 4s ease infinite;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.9rem; color: rgba(240, 230, 255, 0.55); line-height: 1.5; }

/* ===== PILLAR CARDS ===== */
.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1.5rem;
}
.pillar-card {
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 2rem; text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.pillar-card:hover { transform: translateY(-4px); border-color: rgba(255, 59, 142, 0.3); }
.pillar-icon { font-size: 2rem; margin-bottom: 1rem; }
.pillar-card h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 1rem;
  color: #fff; margin-bottom: 0.6rem;
}
.pillar-card p { font-size: 0.9rem; color: rgba(240, 230, 255, 0.55); line-height: 1.6; margin: 0; }

/* ===== GIVING BACK RESPONSIVE ===== */
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .glass-card { padding: 1.8rem; }
  .content-section { padding: 2rem 1.5rem; }
}
