@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --primary: #c41e3a;
  --primary-dark: #8b0000;
  --primary-light: #e74c3c;
  --accent: #f39c12;
  --dark: #1a1a1a;
  --dark-bg: #0f0f0f;
  --light: #f8f9fa;
  --text: #2c3e50;
  --text-light: #7f8c8d;
  --border: #ecf0f1;
  --shadow: 0 10px 30px rgba(0,0,0,0.1);
  --shadow-sm: 0 4px 15px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef5 100%);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(20,20,30,0.95) 0%, rgba(30,20,40,0.95) 100%);
  backdrop-filter: blur(10px);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.site-header:hover {
  box-shadow: 0 12px 40px rgba(196,30,58,0.2);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b6b 0%, #c41e3a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

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

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6b6b, #c41e3a);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.give-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(196,30,58,0.3);
}

.give-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196,30,58,0.4);
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slideshow {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-slideshow .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideshow 20s infinite;
}

.hero-slideshow .slide:nth-child(1) {
  background-image: url("../assets/images/v1.png");
  animation-delay: 0s;
}

.hero-slideshow .slide:nth-child(2) {
  background-image: url("../assets/images/v2.png");
  animation-delay: 5s;
}

.hero-slideshow .slide:nth-child(3) {
  background-image: url("../assets/images/v3.png");
  animation-delay: 10s;
}

.hero-slideshow .slide:nth-child(4) {
  background-image: url("../assets/images/v4.png");
  animation-delay: 15s;
}

.hero-slideshow .slide:nth-child(5) {
  background-image: url("../assets/images/v5.png");
  animation-delay: 0s;
}

@keyframes slideshow {
  0% { opacity: 0; transform: scale(1); }
  5% { opacity: 1; transform: scale(1); }
  25% { opacity: 1; transform: scale(1.08); }
  30% { opacity: 0; transform: scale(1.08); }
  100% { opacity: 0; transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,20,30,0.3) 0%, rgba(20,20,30,0.3) 100%);
  backdrop-filter: blur(0px);
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
  z-index: 2;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 24px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.hero-content p {
  max-width: 700px;
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.8;
  opacity: 0.95;
}

.scripture {
  margin-top: 20px;
  font-size: 1rem;
  opacity: 0.85;
  font-style: italic;
  color: #ffd700;
}

/* SECTIONS */
.section {
  padding: 120px 4%;
  text-align: center;
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 1;
}

.section h2 {
  font-size: 3rem;
  margin-bottom: 40px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text);
  position: relative;
  display: inline-block;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.section-text {
  max-width: 700px;
  margin: 20px auto;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* VIDEO */
.video-wrapper {
  max-width: 900px;
  margin: 50px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.video-wrapper:hover {
  box-shadow: 0 30px 60px rgba(196,30,58,0.2);
  transform: translateY(-4px);
}

.video-wrapper iframe {
  width: 100%;
  height: 500px;
  border: none;
}

/* ORIGIN */
.origin {
  background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
  position: relative;
  overflow: hidden;
}

.origin::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,30,58,0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.origin-content {
  max-width: 800px;
  margin: auto;
  text-align: left;
  position: relative;
  z-index: 1;
}

.origin-content h2 {
  margin-bottom: 30px;
}

.origin-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.9;
  animation: slideInLeft 0.6s ease-out;
}

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

/* WHY */
.why {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

.pillars {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.pillar {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  padding: 40px 30px;
  border-radius: 16px;
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.pillar:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.pillar h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
}

.pillar p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
}

/* TEAM */
.team {
  background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
}

.team-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 50px;
  flex-wrap: wrap;
}

.team-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  padding: 30px;
  width: 260px;
  text-align: center;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-12px);
}

.avatar {
  height: 140px;
  width: 140px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  transition: all 0.3s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 3px solid rgba(255,255,255,0.6);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.team-card:hover .avatar {
  transform: scale(1.1) rotate(5deg);
}

.team-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}

.team-card span {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  display: block;
  margin-top: 8px;
}

/* FOOTER */
.footer {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0a1f 100%);
  color: #e0e0e0;
  padding: 70px 3% 30px;
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
}

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

.footer-brand .footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
}

.footer-tagline {
  margin: 10px 0;
  color: #d7d7d7;
  line-height: 1.6;
}

.footer .quote {
  font-style: italic;
  color: #f0f0f0;
  line-height: 1.7;
  margin-top: 12px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 1.05rem;
}

.footer a {
  color: #cfcfcf;
  text-decoration: none;
  display: inline-block;
  padding: 6px 0;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.footer-links-col,
.footer-contact,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact p {
  margin: 0;
  color: #d7d7d7;
  line-height: 1.6;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #bdbdbd;
  font-size: 0.95rem;
}

.footer-bottom .footer-links-inline {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer .socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

@media (min-width: 900px) {
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 6% 26px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* CONTACT BUBBLE */
.contact-bubble {
  position: fixed;
  bottom: 64px;
  right: 30px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 16px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(196,30,58,0.4);
  border: 2px solid transparent;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(196,30,58,0.4);
  }
  50% {
    box-shadow: 0 12px 35px rgba(196,30,58,0.6);
  }
}

.contact-bubble:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 40px rgba(196,30,58,0.5);
}

/* ================= CONTACT POPUP ================= */

.contact-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(4px);
}

