/* =====================================================
   SEWA BHARTI — PREMIUM DESIGN SYSTEM
   ===================================================== */

/* ===========================
   1. DESIGN TOKENS
   =========================== */
:root {
  --navy: #003366;
  --navy-deep: #001e40;
  --navy-light: #0a4a8a;
  --navy-pale: #e8eef6;
  --saffron: #FF9933;
  --saffron-dark: #e8872a;
  --saffron-light: #ffb366;
  --saffron-pale: #fff4e6;

  --bg: #f8f9fc;
  --bg-white: #ffffff;
  --bg-alt: #f1f3f8;
  --bg-dark: #0f1923;
  --bg-dark-card: #182536;

  --text: #1a1c1f;
  --text-secondary: #4a5060;
  --text-muted: #7a8194;
  --text-inverse: #f1f0f5;

  --border: #e2e6ee;
  --border-light: #eef0f5;

  --font-display: 'Hanken Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1200px;
  --gutter: 24px;
  --section-py: 100px;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 4px 24px rgba(255, 153, 51, 0.3);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===========================
   2. RESET & BASE
   =========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input {
  font-family: inherit;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.material-symbols-outlined[data-weight="fill"] {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ===========================
   3. LAYOUT
   =========================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

.section {
  padding: var(--section-py) 0;
}

.section-white {
  background: var(--bg-white);
}

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

.section-dark {
  background: var(--bg-dark);
  color: var(--text-inverse);
}

.section-cta {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: var(--text-inverse);
}

/* ===========================
   4. KEYFRAMES
   =========================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {

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

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

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.25);
  }

  50% {
    box-shadow: 0 4px 30px rgba(255, 153, 51, 0.5);
  }
}

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

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

@keyframes scrollBounce {

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

  50% {
    transform: translateY(8px);
    opacity: 0.5;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes barFill {
  from {
    width: 0;
  }

  to {
    width: var(--fill);
  }
}

@keyframes particleDrift {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }

  10% {
    opacity: 0.5;
  }

  90% {
    opacity: 0.5;
  }

  100% {
    transform: translate(var(--dx), var(--dy));
    opacity: 0;
  }
}

/* ===========================
   5. SCROLL REVEAL (PURE CSS)
   =========================== */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

@supports (animation-timeline: view()) {
  .reveal {
    animation: fadeUp 0.8s var(--ease) both;
    animation-timeline: view();
    animation-range: entry 5% cover 25%;
  }
}

.reveal-stagger>.reveal:nth-child(1) {
  animation-delay: 0s;
}

.reveal-stagger>.reveal:nth-child(2) {
  animation-delay: 0.1s;
}

.reveal-stagger>.reveal:nth-child(3) {
  animation-delay: 0.2s;
}

.reveal-stagger>.reveal:nth-child(4) {
  animation-delay: 0.3s;
}

/* ===========================
   6. SHARED COMPONENTS
   =========================== */

/* Section Header */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-dark .section-header h2 {
  color: #fff;
}

.section-header p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.65);
}

/* Section Tag */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--saffron);
  margin-bottom: 16px;
}

.section-tag-light {
  color: var(--saffron-light);
}

.tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--saffron);
}

.tag-dot-light {
  background: var(--saffron-light);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s var(--ease);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 153, 51, 0.45);
}

