/* ============================================================
   PATRIOT'S PROMISE — Main Stylesheet
   Brand Colors: Navy #1C2255 | Gold #C39246 | Red #CC2029 | White
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --navy:        #1C2255;
  --navy-dark:   #0f1330;
  --navy-light:  #2a3278;
  --gold:        #C39246;
  --gold-dark:   #a07a35;
  --gold-light:  #d4ae6a;
  --red:         #CC2029;
  --red-dark:    #a81820;
  --white:       #ffffff;
  --off-white:   #f5f4f0;
  --light-gray:  #e8e6e0;
  --medium-gray: #888780;
  --text-dark:   #1a1a2e;
  --text-body:   #3a3a4a;

  --font-heading: 'Cinzel', 'Georgia', serif;
  --font-body:    'Open Sans', sans-serif;
  --font-display: 'Playfair Display', serif;

  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-full: 9999px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.10);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.15);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.22);
  --shadow-gold: 0 4px 20px rgba(195,146,70,0.35);

  --transition:  all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input, select, textarea {
  font-family: var(--font-body);
}

.desktop-only {
  display: block;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Sections ---- */
.section {
  padding: 90px 0;
  position: relative;
}

/* ---- Section Tags ---- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(195, 146, 70, 0.12);
  color: var(--gold-dark);
  border: 1px solid rgba(195, 146, 70, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.section-tag.light {
  background: rgba(255,255,255,0.12);
  color: var(--gold-light);
  border-color: rgba(255,255,255,0.25);
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

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

.section-desc {
  font-size: 1.05rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
}

.section-desc.light {
  color: rgba(255,255,255,0.75);
}

/* ---- Color Utilities ---- */
.gold-text { color: var(--gold); }
.red-text  { color: var(--red); }
.navy-text { color: var(--navy); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn-sm {
  padding: 9px 20px;
  font-size: 0.82rem;
}

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

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(195,146,70,0.45);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: linear-gradient(90deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 10px 50px 10px 20px;
  font-size: 0.85rem;
  position: relative;
  z-index: 1000;
}

.announcement-bar a {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: underline;
}

.close-bar {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
  line-height: 1;
  transition: var(--transition);
}

.close-bar:hover {
  color: var(--white);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: var(--transition-slow);
  background: transparent;
}

.site-header.has-bar {
  top: 40px;
}

.site-header.scrolled {
  background: rgba(15, 19, 48, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: 1440px;
  margin: 0 auto;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: var(--transition);
}

.logo-img:hover {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}

.nav-links li a {
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 4px;
  white-space: nowrap;
  transition: var(--transition);
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links li a:hover {
  color: var(--gold-light);
}

.nav-links li a:hover::after {
  transform: scaleX(1);
}

.nav-donate-btn {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 800 !important;
  box-shadow: var(--shadow-gold);
}

.nav-donate-btn:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px);
}

.nav-donate-btn::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 16, 40, 0.88) 0%,
    rgba(28, 34, 85, 0.75) 40%,
    rgba(12, 16, 40, 0.65) 100%
  );
}

