/* ============================================
   NIRA Foundation - Main Stylesheet (White + Blue Theme)
   ============================================ */

:root {
  --bg: #ffffff;
  --bg-2: #f8fafc;
  --bg-3: #f1f5f9;
  --fg: #0f172a;
  --fg-muted: #475569;
  --accent: #185FA5;
  --accent-2: #1d6fbe;
  --accent-3: #0C447C;
  --amber: #d97706;
  --red: #dc2626;
  --green: #059669;
  --card: rgba(255, 255, 255, 0.95);
  --border: rgba(24, 95, 165, 0.15);
  --border-hover: rgba(24, 95, 165, 0.35);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 40px rgba(24, 95, 165, 0.12);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
  font-weight: 700;
  color: var(--fg);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p { color: var(--fg-muted); margin-bottom: 1rem; }
a { color: var(--accent); text-decoration: none; }

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92) !important;  /* !important যোগ করুন */
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
  box-shadow: 0 1px 12px rgba(24, 95, 165, 0.08);
}

/* scroll করলে যে class যোগ হয় সেটাও override করুন */
.nav-bar.scrolled,
.nav-bar.sticky,
.nav-bar.dark,
.nav-bar.fixed {
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 2px 20px rgba(24, 95, 165, 0.12) !important;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--fg);
}

.logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #185FA5, #0C447C);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: white;
  flex-shrink: 0;
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(24, 95, 165, 0.35); }
  50% { box-shadow: 0 0 0 8px rgba(24, 95, 165, 0); }
}

.brand-text { display: flex; flex-direction: column; }
.brand-text strong { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; line-height: 1.2; color: var(--fg); }
.brand-text small { color: var(--fg-muted); font-size: 0.7rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  color: var(--fg-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--fg); background: rgba(24, 95, 165, 0.07); }
.nav-link.active { color: var(--accent-2); }

.btn-donate {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #185FA5, #0C447C);
  color: white !important;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: 10px;
  transition: all var(--transition);
  margin-left: 0.5rem;
}
.btn-donate:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(24, 95, 165, 0.3); }

.icon-sm { width: 16px; height: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.25rem;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.98);
}
.mobile-nav a {
  color: var(--fg-muted);
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(24, 95, 165, 0.06);
  display: block;
}
.mobile-nav a:hover { color: var(--accent-2); }
.btn-donate-mobile {
  background: linear-gradient(135deg, #185FA5, #0C447C);
  color: white !important;
  text-align: center;
  padding: 0.875rem !important;
  border-radius: 12px;
  margin-top: 0.5rem;
  font-weight: 600;
  border-bottom: none !important;
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav.open { display: flex; }
}

/* ---- Cards ---- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(24, 95, 165, 0.05);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(24, 95, 165, 0.3), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.card:hover::before { opacity: 1; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, #185FA5, #0C447C);
  color: white;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(24, 95, 165, 0.3);
  color: white;
}
.btn-secondary {
  background: transparent;
  color: var(--accent-2);
  border: 2px solid var(--accent);
}
.btn-secondary:hover {
  background: rgba(24, 95, 165, 0.08);
  border-color: var(--accent-2);
}
.btn-danger { background: #dc2626; color: white; }
.btn-success { background: #059669; color: white; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; border-radius: 8px; }
.btn-full { width: 100%; justify-content: center; }

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-tag {
  display: inline-block;
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; }
.section-title span {
  background: linear-gradient(135deg, #185FA5, #378ADD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Icon Box ---- */
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(24, 95, 165, 0.1), rgba(24, 95, 165, 0.05));
  border: 1px solid rgba(24, 95, 165, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
  flex-shrink: 0;
}
.icon-box svg { width: 26px; height: 26px; color: var(--accent); }
.card:hover .icon-box {
  background: linear-gradient(135deg, rgba(24, 95, 165, 0.18), rgba(24, 95, 165, 0.1));
  border-color: rgba(24, 95, 165, 0.35);
}