.contact-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  animation: fadeIn 0.3s ease;
}

.contact-box {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  width: 90%;
  max-width: 480px;
  padding: 40px;
  border-radius: 20px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.contact-modal.active .contact-box {
  transform: translateY(0);
}

.close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-light);
  transition: all 0.3s ease;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.contact-box h3 {
  margin-bottom: 8px;
  font-size: 1.8rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text);
}

.contact-subtext {
  font-size: 0.95rem;
  margin-bottom: 30px;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-box form input,
.contact-box form select,
.contact-box form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 16px;
  border-radius: 10px;
  border: 2px solid var(--border);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  background: #fff;
  color: var(--text);
}

.contact-box form input:focus,
.contact-box form select:focus,
.contact-box form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196,30,58,0.1);
}

.contact-box form textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(196,30,58,0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196,30,58,0.4);
}

.submit-btn:active {
  transform: translateY(0);
}
/* ================= TIMELINE ================= */

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

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.timeline-step:nth-child(1) { animation-delay: 0.1s; }
.timeline-step:nth-child(2) { animation-delay: 0.2s; }
.timeline-step:nth-child(3) { animation-delay: 0.3s; }

.step-number {
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(196,30,58,0.3);
  transition: all 0.3s ease;
}

.timeline-step:hover .step-number {
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(196,30,58,0.4);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .site-header {
    padding: 12px 20px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .nav {
    gap: 16px;
    font-size: 12px;
  }

  .hero {
    margin-top: 60px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section {
    padding: 80px 4%;
  }

  .section h2 {
    font-size: 2rem;
  }

  .pillar, .team-card {
    min-width: 100%;
    max-width: 100%;
  }

  .pillars {
    gap: 20px;
  }

  .team-grid {
    gap: 20px;
  }

  .footer {
    padding: 50px 4%;
    gap: 40px;
  }

  .footer-col {
    min-width: 100%;
    text-align: center;
  }

  .contact-box {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .section h2 {
    font-size: 1.5rem;
  }

  .nav {
    gap: 12px;
  }

  .give-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .contact-bubble {
    padding: 12px 18px;
    font-size: 12px;
  }
}
/* ================= GIVE PAGE STYLES ================= */

/* Section shells for the give page */
.giving-info,
.stewardship-section,
.building-section {
  background: linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
  border: 1px solid rgba(236,240,241,0.7);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.giving-info::before,
.stewardship-section::before,
.building-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(196,30,58,0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.giving-info > *,
.stewardship-section > *,
.building-section > * {
  position: relative;
  z-index: 1;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 50px auto;
  max-width: 1200px;
  position: relative;
}

.info-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-align: center;
  border-top: 4px solid var(--primary);
  border: 1px solid rgba(236,240,241,0.8);
}

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

.info-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.info-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

.info-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Inviting Content */
.inviting-content {
  max-width: 800px;
  margin: 0 auto;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(196,30,58,0.08) 0%, rgba(243,156,18,0.08) 100%);
  border-left: 5px solid var(--primary);
  padding: 30px;
  margin: 40px 0;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.8;
}

/* Usage Breakdown */
.usage-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px auto;
  max-width: 1200px;
}

.usage-item {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.usage-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

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

.usage-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.usage-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

.usage-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Stewardship Grid */
.stewardship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin: 50px auto;
  max-width: 1200px;
}

.stewardship-card {
  background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

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

.stewardship-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

.stewardship-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Building Content & CTA */
.building-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-box {
  background: linear-gradient(135deg, rgba(196,30,58,0.05) 0%, rgba(243,156,18,0.05) 100%);
  border: 2px solid var(--border);
  padding: 50px 40px;
  border-radius: 16px;
  margin-top: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.cta-box:hover {
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(196,30,58,0.15);
}

.cta-box h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
}

.cta-box p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.8;
}

.cta-button {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 16px 40px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(196,30,58,0.3);
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(196,30,58,0.4);
}

.cta-button:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .info-cards,
  .usage-breakdown,
  .stewardship-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-box {
    padding: 35px 25px;
  }

  .cta-box h3 {
    font-size: 1.4rem;
  }

  .highlight-box {
    padding: 20px;
    font-size: 1rem;
  }
}

/* ================= CURRENT SNAPSHOT ================= */

.reach-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin: 50px auto;
  max-width: 1200px;
  padding: 0;
}

.reach-list li {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  padding: 28px 24px;
  border-radius: 16px;
  border-left: 5px solid var(--primary);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.reach-list li::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(196,30,58,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.reach-list li:hover {
  border-left-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.reach-list strong {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  display: block;
  margin-bottom: 8px;
}

.reach-list li p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Page Hero Styling */
.page-hero {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0a2e 100%);
  color: #fff;
  padding: 120px 5% !important;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(196,30,58,0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.page-hero h1 {
  font-size: 3.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero .section-text {
  max-width: 700px;
  margin: 20px auto;
  font-size: 1.2rem;
  color: #d0d0d0;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .reach-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .page-hero .section-text {
    font-size: 1rem;
  }
}