/* ============================================================
   NASCENT FOUNDATION - Main Stylesheet
   Aesthetic: Warm Saffron + Forest Green, editorial & hopeful
   ============================================================ */

:root {
  --primary: #1a5c2e;
  /* deep forest green */
  --primary-light: #257a3e;
  --accent: #e8891e;
  /* saffron/gold */
  --accent-light: #f5a94e;
  --accent-dark: #c46c08;
  --bg: #faf8f4;
  --bg-soft: #f3f0ea;
  --text: #1c1a17;
  --text-muted: #6b6560;
  --white: #ffffff;
  --card-bg: #ffffff;
  --border: #e5e0d8;

  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

#mainNav.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-md);
}

.logo-circle {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(26, 92, 46, 0.3);
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.brand-tagline {
  font-size: 0.65rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text) !important;
  padding: 6px 12px !important;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
  background: rgba(26, 92, 46, 0.07);
}

.btn-donate {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white !important;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(232, 137, 30, 0.35);
}

.btn-donate:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 137, 30, 0.45);
  color: white !important;
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0d3d1f 0%, #1a5c2e 40%, #1e6635 70%, #2d8048 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.5;
  background-position: bottom;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.hero-badge {}

.badge-pill {
  background: rgba(232, 137, 30, 0.2);
  border: 1px solid rgba(232, 137, 30, 0.4);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.highlight-text {
  color: var(--accent-dark);
  font-style: italic;
}

.hero-desc {
  color: var(--white);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.btn-outline-hero {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white !important;
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

.hero-stats {
  margin-top: 2.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--white);
  font-weight: 500;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  align-self: center;
}

/* Hero Cards */
.hero-card-stack {
  position: relative;
  width: 320px;
  height: 400px;
}

.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 24px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 0.9rem;
  font-weight: 500;
  animation: float 3s ease-in-out infinite;
}

.hero-card small {
  opacity: 0.7;
  font-size: 0.78rem;
}

.card-1 {
  top: 0;
  right: 0;
  width: 200px;
  animation-delay: 0s;
}

.card-2 {
  top: 140px;
  left: 0;
  width: 220px;
  animation-delay: 0.7s;
}

.card-3 {
  bottom: 0;
  right: 20px;
  width: 200px;
  animation-delay: 1.4s;
}

.hero-ring {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(232, 137, 30, 0.3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 20s linear infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.8;
    transform: scaleY(1.2);
  }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--accent);
  padding: 12px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
}

.marquee-track .dot {
  color: rgba(255, 255, 255, 0.6);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.btn-primary-custom {
  background: var(--primary);
  color: white !important;
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}

.btn-primary-custom:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   MISSION SECTION
   ============================================================ */
.section-mission {
  background: var(--bg);
}

.mission-visual {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.mission-big-number {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: -10px;
  right: -10px;
  line-height: 1;
}

.mission-modules {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: auto;
}

.module-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  cursor: default;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.module-card.active,
.module-card:hover {
  background: rgba(232, 137, 30, 0.2);
  border-color: rgba(232, 137, 30, 0.4);
  color: var(--accent-light);
  transform: translateY(-3px);
}

.mission-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mission-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
}

.pillar-icon {
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ============================================================
   NEED CARDS
   ============================================================ */
.section-need {
  background: var(--bg-soft);
}

.need-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.need-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.need-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.need-card h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.need-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================================
   IMPACT CARDS
   ============================================================ */
.section-impact {
  background: var(--primary);
}

.section-impact .section-label {
  color: var(--accent-light);
}

.section-impact .section-heading {
  color: white;
}

.impact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
}

.impact-card:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.impact-card.featured {
  background: var(--accent);
  border-color: var(--accent);
}

.impact-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.impact-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
}

.impact-card p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ============================================================
   ACADEMIC / INFRASTRUCTURE
   ============================================================ */
.section-academic {
  background: var(--bg);
}

.academic-levels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.level-card {
  display: flex;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  transition: all 0.3s;
}

.level-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.level-tag {
  background: var(--primary);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  align-self: flex-start;
  flex-shrink: 0;
}