/* ---- Forms ---- */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.875rem 1rem;
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(24, 95, 165, 0.12);
  background: #ffffff;
}
.form-control::placeholder { color: #94a3b8; }
select.form-control option { background: #f8fafc; color: var(--fg); }
textarea.form-control { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-hint { font-size: 0.8rem; color: var(--fg-muted); margin-top: 0.25rem; }
.form-error { font-size: 0.8rem; color: var(--red); margin-top: 0.25rem; }

/* ---- Alert / Flash Messages ---- */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.alert-success { background: rgba(5, 150, 105, 0.08); border: 1px solid rgba(5, 150, 105, 0.25); color: #065f46; }
.alert-error { background: rgba(220, 38, 38, 0.08); border: 1px solid rgba(220, 38, 38, 0.25); color: #991b1b; }
.alert-info { background: rgba(24, 95, 165, 0.08); border: 1px solid rgba(24, 95, 165, 0.2); color: var(--accent-3); }
.alert-warning { background: rgba(217, 119, 6, 0.08); border: 1px solid rgba(217, 119, 6, 0.25); color: #92400e; }

/* ---- Badge ---- */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-cyan { background: rgba(24, 95, 165, 0.1); color: var(--accent-3); border: 1px solid rgba(24, 95, 165, 0.2); }
.badge-amber { background: rgba(217, 119, 6, 0.1); color: #92400e; }
.badge-green { background: rgba(5, 150, 105, 0.1); color: #065f46; }
.badge-red { background: rgba(220, 38, 38, 0.1); color: #991b1b; }
.badge-gray { background: rgba(71, 85, 105, 0.1); color: var(--fg-muted); }

/* ---- Page Hero ---- */
.page-hero {
  padding: 9rem 0 4rem;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(24, 95, 165, 0.08), transparent),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  text-align: center;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ---- Stats ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 700px) { .stats-grid { grid-template-columns: 1fr 1fr; } }

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(24, 95, 165, 0.05);
}
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #185FA5, #378ADD, #0C447C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { color: var(--fg-muted); font-size: 0.9rem; }

/* ---- Blog Cards ---- */
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(24, 95, 165, 0.05);
}
.blog-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
}
.blog-card-body { padding: 1.5rem; }
.blog-card-cat {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.blog-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.blog-card-title:hover { color: var(--accent-2); }
.blog-card-excerpt { color: var(--fg-muted); font-size: 0.875rem; margin-bottom: 1rem; }
.blog-card-meta { display: flex; align-items: center; gap: 1rem; font-size: 0.8rem; color: var(--fg-muted); }

/* ---- Page Content ---- */
.page-content { padding-top: 80px; }

/* ---- Hero (home) ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(24, 95, 165, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(24, 95, 165, 0.05), transparent 50%),
    linear-gradient(180deg, #ffffff, #f8fafc);
  overflow: hidden;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(24, 95, 165, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 95, 165, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  position: absolute;
  inset: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.2;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #185FA5, transparent);
  top: -150px; right: -150px;
  animation: floatOrb 18s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #378ADD, transparent);
  bottom: 0; left: -150px;
  animation: floatOrb 22s ease-in-out infinite reverse;
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(40px, -40px); }
  66% { transform: translate(-30px, 30px); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(24, 95, 165, 0.08);
  border: 1px solid rgba(24, 95, 165, 0.18);
  color: var(--accent-2);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 1.25rem;
  line-height: 1.1;
  color: var(--fg);
}
.hero-title .highlight {
  background: linear-gradient(135deg, #185FA5, #378ADD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc { font-size: 1.15rem; max-width: 540px; margin-bottom: 2rem; color: var(--fg-muted); }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}
.hero-card-float {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  width: 220px;
  animation: cardFloat 5s ease-in-out infinite;
  box-shadow: 0 4px 16px rgba(24, 95, 165, 0.08);
}
.hero-card-float:nth-child(2) { animation-delay: -2s; }
.hero-card-float:nth-child(3) { animation-delay: -4s; }
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(24, 95, 165, 0.12), rgba(24, 95, 165, 0.04));
  border: 1px solid rgba(24, 95, 165, 0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-card-icon svg { width: 20px; height: 20px; color: var(--accent); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

/* ---- What We Do ---- */
.focus-card .card-icon-area {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* ---- Donate ---- */
.donate-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.donate-amount-btn {
  background: #f8fafc;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 0.875rem;
  text-align: center;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  transition: all var(--transition);
}
.donate-amount-btn:hover, .donate-amount-btn.selected {
  border-color: var(--accent);
  background: rgba(24, 95, 165, 0.07);
  color: var(--accent-2);
}
.donate-amount-btn span { display: block; font-size: 0.7rem; color: var(--fg-muted); font-weight: 400; font-family: 'Plus Jakarta Sans', sans-serif; }

.payment-method-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.pm-tab {
  flex: 1;
  min-width: 80px;
  padding: 0.75rem;
  background: #f8fafc;
  border: 2px solid var(--border);
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg-muted);
}
.pm-tab:hover, .pm-tab.active {
  border-color: var(--accent);
  color: var(--accent-2);
  background: rgba(24, 95, 165, 0.06);
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--fg-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: rgba(0, 0, 0, 0.2); }

/* ---- Pagination ---- */
.pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 3rem;
}
.page-link {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 0.875rem;
  transition: all var(--transition);
}
.page-link:hover, .page-link.active {
  background: rgba(24, 95, 165, 0.1);
  border-color: var(--accent);
  color: var(--accent-2);
}

/* ---- Post Content ---- */
.post-content {
  color: var(--fg-muted);
  line-height: 1.85;
}
.post-content h2, .post-content h3 {
  color: var(--fg);
  margin: 2rem 0 1rem;
}
.post-content p { margin-bottom: 1.25rem; }
.post-content ul, .post-content ol {
  margin: 1rem 0 1.25rem 1.5rem;
  color: var(--fg-muted);
}
.post-content li { margin-bottom: 0.5rem; }
.post-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.5rem;
  background: rgba(24, 95, 165, 0.04);
  border-radius: 0 12px 12px 0;
  margin: 1.5rem 0;
  color: var(--fg);
  font-style: italic;
}
.post-content img { width: 100%; border-radius: var(--radius); margin: 1rem 0; }

/* ---- Table ---- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.data-table th {
  background: rgba(24, 95, 165, 0.06);
  color: var(--accent-3);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid rgba(24, 95, 165, 0.06);
  color: var(--fg-muted);
}
.data-table tr:hover td { background: rgba(24, 95, 165, 0.03); }
.data-table tr:last-child td { border-bottom: none; }

/* ---- Footer ---- */
.site-footer {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--fg);
}
.footer-brand p { font-size: 0.875rem; max-width: 380px; margin-bottom: 1rem; }
.trust-badge {
  background: rgba(24, 95, 165, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  display: inline-block;
  margin-bottom: 1.25rem;
}
.trust-badge small { display: block; font-size: 0.7rem; color: var(--fg-muted); }
.trust-badge strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; color: var(--fg); }

.social-links { display: flex; gap: 0.5rem; }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(24, 95, 165, 0.05);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-muted);
  transition: all var(--transition);
}
.social-links a svg { width: 18px; height: 18px; }
.social-links a:hover { color: var(--accent-2); border-color: var(--border-hover); background: rgba(24, 95, 165, 0.08); }

.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  color: var(--fg);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.625rem; }
.footer-col ul li a { color: var(--fg-muted); font-size: 0.875rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent-2); }

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--fg-muted);
  font-size: 0.875rem;
  margin-bottom: 0.75rem !important;
}
.contact-list svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.btn-donate-footer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #185FA5, #0C447C);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: all var(--transition);
}
.btn-donate-footer:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(24, 95, 165, 0.28); color: white; }
.btn-donate-footer svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--fg-muted); }
.footer-legal a:hover { color: var(--accent-2); }