.btn-primary .material-symbols-outlined {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-primary:hover .material-symbols-outlined {
  transform: translateX(3px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
  transition: all 0.3s var(--ease);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Form Inputs */
.input-group {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 15px;
  display: flex;
  align-items: center;
}

.input-icon .material-symbols-outlined {
  font-size: 18px;
}

.form-input {
  width: 100%;
  padding: 13px 14px 13px 42px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  font-size: 15px;
  background: var(--bg);
  outline: none;
  transition: all 0.25s ease;
}

.form-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.08);
  background: #fff;
}

/* ===========================
   7. TOP BAR
   =========================== */
.top-bar {
  background: var(--navy-deep);
  color: var(--text-inverse);
  font-size: 13px;
  padding: 0 var(--gutter);
  height: 40px;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  z-index: 101;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-container {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-right {
  display: flex;
  gap: 16px;
  align-items: center;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.top-bar-item a {
  transition: color 0.2s ease;
}

.top-bar-item a:hover {
  color: var(--saffron-light);
}

.top-bar-item .material-symbols-outlined {
  font-size: 16px;
  color: var(--saffron);
}

.top-bar-social {
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.top-bar-social:hover {
  color: var(--saffron);
  transform: translateY(-1px);
}

.top-bar-social .material-symbols-outlined,
.top-bar-social i {
  font-size: 15px;
}

/* ===========================
   8. NAVBAR
   =========================== */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 12px var(--gutter);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.35s var(--ease);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand img {
  height: 38px;
}

.nav-brand-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
}

.nav-toggle {
  display: none;
}

.nav-links {
  display: flex;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--saffron);
  background: var(--saffron-pale);
}

.nav-link.active {
  color: var(--saffron);
  background: var(--saffron-pale);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 3px;
  border-radius: var(--radius-full);
  background: var(--saffron);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-donate-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s var(--ease);
  animation: pulse 3s ease-in-out infinite;
}

.btn-donate-nav .material-symbols-outlined {
  font-size: 16px;
}

.btn-donate-nav:hover {
  transform: translateY(-2px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===========================
   8. HERO
   =========================== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.2s ease-in-out, transform 6s ease-out;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.08);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(0, 20, 50, 0.88) 0%, rgba(0, 51, 102, 0.65) 50%, rgba(0, 51, 102, 0.45) 100%);
}

.hero-slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active,
.hero-dot:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  width: 32px;
  border-radius: 999px;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 153, 51, 0.35);
  animation: particleDrift var(--dur, 10s) linear infinite;
  animation-delay: var(--del, 0s);
}

.hero-particle:nth-child(1) {
  left: 10%;
  top: 20%;
  width: 6px;
  height: 6px;
  --dx: 40px;
  --dy: -80px;
  --dur: 8s;
  --del: 0s;
}

.hero-particle:nth-child(2) {
  left: 25%;
  top: 70%;
  width: 4px;
  height: 4px;
  --dx: -60px;
  --dy: -100px;
  --dur: 12s;
  --del: 1s;
}

.hero-particle:nth-child(3) {
  left: 45%;
  top: 30%;
  width: 8px;
  height: 8px;
  --dx: 80px;
  --dy: -60px;
  --dur: 9s;
  --del: 0.5s;
}

.hero-particle:nth-child(4) {
  left: 60%;
  top: 80%;
  width: 5px;
  height: 5px;
  --dx: -30px;
  --dy: -90px;
  --dur: 11s;
  --del: 2s;
}

.hero-particle:nth-child(5) {
  left: 75%;
  top: 15%;
  width: 7px;
  height: 7px;
  --dx: 50px;
  --dy: 70px;
  --dur: 14s;
  --del: 1.5s;
}

.hero-particle:nth-child(6) {
  left: 88%;
  top: 60%;
  width: 4px;
  height: 4px;
  --dx: -70px;
  --dy: -50px;
  --dur: 10s;
  --del: 0.2s;
}

.hero-particle:nth-child(7) {
  left: 15%;
  top: 85%;
  width: 5px;
  height: 5px;
  --dx: 60px;
  --dy: -70px;
  --dur: 13s;
  --del: 2.5s;
}

.hero-particle:nth-child(8) {
  left: 35%;
  top: 10%;
  width: 7px;
  height: 7px;
  --dx: -40px;
  --dy: 80px;
  --dur: 7s;
  --del: 3s;
}

.hero-particle:nth-child(9) {
  left: 52%;
  top: 65%;
  width: 6px;
  height: 6px;
  --dx: 30px;
  --dy: -110px;
  --dur: 15s;
  --del: 0.8s;
}

.hero-particle:nth-child(10) {
  left: 70%;
  top: 40%;
  width: 4px;
  height: 4px;
  --dx: -50px;
  --dy: -60px;
  --dur: 9s;
  --del: 1.2s;
}

.hero-particle:nth-child(11) {
  left: 82%;
  top: 90%;
  width: 8px;
  height: 8px;
  --dx: 40px;
  --dy: -80px;
  --dur: 11s;
  --del: 2.2s;
}

.hero-particle:nth-child(12) {
  left: 95%;
  top: 25%;
  width: 5px;
  height: 5px;
  --dx: -30px;
  --dy: 70px;
  --dur: 10s;
  --del: 1.7s;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 60px var(--gutter);
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 153, 51, 0.12);
  border: 1px solid rgba(255, 153, 51, 0.25);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.hero-badge .material-symbols-outlined {
  font-size: 16px;
  color: var(--saffron);
}