/* Floating stars */
.hero-stars {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-stars span {
  position: absolute;
  color: rgba(255,255,255,0.08);
  font-size: clamp(40px, 8vw, 120px);
  animation: floatStar 12s infinite ease-in-out;
  user-select: none;
}

.hero-stars span:nth-child(1)  { top: 8%;  left: 3%;  animation-delay: 0s;    font-size: 80px; }
.hero-stars span:nth-child(2)  { top: 15%; left: 90%; animation-delay: 1.5s;  font-size: 60px; }
.hero-stars span:nth-child(3)  { top: 55%; left: 6%;  animation-delay: 3s;    font-size: 40px; }
.hero-stars span:nth-child(4)  { top: 70%; left: 85%; animation-delay: 4.5s;  font-size: 70px; }
.hero-stars span:nth-child(5)  { top: 30%; left: 50%; animation-delay: 6s;    font-size: 50px; }
.hero-stars span:nth-child(6)  { top: 85%; left: 20%; animation-delay: 2s;    font-size: 55px; }
.hero-stars span:nth-child(7)  { top: 10%; left: 40%; animation-delay: 7s;    font-size: 35px; }
.hero-stars span:nth-child(8)  { top: 60%; left: 70%; animation-delay: 0.5s;  font-size: 45px; }
.hero-stars span:nth-child(9)  { top: 40%; left: 15%; animation-delay: 5s;    font-size: 90px; }
.hero-stars span:nth-child(10) { top: 90%; left: 55%; animation-delay: 3.5s;  font-size: 65px; }

@keyframes floatStar {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.06; }
  50%       { transform: translateY(-20px) rotate(15deg); opacity: 0.12; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px 120px;
}

.hero-badge-img {
  width: 120px;
  height: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
  animation: pulseBadge 3s ease-in-out infinite;
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

.hero-title {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.title-line-top {
  display: block;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.title-line-gold {
  display: block;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  color: var(--gold);
  text-shadow: 0 2px 20px rgba(195,146,70,0.5);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: rgba(255,255,255,0.85);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px 32px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  max-width: 700px;
  margin: 0 auto;
}

.hero-stat {
  text-align: center;
  padding: 0 8px;
}

.hero-stat strong {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat span {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
}

.hero-stat p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

.stat-divider {
  color: rgba(255,255,255,0.2);
  font-size: 1.5rem;
  font-weight: 100;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-arrow {
  margin-top: 6px;
  animation: bounceArrow 2s infinite;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ============================================================
   PATRIOT STRIP
   ============================================================ */
.patriot-strip {
  display: flex;
  height: 6px;
}

.strip-red   { flex: 1; background: var(--red); }
.strip-white { flex: 1; background: var(--white); border-top: 1px solid rgba(0,0,0,0.08); border-bottom: 1px solid rgba(0,0,0,0.08); }
.strip-blue  { flex: 1; background: var(--navy); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image-block {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--gold);
  aspect-ratio: 4/3;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-img-main:hover .about-img {
  transform: scale(1.04);
}

.about-img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  display: flex;
  gap: 12px;
  flex-direction: column;
  align-items: flex-end;
}

.about-img-sm {
  width: 160px;
  height: 110px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-badge-stat {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  width: 160px;
}

.about-badge-stat strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-badge-stat span {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.1;
}

.about-badge-stat p {
  font-size: 0.72rem;
  opacity: 0.8;
  margin-top: 2px;
}

.about-content {
  padding-left: 12px;
}

.about-lead {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 16px;
}

.about-content p {
  color: var(--text-body);
  margin-bottom: 14px;
}

.about-values {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.value-item i {
  color: var(--gold);
  font-size: 0.95rem;
}

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

/* ============================================================
   MISSION SECTION
   ============================================================ */
.mission-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.mission-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.mission-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 16, 40, 0.92) 0%,
    rgba(28, 34, 85, 0.88) 100%
  );
}

.mission-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.mission-statement {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.8;
  padding: 0 20px;
}

.mission-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pillar {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}

.pillar:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--navy-dark);
}

.pillar h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.pillar p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

/* ============================================================
   PROGRAMS SECTION
   ============================================================ */
.programs-section {
  background: var(--off-white);
}

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

.program-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition-slow);
  position: relative;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.program-card-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

.program-card-img {
  height: 200px;
  overflow: hidden;
}

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

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

.program-card-body {
  padding: 28px 24px 24px;
}

.program-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.program-card-body p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 18px;
  line-height: 1.65;
}

.program-features {
  margin-bottom: 20px;
}

.program-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-body);
  padding: 4px 0;
}

.program-features li i {
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
  background: var(--white);
}

.how-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.how-step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(195, 146, 70, 0.1);
  line-height: 1;
  position: absolute;
  top: -20px;
  left: -10px;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.step-content {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px 24px 28px;
  text-align: center;
  border: 2px solid var(--light-gray);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.how-step:hover .step-content {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0 auto 18px;
  box-shadow: var(--shadow-sm);
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.65;
}

.how-connector {
  color: var(--gold);
  font-size: 1.4rem;
  opacity: 0.5;
  margin-top: -20px;
}

/* ============================================================
   IMPACT SECTION
   ============================================================ */
.impact-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.impact-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.impact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12, 16, 40, 0.93) 0%,
    rgba(28, 34, 85, 0.90) 100%
  );
}

.impact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.impact-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}

.impact-card:hover {
  background: rgba(195,146,70,0.15);
  border-color: var(--gold);
  transform: translateY(-6px);
}

.impact-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.impact-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

.impact-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ============================================================
   STORIES / TESTIMONIALS
   ============================================================ */
.stories-section {
  background: var(--off-white);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.testimonial-card {
  min-width: 100%;
  display: flex;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
}

.testimonial-img {
  flex-shrink: 0;
  width: 180px;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: var(--shadow-md);
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-body {
  flex: 1;
}

.stars-rating {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-body blockquote {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 24px;
  border-left: 4px solid var(--gold);
  padding-left: 20px;
}

.testimonial-body cite {
  display: flex;
  flex-direction: column;
  font-style: normal;
}

.testimonial-body cite strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-heading);
}

.testimonial-body cite span {
  font-size: 0.83rem;
  color: var(--medium-gray);
  margin-top: 2px;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--light-gray);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

/* ============================================================
   EVENTS SECTION
   ============================================================ */
.events-section {
  background: var(--white);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.event-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px;
  border: 2px solid var(--light-gray);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--navy);
  transition: var(--transition);
}

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

.event-card:hover::before {
  background: var(--gold);
  width: 6px;
}