.level-info h6 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text);
}

.level-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.stream-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.stream-tags span {
  background: rgba(232, 137, 30, 0.12);
  color: var(--accent-dark);
  border: 1px solid rgba(232, 137, 30, 0.3);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.infra-item {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  transition: all 0.3s;
}

.infra-item i {
  font-size: 1.5rem;
  color: var(--primary);
}

.infra-item:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.infra-item:hover i {
  color: var(--accent-light);
}

/* ============================================================
   BUDGET
   ============================================================ */
.section-budget {
  background: var(--bg-soft);
}

.budget-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
}

.budget-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

.budget-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.budget-row:last-child {
  border-bottom: none;
}

.budget-row.total {
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
  padding-top: 12px;
  border-top: 2px solid var(--primary);
  border-bottom: none;
}

.budget-row strong {
  color: var(--primary);
}

.total-project-cost {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.total-project-cost strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent-light);
}

.source-tag {
  background: rgba(26, 92, 46, 0.1);
  color: var(--primary);
  border: 1px solid rgba(26, 92, 46, 0.2);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.section-timeline {
  background: var(--bg);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
  justify-content: flex-end;
  padding-right: calc(50% + 2rem);
}

.timeline-item.right {
  flex-direction: row-reverse;
  padding-right: 0;
  padding-left: calc(50% + 2rem);
  justify-content: flex-end;
}

.timeline-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 3px solid var(--bg);
  z-index: 1;
  font-size: 1rem;
}

.timeline-content {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  max-width: 340px;
  transition: all 0.3s;
}