.hero-badge span:last-child {
  font-size: 12px;
  font-weight: 700;
  color: var(--saffron-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light), #ffd699);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text>p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: var(--radius-xl);
  animation: float 6s ease-in-out infinite;
  min-width: 340px;
}

.hero-stat {
  padding: 22px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  transition: background 0.3s ease;
}

.hero-stat:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 55%;
  border-radius: var(--radius-full);
  background: linear-gradient(180deg, var(--saffron), var(--saffron-light));
}

.hero-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator .material-symbols-outlined {
  font-size: 28px;
}

/* ===========================
   9. MARQUEE
   =========================== */
.marquee-bar {
  background: var(--navy);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.marquee-item .material-symbols-outlined {
  font-size: 18px;
  color: var(--saffron);
}

.marquee-divider {
  color: var(--saffron);
  font-size: 10px;
}

/* ===========================
   10. SPLIT LAYOUT (About)
   =========================== */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-text h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.split-text .lead {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.split-text p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--navy-pale);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.25s ease;
}

.feature-pill:hover {
  background: var(--saffron-pale);
  color: var(--saffron-dark);
}

.feature-pill .material-symbols-outlined {
  font-size: 18px;
}

.split-media {
  position: relative;
}

.media-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.media-frame:hover img {
  transform: scale(1.03);
}

.media-float-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 12px 18px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.media-float-badge .material-symbols-outlined {
  font-size: 28px;
  color: var(--saffron);
}

.media-float-badge strong {
  font-size: 16px;
  color: var(--navy);
  display: block;
  line-height: 1.2;
}

.media-float-badge small {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===========================
   11. IMPACT SECTION
   =========================== */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.impact-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.impact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 153, 51, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.impact-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 153, 51, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-icon .material-symbols-outlined {
  font-size: 26px;
  color: var(--saffron);
}

.impact-number {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.impact-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}

.impact-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.impact-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--saffron), var(--saffron-light));
  border-radius: var(--radius-full);
  width: var(--fill, 80%);
  transition: width 1.5s var(--ease);
}

@supports (animation-timeline: view()) {
  .impact-bar-fill {
    animation: barFill 1s var(--ease) both;
    animation-timeline: view();
    animation-range: entry 10% cover 30%;
  }
}

/* ===========================
   12. PROGRAMS
   =========================== */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.program-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
  border-color: transparent;
}

.program-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.program-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.program-card:hover .program-card-image img {
  transform: scale(1.06);
}

.program-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 30, 64, 0.6) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.program-card:hover .program-card-overlay {
  opacity: 1;
}

.program-card-overlay .material-symbols-outlined {
  width: 36px;
  height: 36px;
  background: var(--saffron);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.program-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.program-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--navy-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -40px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
  border: 3px solid #fff;
  transition: all 0.3s ease;
}

.program-card:hover .program-card-icon {
  background: var(--saffron);
}

.program-card-icon .material-symbols-outlined {
  font-size: 22px;
  color: var(--navy);
  transition: color 0.3s ease;
}

.program-card:hover .program-card-icon .material-symbols-outlined {
  color: #fff;
}

.program-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.program-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
  flex: 1;
}

.program-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.program-card-tags span {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--bg-alt);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}


/* ===========================
   13. NOTICES & RESOURCES
   =========================== */
.notices-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
  margin-top: 32px;
}

.notices-subheading {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid var(--navy-pale);
  padding-bottom: 12px;
}

.notices-subheading-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.notices-subheading-wrap .notices-subheading {
  margin-bottom: 0;
}

.carousel-nav-btns {
  display: flex;
  gap: 8px;
}

.carousel-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--bg-white);
  border: 1px solid var(--border);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s var(--ease);
}

.carousel-nav-btn:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Continuous Upward Scrolling Tickers for Announcements & Links */
.notices-ticker-container,
.links-ticker-container {
  height: 460px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-lg);
  padding: 4px;
}

.notices-ticker-container::before,
.notices-ticker-container::after,
.links-ticker-container::before,
.links-ticker-container::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 32px;
  z-index: 5;
  pointer-events: none;
}