.featured-event {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
}

.featured-event::before {
  background: var(--gold);
}

.featured-event:hover {
  border-color: var(--gold-light);
}

.featured-event h3,
.featured-event p,
.featured-event .event-meta span {
  color: rgba(255,255,255,0.9);
}

.featured-event .event-type {
  background: rgba(195,146,70,0.2);
  border-color: rgba(195,146,70,0.4);
  color: var(--gold-light);
}

.event-featured-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.event-date-badge {
  flex-shrink: 0;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  text-align: center;
  min-width: 58px;
  box-shadow: var(--shadow-sm);
}

.event-date-badge.gold {
  background: var(--gold);
  color: var(--navy-dark);
}

.event-month {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.event-day {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.event-content {
  flex: 1;
}

.event-type {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  background: rgba(195,146,70,0.1);
  border: 1px solid rgba(195,146,70,0.25);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.event-content h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.event-content p {
  font-size: 0.87rem;
  color: var(--text-body);
  margin-bottom: 12px;
  line-height: 1.6;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.event-meta span {
  font-size: 0.8rem;
  color: var(--medium-gray);
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-meta span i {
  color: var(--gold);
  font-size: 0.78rem;
}

/* ============================================================
   GET INVOLVED
   ============================================================ */
.involved-section {
  background: var(--off-white);
}

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

.involved-card {
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.involved-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}

.involved-card.volunteer {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}

.involved-card.donate {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  color: var(--white);
}

.involved-card.partner {
  background: linear-gradient(135deg, #7d6608 0%, var(--gold) 100%);
  color: var(--navy-dark);
}

.involved-card.spread {
  background: linear-gradient(135deg, #0d2137 0%, #1a4a6e 100%);
  color: var(--white);
}

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

.involved-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
}

.involved-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.involved-card p {
  font-size: 0.88rem;
  opacity: 0.88;
  line-height: 1.65;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.social-inline {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-inline a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-inline a:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: scale(1.1);
}

/* ============================================================
   DONATE SECTION
   ============================================================ */
.donate-section {
  background: var(--navy-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.donate-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(195,146,70,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(204,32,41,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.donate-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.donate-content .section-title {
  margin-bottom: 20px;
}

.donate-content p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.donation-impact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.donation-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  transition: var(--transition);
}

.donation-item:hover {
  background: rgba(195,146,70,0.12);
  border-color: rgba(195,146,70,0.3);
}

.donation-item strong {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  min-width: 64px;
  flex-shrink: 0;
}

.donation-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}

.donate-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}

.donate-form-box h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: 0.5px;
}

.donate-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.amount-btn {
  padding: 13px 8px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  font-family: var(--font-heading);
}

.amount-btn:hover,
.amount-btn.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy-dark);
}

.custom-amount-field {
  margin-bottom: 16px;
}

.custom-amount-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.custom-amount-field input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--navy);
  outline: none;
  transition: var(--transition);
}

.custom-amount-field input:focus {
  border-color: var(--gold);
}

.donate-frequency {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-body);
  cursor: pointer;
  font-weight: 600;
}

.radio-label input {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
}

.donate-secure {
  text-align: center;
  font-size: 0.78rem;
  color: var(--medium-gray);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.donate-secure i {
  color: var(--gold);
}

/* ============================================================
   PARTNERS SECTION
   ============================================================ */
.partners-section {
  background: var(--white);
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 32px;
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 24px 32px;
  min-width: 130px;
  transition: var(--transition);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.partner-logo i {
  font-size: 2rem;
  color: var(--gold);
}

.partner-logo:hover {
  border-color: var(--gold);
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: var(--navy);
}

.partner-cta {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-body);
}

.partner-cta a {
  color: var(--gold-dark);
  font-weight: 700;
}

.partner-cta a:hover {
  color: var(--navy);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: var(--off-white);
  padding: 72px 0;
}

.newsletter-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  border: 2px solid rgba(195,146,70,0.3);
  box-shadow: var(--shadow-lg);
}

.newsletter-icon {
  font-size: 3.5rem;
  color: var(--gold);
  flex-shrink: 0;
}

.newsletter-content {
  flex: 1;
  min-width: 220px;
}

.newsletter-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}

.newsletter-content p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
}

.newsletter-form {
  flex: 2;
  min-width: 300px;
}

.newsletter-inputs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-inputs input {
  flex: 1;
  min-width: 150px;
  padding: 13px 18px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-inputs input::placeholder {
  color: rgba(255,255,255,0.45);
}

.newsletter-inputs input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}

.newsletter-msg {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--gold-light);
  min-height: 20px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.contact-item p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
}

.contact-item a {
  color: var(--gold-dark);
  font-weight: 600;
}

.contact-item a:hover {
  color: var(--navy);
}