.timeline-content:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.timeline-phase {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.timeline-content h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   TAX BENEFITS
   ============================================================ */
.section-taxbenefit {
  background: var(--bg-soft);
}

.taxbenefit-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.benefit-badge {
  background: var(--primary);
  color: white;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
}

.donate-icon-ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(232, 137, 30, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(232, 137, 30, 0.4);
  }

  50% {
    box-shadow: 0 8px 50px rgba(232, 137, 30, 0.7);
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0d2d18;
  padding: 4rem 0 0;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-heading {
  color: var(--accent-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links li,
.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.2s;
  font-size: 0.85rem;
}

.footer-social a:hover {
  background: var(--accent);
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--accent-light);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #0d3d1f 0%, #1a5c2e 100%);
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding: 100px 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.page-hero-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin: 0;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-visual {
  position: relative;
  min-height: 400px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('https://public.readdy.ai/ai/img_res/cda71b85aba91a6382398d5376ba1400.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}

.about-badge-1,
.about-badge-2 {
  position: absolute;
  background: var(--accent);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}

.about-badge-1 {
  top: 20px;
  left: 20px;
}

.about-badge-2 {
  bottom: 20px;
  right: 20px;
}

.about-core-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(1.5px);
  ;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  color: white;
  margin: 1.5rem;
}

.about-core-card h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-core-card p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.reg-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
}

.reg-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.reg-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  margin: 0 auto 1rem;
}

.reg-card h6 {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.reg-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.leader-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.leader-avatar {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  font-weight: 900;
  margin: 0 auto 1rem;
  font-family: var(--font-display);
}

.leader-card h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.leader-role {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.leader-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.objective-card {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 3rem;
  color: white;
}

.objective-card .section-label {
  color: var(--accent-light);
}

.objective-card .section-heading {
  color: white;
}

.bank-card {
  background: var(--card-bg);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  overflow: hidden;
}

.bank-header {
  background: var(--primary);
  color: white;
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.bank-details {
  padding: 1rem 1.5rem;
}

.bank-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.9rem;
}

.bank-row:last-child {
  border-bottom: none;
}

.bank-row span {
  color: var(--text-muted);
}

.bank-row strong {
  color: var(--text);
  font-family: monospace;
  font-size: 0.95rem;
}

/* ============================================================
   DONATE PAGE
   ============================================================ */
.donate-hero {
  position: relative;
  background: linear-gradient(135deg, #0d3d1f 0%, #1a5c2e 60%, #2d8048 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 3rem;
  overflow: hidden;
}

.donate-hero-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

.donate-info {
  position: relative;
  z-index: 2;
}

.donate-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin: 0.75rem 0 1rem;
}

.donate-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.8;
}

.d-impact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.d-impact-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(232, 137, 30, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.tax-note {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* DONATE FORM CARD */
.donate-form-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.donate-form-header {
  background: var(--primary);
  color: white;
  padding: 1.25rem 2rem;
  font-weight: 700;
  font-size: 1rem;
}

.donate-form-body {
  padding: 2rem;
}

.donate-input {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  padding: 10px 14px !important;
  font-size: 0.9rem !important;
  font-family: var(--font-body) !important;
  transition: all 0.2s !important;
  background: var(--bg) !important;
}

.donate-input:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(26, 92, 46, 0.1) !important;
  outline: none !important;
}

/* STEP INDICATOR */
.step-indicator {
  display: flex;
  align-items: center;
  gap: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step.active {
  color: var(--primary);
}

.step.completed {
  color: var(--accent);
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.3s;
}

.step.active .step-circle {
  background: var(--primary);
  color: white;
}

.step.completed .step-circle {
  background: var(--accent);
  color: white;
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin-bottom: 16px;
}

/* AMOUNT GRID */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.amount-btn {
  background: var(--bg-soft);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.amount-btn:hover,
.amount-btn.selected {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.selected-amount-display {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.selected-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.selected-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-light);
}

/* PAYMENT METHODS */
.pm-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 10px;
}

.pm-option:hover,
.pm-option.selected {
  border-color: var(--primary);
  background: rgba(26, 92, 46, 0.04);
}

.pm-radio {
  color: var(--text-muted);
  font-size: 1rem;
  flex-shrink: 0;
}

.pm-option.selected .pm-radio {
  color: var(--primary);
}

.pm-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.pm-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}

.pm-info small {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.payment-fields {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* FORM STEP */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.form-step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 1.25rem;
}

/* SUMMARY */
.summary-box {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.875rem;
  border-bottom: 1px dashed var(--border);
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row span {
  color: var(--text-muted);
}

.summary-row strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

/* SUCCESS */
.success-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto;
  animation: successPop 0.5s ease;
}

@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  70% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-ref {
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item h6 {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  font-size: 0.85rem;
}

.contact-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.contact-item a {
  color: var(--primary);
  text-decoration: none;
}

.contact-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.social-link {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.section-map {
  height: 280px;
  background: var(--bg-soft);
}

.map-placeholder {
  height: 100%;
  background: linear-gradient(135deg, #e8f4ec, #f3f0ea);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.map-content {
  text-align: center;
  color: var(--text);
}

.map-content p {
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
}

.privacy-intro {
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.privacy-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.privacy-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.privacy-section h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.privacy-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 900;
  opacity: 0.6;
}

.privacy-section p,
.privacy-section li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.privacy-section ul {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.privacy-section li {
  margin-bottom: 0.3rem;
}

.privacy-section a {
  color: var(--primary);
}

.contact-block {
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.contact-block a {
  color: var(--primary);
}

/* ============================================================
   PROJECT PAGE
   ============================================================ */
.overview-stat {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: all 0.3s;
}

.overview-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.ov-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ov-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.infra-table-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.infra-table-card table {
  margin: 0;
}

.infra-table-card thead th {
  background: var(--bg-soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  padding: 10px 12px;
}

.infra-table-card tbody tr:hover {
  background: rgba(26, 92, 46, 0.03);
}

.infra-table-card tbody td {
  font-size: 0.875rem;
  color: var(--text);
  padding: 10px 12px;
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   AOS-LIKE ANIMATIONS (CSS only)
   ============================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* Delays */
[data-aos-delay="100"] {
  transition-delay: 0.1s;
}

[data-aos-delay="200"] {
  transition-delay: 0.2s;
}

[data-aos-delay="300"] {
  transition-delay: 0.3s;
}

/* ============================================================
   PARTICLES
   ============================================================ */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(232, 137, 30, 0.4);
  animation: particleFloat linear infinite;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .timeline::before {
    display: none;
  }

  .timeline-item,
  .timeline-item.right {
    flex-direction: column;
    padding: 0;
    position: relative;
    padding-left: 60px;
  }

  .timeline-icon {
    left: 0;
    transform: none;
    position: absolute;
    top: 0;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-divider {
    display: none;
  }

  .taxbenefit-card {
    padding: 1.5rem;
  }

  .donate-form-body {
    padding: 1.25rem;
  }

  .infra-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mission-modules {
    grid-template-columns: repeat(2, 1fr);
  }

  .privacy-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .infra-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* Donate page */
/* ── Donate page specific styles ── */
.donate-page-wrap {
  background: var(--bg);
  padding-top: 90px;
  min-height: 100vh;
}

.donate-two-col {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

/* ── Left content pane ── */
.donate-left h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.donate-left p {
  font-size: 0.93rem;
  color: #3d3d3d;
  line-height: 1.85;
  margin-bottom: 16px;
}

/* ── Donation form card ── */
.don-card {
  background: #fff;
  border: 1.5px solid #d4d4d4;
  border-radius: 4px;
  padding: 28px 24px 24px;
  position: sticky;
  top: 100px;
}

.don-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 4px;
}

.don-card-sub {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #555;
  margin-bottom: 16px;
}

/* ── Amount presets ── */
.amount-presets {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.amt-radio-label {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s;
}

.amt-radio-label input[type="radio"] {
  accent-color: var(--primary);
  width: 14px;
  height: 14px;
}

.amt-radio-label:hover {
  background: rgba(26, 92, 46, 0.06);
}

.amt-radio-label.selected {
  color: var(--primary);
}

/* ── Impact note ── */
.don-impact-note {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #444;
  margin-bottom: 14px;
  padding: 8px 12px;
  background: #f6f6f6;
  border-radius: 4px;
}

/* ── Form fields ── */
.don-field {
  width: 100%;
  font-family: var(--font-body);
  color: var(--text);
  background: #f9f9f9;
  outline: none;
  margin-bottom: 10px;

  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  padding: 10px 14px !important;
  font-size: 0.9rem !important;
  font-family: var(--font-body) !important;
  transition: all 0.2s !important;
  background: var(--bg) !important;
}

.don-field:focus {
  border-color: var(--primary);
  background: #fff;
}

.don-field::placeholder {
  color: #aaa;
}

.don-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

select.don-field {
  cursor: pointer;
}

textarea.don-field {
  border-radius: 16px;
  resize: none;
}

/* ── Tax note ── */
.don-tax-note {
  font-size: 0.72rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 10px;
  margin-top: 2px;
}

.don-tax-note strong {
  color: var(--text);
}

/* ── Consent ── */
.don-consent {
  font-size: 0.72rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 14px;
}

.don-consent a {
  color: var(--primary);
}

/* ── Submit button ── */
.don-submit {
  width: 100%;
  background: #6ab04c;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
}

.don-submit:hover:not(:disabled) {
  background: #59a03d;
  transform: translateY(-1px);
}

.don-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ── Razorpay badge ── */
.rzp-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.72rem;
  color: #888;
}

.rzp-badge i {
  color: var(--primary);
}

/* ── Alert ── */
.don-alert {
  border-radius: 8px;
  font-size: 0.83rem;
  padding: 10px 14px;
  margin-bottom: 12px;
  display: none;
}

/* ── Success overlay ── */
.don-success {
  display: none;
  text-align: center;
  padding: 20px 0 8px;
}

.don-success .suc-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  margin: 0 auto 16px;
  animation: popIn 0.5s ease;
}

@keyframes popIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  70% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.don-success h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.don-success p {
  font-size: 0.88rem;
  color: #555;
  margin-bottom: 4px;
}

.suc-ref {
  background: #f4f4f4;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: #444;
  margin-top: 12px;
}

.suc-ref span {
  font-family: monospace;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .donate-two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .don-card {
    position: static;
  }
}

@media (max-width: 576px) {
  .don-field-row {
    grid-template-columns: 1fr;
  }

  .amount-presets {
    gap: 6px;
  }

  .donate-two-col {
    padding: 24px 16px 48px;
  }
}