.notices-ticker-container::before,
.links-ticker-container::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg-alt) 0%, transparent 100%);
}

.notices-ticker-container::after,
.links-ticker-container::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg-alt) 0%, transparent 100%);
}

.notices-ticker-track,
.links-ticker-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: scrollUpwardContinuous 18s linear infinite;
  will-change: transform;
}

.links-ticker-track {
  animation-duration: 22s;
}

.notices-ticker-container:hover .notices-ticker-track,
.links-ticker-container:hover .links-ticker-track {
  animation-play-state: paused;
}

@keyframes scrollUpwardContinuous {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(calc(-50% - 8px));
  }
}

/* Notices List & Cards */
.notices-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.notice-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.notice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--navy);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.notice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.notice-card:hover::before {
  opacity: 1;
}

.notice-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.notice-date {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.notice-badge {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: var(--navy-pale);
  color: var(--navy-light);
  letter-spacing: 0.05em;
}

.notice-badge.badge-new {
  background: #e6f7ed;
  color: #166534;
}

.notice-badge.badge-important {
  background: #ffebe6;
  color: #c53030;
}

.notice-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--navy-deep);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.notice-card:hover h4 {
  color: var(--navy-light);
}

.notice-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.notice-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--saffron-dark);
  transition: gap 0.3s var(--ease), color 0.3s ease;
}

.notice-action .material-symbols-outlined {
  font-size: 16px;
  transition: transform 0.3s var(--ease);
}

.notice-card:hover .notice-action {
  color: var(--saffron);
}

.notice-card:hover .notice-action .material-symbols-outlined {
  transform: translateX(4px);
}

/* Resources Column & Items */
.resources-group {
  margin-bottom: 32px;
}

.resources-group h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.resources-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resource-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.resource-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy-pale);
}

.resource-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: #fff0eb;
  color: #e55c3c;
  flex-shrink: 0;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.resource-icon.icon-portal {
  background: #e8eef6;
  color: var(--navy-light);
}

.resource-item:hover .resource-icon {
  background: var(--saffron-pale);
  color: var(--saffron-dark);
}

.resource-item:hover .resource-icon.icon-portal {
  background: var(--navy-pale);
  color: var(--navy);
}

.resource-info {
  flex-grow: 1;
  min-width: 0;
}

.resource-title {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.3;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.resource-desc {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.resource-action-icon {
  font-size: 20px;
  color: var(--text-muted);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
  flex-shrink: 0;
}

.resource-item:hover .resource-action-icon {
  color: var(--navy);
  transform: scale(1.1);
}

/* ===========================
   14. GALLERY (2x2 GRID)
   =========================== */
.gallery-simple-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.gallery-simple-card {
  position: relative;
  height: 290px;
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-simple-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-simple-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-simple-card:hover img {
  transform: scale(1.05);
}

/* ===========================
   15. OUR FACES & PRESS
   =========================== */
.faces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.face-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl, 16px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  cursor: pointer;
}

.face-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 153, 51, 0.4);
}

.face-card-media {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #0b1727;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.face-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s var(--ease);
}

.face-card:hover .face-card-media img {
  transform: scale(1.03);
}

.face-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 30, 64, 0.85) 0%, rgba(0, 30, 64, 0.25) 100%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.face-card:hover .face-card-overlay {
  opacity: 1;
}

.face-zoom-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.face-card:hover .face-zoom-btn {
  transform: scale(1.04);
  background: #ffffff;
}

.face-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--saffron);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.face-badge.badge-leadership {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.face-badge.badge-press {
  background: #d9381e;
}

.face-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.face-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--saffron-dark);
  margin-bottom: 10px;
}

.face-card-meta .material-symbols-outlined {
  font-size: 18px;
}

.face-card-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.35;
  margin-bottom: 10px;
}

.face-card-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.face-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease, gap 0.2s ease;
  align-self: flex-start;
}

.face-card:hover .face-action-btn {
  color: var(--saffron-dark);
  gap: 12px;
}

/* Lightbox Modal */
.faces-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.faces-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 28, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox-container {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 1050px;
  max-height: 92vh;
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.95);
  transition: transform 0.3s var(--ease);
}

