/* ==================== TYPOGRAPHY SYSTEM  ==================== */
.ngo-eyebrow {
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.ngo-eyebrow::before,
.ngo-eyebrow::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.ngo-section-title {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.ngo-section-title--white {
  color: var(--white);
}

.ngo-section-desc {
  font-family: var(--font-secondary);
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 580px;
}

.ngo-section-desc--white {
  color: rgba(255, 255, 255, 0.78);
}

/* ========================== LAYOUT HELPERS ========================== */
.ngo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.ngo-section {
  padding: 96px 0;
}

.ngo-section--alt {
  background: var(--bg-third);
}

.ngo-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.ngo-section-header .ngo-eyebrow {
  justify-content: center;
}

/* ============================================================
   STATISTICS SECTION
   ============================================================ */
.ngo-stats {
  background: var(--bg-secondary);
  padding: 72px 0;
}

.ngo-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ngo-stat-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.ngo-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.ngo-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.ngo-stat-card:hover::before {
  opacity: 1;
}

.ngo-stat-card--1::before {
  background: linear-gradient(90deg, #fbbf24, #f472b6);
}
.ngo-stat-card--2::before {
  background: linear-gradient(90deg, #34d399, #06b6d4);
}
.ngo-stat-card--3::before {
  background: linear-gradient(90deg, #a78bfa, #818cf8);
}
.ngo-stat-card--4::before {
  background: linear-gradient(90deg, #fb923c, #fbbf24);
}

.ngo-stat-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
}

.ngo-stat-card--1 .ngo-stat-card__icon {
  background: linear-gradient(
    135deg,
    rgba(251, 191, 36, 0.2),
    rgba(244, 114, 182, 0.2)
  );
  color: #fbbf24;
}
.ngo-stat-card--2 .ngo-stat-card__icon {
  background: linear-gradient(
    135deg,
    rgba(52, 211, 153, 0.2),
    rgba(6, 182, 212, 0.2)
  );
  color: #34d399;
}
.ngo-stat-card--3 .ngo-stat-card__icon {
  background: linear-gradient(
    135deg,
    rgba(167, 139, 250, 0.2),
    rgba(129, 140, 248, 0.2)
  );
  color: #a78bfa;
}
.ngo-stat-card--4 .ngo-stat-card__icon {
  background: linear-gradient(
    135deg,
    rgba(251, 146, 60, 0.2),
    rgba(251, 191, 36, 0.2)
  );
  color: #fb923c;
}

.ngo-stat-card__num {
  font-family: var(--font-primary);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.ngo-stat-card__label {
  font-family: var(--font-secondary);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

/* ============================================================
   AGE-WISE PLAN SECTION
   ============================================================ */
.ngo-plan {
  background: var(--bg-third);
}

.ngo-plan__journey {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.ngo-plan__journey::before {
  content: "";
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--bg-primary),
    #c7d9ff,
    var(--bg-primary)
  );
  z-index: 0;
}

.ngo-plan-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 32px;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.ngo-plan-row:last-child {
  margin-bottom: 0;
}

.ngo-plan-row__dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}

.ngo-plan-row__dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-primary), #1a66f0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  box-shadow: 0 0 0 6px rgba(11, 77, 184, 0.12);
  flex-shrink: 0;
}

.ngo-plan-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.ngo-plan-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #c3d4f7;
  transform: translateX(6px);
}

.ngo-plan-card__age-label {
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg-primary);
  margin-bottom: 4px;
}

.ngo-plan-card__age {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.ngo-plan-card__amount-wrap {
  text-align: center;
}

.ngo-plan-card__amount-label {
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.ngo-plan-card__amount {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 900;
  color: var(--bg-primary);
  line-height: 1;
}

.ngo-plan-card__amount sup {
  font-size: 1rem;
  font-weight: 700;
  vertical-align: super;
}

.ngo-plan-card__benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.ngo-plan-card__benefit i {
  color: #34d399;
  font-size: 0.7rem;
}

/* ========================= DONATION BENEFITS SECTION ========================= */
.ngo-benefits {
  background: var(--white);
}

.ngo-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ngo-benefit-card {
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--white);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ngo-benefit-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bg-primary), #7eb3ff);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.ngo-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: #d1e0ff;
}

.ngo-benefit-card:hover::after {
  transform: scaleX(1);
}

.ngo-benefit-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.ngo-benefit-card:hover .ngo-benefit-card__icon {
  transform: scale(1.1) rotate(-4deg);
}

.ngo-benefit-card--1 .ngo-benefit-card__icon {
  background: linear-gradient(135deg, #fde68a, #fbbf24);
  color: #92400e;
}
.ngo-benefit-card--2 .ngo-benefit-card__icon {
  background: linear-gradient(135deg, #bfdbfe, #3b82f6);
  color: #1d4ed8;
}
.ngo-benefit-card--3 .ngo-benefit-card__icon {
  background: linear-gradient(135deg, #bbf7d0, #22c55e);
  color: #14532d;
}
.ngo-benefit-card--4 .ngo-benefit-card__icon {
  background: linear-gradient(135deg, #fce7f3, #ec4899);
  color: #9d174d;
}

.ngo-benefit-card__title {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.ngo-benefit-card__desc {
  font-family: var(--font-secondary);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ====================  WEDDING GIFT ITEMS SECTION  ==================== */
.ngo-gifts {
  background: var(--bg-third);
}

.ngo-gifts__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.ngo-gift-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  cursor: default;
}

.ngo-gift-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: #c3d4f7;
}

.ngo-gift-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, var(--bg-primary), #1a66f0);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  min-width: 28px;
  text-align: center;
}

.ngo-gift-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 12px;
  transition: var(--transition);
}

.ngo-gift-card:hover .ngo-gift-card__icon {
  transform: scale(1.12);
}

.ngo-gift-card__name {
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.3;
}

.ngo-gift-card__qty {
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Gift icon color sets — cycling through 5 palettes */
.ngo-gift-card:nth-child(5n + 1) .ngo-gift-card__icon {
  background: linear-gradient(135deg, #fde68a, #fbbf24);
  color: #92400e;
}

.ngo-gift-card:nth-child(5n + 2) .ngo-gift-card__icon {
  background: linear-gradient(135deg, #bfdbfe, #60a5fa);
  color: #1d4ed8;
}

.ngo-gift-card:nth-child(5n + 3) .ngo-gift-card__icon {
  background: linear-gradient(135deg, #bbf7d0, #4ade80);
  color: #14532d;
}

.ngo-gift-card:nth-child(5n + 4) .ngo-gift-card__icon {
  background: linear-gradient(135deg, #fce7f3, #f472b6);
  color: #9d174d;
}

.ngo-gift-card:nth-child(5n + 5) .ngo-gift-card__icon {
  background: linear-gradient(135deg, #e9d5ff, #a78bfa);
  color: #4c1d95;
}