.contact-item small {
  font-size: 0.78rem;
  color: var(--medium-gray);
  display: block;
  margin-top: 2px;
}

.contact-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: var(--off-white);
  border: 2px solid var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  transform: scale(1.1);
}

.contact-form-box {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--light-gray);
}

.contact-form-box h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(195,146,70,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-msg {
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  min-height: 24px;
  text-align: center;
}

.form-msg.success { color: #1a7a38; }
.form-msg.error   { color: var(--red); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
}

.footer-top {
  padding: 72px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: scale(1.1);
}

.footer-nav h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

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

.footer-nav ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-nav ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}

.footer-contact p i {
  color: var(--gold);
  margin-top: 2px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.footer-contact p a {
  color: rgba(255,255,255,0.72);
}

.footer-contact p a:hover {
  color: var(--gold-light);
}

.footer-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-bottom {
  padding: 28px 0;
}

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

.footer-bottom-inner p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom-inner a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

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

.footer-tax {
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.35) !important;
}

.footer-crisis {
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.6) !important;
  background: rgba(204,32,41,0.15);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  display: inline-block;
  border: 1px solid rgba(204,32,41,0.2);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-gold);
  z-index: 998;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--navy);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ============================================================
   DONATION MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 460px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: modalIn 0.35s ease;
}

@keyframes modalIn {
  from { transform: scale(0.85) translateY(24px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--medium-gray);
  transition: var(--transition);
  cursor: pointer;
  background: none;
  border: none;
}

.modal-close:hover {
  color: var(--red);
}

.modal-icon {
  font-size: 3rem;
  color: var(--red);
  margin-bottom: 16px;
  animation: heartPulse 1.5s infinite ease-in-out;
}

@keyframes heartPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.12); }
}

.modal-box h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.modal-box p {
  font-size: 0.92rem;
  color: var(--text-body);
  margin-bottom: 10px;
  line-height: 1.65;
}

.modal-stars {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 4px;
  margin: 16px 0;
}

.modal-quote {
  font-style: italic;
  color: var(--medium-gray) !important;
  font-size: 0.9rem !important;
  margin-bottom: 24px !important;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links li a {
    font-size: 0.76rem;
    padding: 6px 8px;
  }

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

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

  .about-grid {
    gap: 48px;
  }

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

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

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

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

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  html { font-size: 15px; }

  .section { padding: 60px 0; }

  .announcement-bar {
    font-size: 0.75rem;
    padding: 8px 40px 8px 12px;
  }

  /* Nav mobile */
  .nav-toggle {
    display: flex;
  }

  .navbar {
    padding: 12px 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 24px 40px;
    gap: 4px;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -8px 0 32px rgba(0,0,0,0.4);
    z-index: 1050;
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    padding: 12px 16px;
    font-size: 0.92rem;
    border-radius: var(--radius-sm);
    width: 100%;
  }

  .nav-links li a:hover {
    background: rgba(255,255,255,0.07);
  }

  .nav-links li a::after {
    display: none;
  }

  .nav-donate-btn {
    margin-top: 8px;
  }

  /* Hamburger animation */
  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Hero */
  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .stat-divider {
    display: none;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-stat {
    flex: 1;
    min-width: 80px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-img-accent {
    bottom: -20px;
    right: -12px;
  }

  /* Mission pillars */
  .mission-pillars {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

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

  /* How it works */
  .how-steps {
    flex-direction: column;
    align-items: center;
  }

  .how-connector {
    transform: rotate(90deg);
    margin: -8px 0;
  }

  .how-step {
    max-width: 100%;
    width: 100%;
  }

  /* Impact */
  .impact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Testimonials */
  .testimonial-card {
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
  }

  .testimonial-img {
    width: 100px;
    height: 120px;
  }

  /* Events */
  .events-grid {
    grid-template-columns: 1fr;
  }

  /* Involved */
  .involved-cards {
    grid-template-columns: 1fr 1fr;
  }

  /* Donate */
  .donate-form-box {
    padding: 32px 24px;
  }

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

  /* Partners */
  .partner-logo {
    min-width: 100px;
    padding: 16px 20px;
  }

  /* Newsletter */
  .newsletter-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
    gap: 24px;
  }

  .newsletter-inputs {
    flex-direction: column;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-top {
    padding: 48px 0 32px;
  }

  /* Back to top */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }

  .desktop-only {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .involved-cards {
    grid-template-columns: 1fr;
  }

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

  .mission-pillars {
    grid-template-columns: 1fr;
  }

  .footer-cta {
    flex-direction: column;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================================
   ACTIVE NAV LINK
   ============================================================ */
.nav-links li a.active {
  color: var(--gold-light) !important;
}

.nav-links li a.active::after {
  transform: scaleX(1);
}

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1040;
  backdrop-filter: blur(2px);
}

.nav-overlay.active {
  display: block;
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