.faces-lightbox.active .lightbox-container {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
  background: var(--saffron);
  color: #ffffff;
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-nav:hover {
  background: var(--saffron);
  color: #ffffff;
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 92vh;
}

.lightbox-image-wrapper {
  flex: 1;
  overflow: auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080d14;
}

.lightbox-image-wrapper img {
  max-width: 100%;
  max-height: 68vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
  padding: 20px 32px;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.lightbox-info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.lightbox-info-header h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.lightbox-counter {
  font-size: 13px;
  font-weight: 700;
  color: var(--saffron);
  background: rgba(255, 153, 51, 0.15);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 153, 51, 0.3);
}

.lightbox-info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

/* ===========================
   16. TESTIMONIALS
   =========================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s var(--ease);
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-card-featured {
  background: var(--navy);
  border-color: transparent;
  color: #fff;
}

.testimonial-card-featured:hover {
  box-shadow: 0 12px 40px rgba(0, 51, 102, 0.3);
}

.testimonial-quote {
  margin-bottom: 16px;
}

.testimonial-quote .material-symbols-outlined {
  font-size: 32px;
  color: var(--saffron);
  opacity: 0.6;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.testimonial-card-featured p {
  color: rgba(255, 255, 255, 0.85);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.testimonial-card-featured .testimonial-author {
  border-color: rgba(255, 255, 255, 0.1);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-pale);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.testimonial-card-featured .testimonial-avatar {
  background: rgba(255, 255, 255, 0.1);
  color: var(--saffron);
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: var(--text);
}

.testimonial-card-featured .testimonial-author strong {
  color: #fff;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}

.testimonial-card-featured .testimonial-author span {
  color: rgba(255, 255, 255, 0.5);
}

/* ===========================
   15. VOLUNTEER CTA
   =========================== */
.cta-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  margin-bottom: 24px;
  max-width: 480px;
}

.cta-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.cta-feature .material-symbols-outlined {
  font-size: 20px;
  color: var(--saffron);
}

.cta-stat-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.cta-stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(6px);
}

.cta-stat-card .material-symbols-outlined {
  font-size: 28px;
  color: var(--saffron);
}

.cta-stat-card strong {
  font-family: var(--font-display);
  font-size: 24px;
  color: #fff;
}

.cta-stat-card span:last-child {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

/* ===========================
   16. DONATION
   =========================== */
.donate-section-wrapper {
  max-width: 1050px;
  margin: 0 auto;
}

.donate-header {
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
}

.donate-header h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.donate-header p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.donate-cards-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: stretch;
}

.bank-details,
.qr-donation-card {
  background: var(--bg-alt);
  border-radius: var(--radius-xl, 16px);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bank-details:hover,
.qr-donation-card:hover {
  box-shadow: var(--shadow-lg);
}

.bank-details-header,
.qr-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.bank-details-header .material-symbols-outlined,
.qr-card-header .material-symbols-outlined {
  color: var(--navy);
  font-size: 24px;
}

.bank-details-header h4,
.qr-card-header h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-light);
}

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

.bank-row > span {
  font-size: 14px;
  color: var(--text-muted);
}

.bank-row strong {
  font-size: 14px;
  color: var(--text);
}

.bank-row code {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text);
  background: none;
}

.bank-copy-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-copy {
  padding: 4px 6px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  background: var(--bg-white);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-copy:hover {
  color: var(--navy);
  border-color: var(--navy-pale);
  background: var(--navy-pale);
}

.bank-tax-note {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--saffron-dark);
  font-weight: 600;
}

.bank-tax-note .material-symbols-outlined {
  font-size: 18px;
  color: var(--saffron);
}

/* QR Donation Card */
.qr-code-wrapper {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 18px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

.qr-image {
  max-width: 210px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: transform 0.4s var(--ease);
}

.qr-code-wrapper:hover .qr-image {
  transform: scale(1.04);
}

.qr-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 47, 0.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.qr-hover-overlay .material-symbols-outlined {
  font-size: 32px;
  color: var(--saffron);
}

.qr-code-wrapper:hover .qr-hover-overlay {
  opacity: 1;
}

.qr-card-footer {
  margin-top: 16px;
  text-align: center;
}

.qr-instruction {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.upi-apps-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.upi-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.upi-badge .material-symbols-outlined {
  font-size: 16px;
  color: var(--saffron);
}

.bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

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

.bank-row>span {
  font-size: 14px;
  color: var(--text-muted);
}

.bank-row strong {
  font-size: 14px;
  color: var(--text);
}

.bank-row code {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text);
  background: none;
}

.bank-copy-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-copy {
  padding: 4px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.btn-copy:hover {
  color: var(--saffron);
  background: var(--saffron-pale);
}

.btn-copy .material-symbols-outlined {
  font-size: 16px;
}

.donate-form-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

.donate-form-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
}

.donate-form-sub {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}

.donate-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.amount-presets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 4px;
}