/* ---- Volunteer / Program cards ---- */
.volunteer-perks { display: flex; flex-direction: column; gap: 1rem; }
.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(24, 95, 165, 0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.25rem;
}
.perk-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(24, 95, 165, 0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.perk-icon svg { width: 20px; height: 20px; color: var(--accent); }
.perk-text strong { display: block; font-size: 0.9rem; color: var(--fg); margin-bottom: 0.1rem; }
.perk-text small { color: var(--fg-muted); font-size: 0.8rem; }

/* ---- Report Form ---- */
.report-urgency {
  background: rgba(220, 38, 38, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.18);
  border-radius: 14px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.emergency-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color var(--transition);
  color: var(--fg);
}
.emergency-contact:hover { border-color: var(--border-hover); color: var(--fg); }
.emergency-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(24, 95, 165, 0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.emergency-icon svg { width: 24px; height: 24px; color: var(--accent); }

/* ---- Checklist ---- */
.checklist { list-style: none; }
.checklist li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(24, 95, 165, 0.06);
  font-size: 0.9rem;
}
.checklist li:last-child { border-bottom: none; }
.check-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(24, 95, 165, 0.12);
  color: var(--accent-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.checklist strong { display: block; color: var(--fg); font-size: 0.875rem; }
.checklist small { color: var(--fg-muted); font-size: 0.8rem; }

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-accent { color: var(--accent-2); }
.text-muted { color: var(--fg-muted); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.1rem; }
.fw-bold { font-weight: 700; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.gap-1 { gap: 0.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.items-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }

/* ---- Gradient Divider ---- */
.gradient-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 4rem 0;
}

/* ---- Image placeholder ---- */
.img-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  font-size: 0.875rem;
  gap: 0.5rem;
}
.img-placeholder svg { width: 32px; height: 32px; opacity: 0.4; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: rgba(24, 95, 165, 0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(24, 95, 165, 0.45); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}