.btn-amount {
  padding: 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.2s ease;
}

.btn-amount:hover {
  border-color: var(--saffron);
  background: var(--saffron-pale);
}

.btn-amount.selected {
  border-color: var(--saffron);
  background: var(--saffron-pale);
  color: var(--saffron-dark);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(255, 153, 51, 0.15);
}

.donate-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.donate-secure .material-symbols-outlined {
  font-size: 15px;
  color: var(--navy);
}

/* ===========================
   17. NEWSLETTER
   =========================== */
.newsletter-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  background: var(--bg-white);
  padding: 48px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.newsletter-text h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.newsletter-text p {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 380px;
}

.newsletter-form {
  flex-shrink: 0;
}

.newsletter-input-wrap {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

.newsletter-input-wrap .form-input {
  padding-left: 16px;
  min-width: 280px;
}

.newsletter-form small {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===========================
   18. FOOTER
   =========================== */
.footer {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: 72px 0 32px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--saffron), var(--navy));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 40px;
}

.footer-logo span {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #fff;
  transform: translateY(-2px);
}

.social-link .material-symbols-outlined,
.social-link i {
  font-size: 16px;
}

.footer-column h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease;
}

.footer-column a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact .material-symbols-outlined {
  font-size: 18px;
  color: var(--saffron);
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ===========================
   VISITOR COUNTER PLACEHOLDER SPACE
   =========================== */
.visitor-counter-wrapper {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.visitor-counter-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.visitor-counter-space {
  min-height: 48px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px dashed rgba(255, 153, 51, 0.35);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}


/* ===========================
   19. TOAST
   =========================== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--navy);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-xl);
  z-index: 200;
  opacity: 0;
  transition: all 0.35s var(--ease);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ===========================
   20. RESPONSIVE
   =========================== */
@media (max-width: 1023px) {
  :root {
    --section-py: 72px;
  }

  .hero-stats-panel {
    display: none;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 48px var(--gutter);
  }

  .hero-text {
    align-items: center;
  }

  .hero-text>p {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 44px;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .notices-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-content {
    text-align: center;
  }

  .cta-content p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-features {
    justify-content: center;
  }

  .donate-cards-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-layout {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-text p {
    max-width: 100%;
  }

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

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

@media (max-width: 767px) {
  :root {
    --section-py: 56px;
    --gutter: 16px;
  }

  .top-bar {
    height: 36px;
    font-size: 12px;
  }

  .top-bar-left .top-bar-item:first-child {
    display: none;
  }

  .navbar {
    top: 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    border-bottom-left-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
  }

  .nav-toggle:checked~.nav-links {
    display: flex;
  }

  .nav-toggle:checked~.nav-right .nav-hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle:checked~.nav-right .nav-hamburger span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked~.nav-right .nav-hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-hamburger {
    display: flex;
  }

  .hero {
    min-height: 480px;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .hero-badge span:last-child {
    font-size: 11px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .split-text h2 {
    font-size: 30px;
  }

  .cta-content h2 {
    font-size: 30px;
  }

  .donate-info h2 {
    font-size: 28px;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .impact-card {
    padding: 20px 16px;
  }

  .impact-number {
    font-size: 32px;
  }

  .cta-features {
    grid-template-columns: 1fr;
  }

  .newsletter-layout {
    padding: 32px 24px;
  }

  .newsletter-input-wrap {
    flex-direction: column;
  }

  .newsletter-input-wrap .form-input {
    min-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .faces-grid {
    grid-template-columns: 1fr;
  }

  .gallery-simple-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lightbox-container {
    width: 95%;
    max-height: 95vh;
  }

  .lightbox-nav {
    width: 38px;
    height: 38px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-info {
    padding: 16px 20px;
  }

  .lightbox-info-header h3 {
    font-size: 16px;
  }
}