@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ─── VARIABLES ─── */
:root {
  --blue: #00aff3;
  --blue-dark: #007db5;
  --blue-pale: #e6f7ff;
  --navy: #0a1628;
  --white: #ffffff;
  --gray: #f4f6f8;
  --text: #0d1f3c;
  --muted: #6b7a8d;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius: 20px;
  --radius-sm: 10px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 48px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,175,243,0.1);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,175,243,0.08);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  letter-spacing: -0.5px;
}
.nav-logo svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.nav-logo span em {
  color: var(--blue);
  font-style: normal;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: var(--blue-pale);
}
.nav-links a.cta-link {
  background: var(--blue);
  color: white;
  font-weight: 700;
}
.nav-links a.cta-link:hover {
  background: var(--blue-dark);
  color: white;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── PAGE WRAPPER ─── */
.page-wrap {
  padding-top: 85px;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: calc(100vh - 85px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px;
  overflow: hidden;
}
.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 240px);
  color: rgba(0,175,243,0.05);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 4px;
  line-height: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-pale);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 130px);
  line-height: 0.92;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 32px;
}
.hero-title em {
  font-style: normal;
  color: var(--blue);
  -webkit-text-stroke: 0px;
}
.hero-title .outline {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 2px var(--text);
}
.hero-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.3px;
  border: none;
}
.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 8px 30px rgba(0,175,243,0.3);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,175,243,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(13,31,60,0.15);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.btn-white {
  background: white;
  color: var(--text);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.btn svg { width: 18px; height: 18px; }

/* ─── FLOATING CARDS (hero) ─── */
.hero-visual {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 480px;
}
.float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.6s ease;
}
.float-card:hover { transform: scale(1.02) rotate(0deg) !important; }
.float-card-1 {
  width: 260px;
  height: 300px;
  top: 0; right: 0;
  transform: rotate(3deg);
  background: var(--blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  color: white;
}
.float-card-1 .big-num {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: white;
}
.float-card-1 .label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.8;
  text-align: center;
  margin-top: 8px;
}
.float-card-2 {
  width: 200px;
  bottom: 40px; left: 0;
  padding: 24px;
  transform: rotate(-4deg);
  background: var(--navy);
  color: white;
}
.float-card-2 .tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.float-card-2 .title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: white;
}
.float-card-2 .meta {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 4px;
}
.float-card-3 {
  width: 180px;
  top: 180px; left: 20px;
  padding: 20px;
  transform: rotate(-2deg);
}
.float-card-3 .avatar-row {
  display: flex;
  margin-bottom: 12px;
}
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
}
.avatar:first-child { margin-left: 0; }
.float-card-3 .stat-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}
.float-card-3 .stat-val { font-size: 36px !important;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text);
  line-height: 1;
}

/* ─── SECTIONS ─── */
section {
  padding: 100px 48px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 80px);
  line-height: 0.95;
  color: var(--text);
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.section-title em {
  font-style: normal;
  color: var(--blue);
}
.section-subtitle {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ─── ABOUT STRIP ─── */
.about-strip {
  background: var(--gray);
  border-radius: 32px;
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-strip .quote-mark {
  font-family: var(--font-display);
  font-size: 100px;
  color: var(--blue);
  line-height: 0.6;
  margin-bottom: 24px;
  opacity: 0.4;
}
.about-strip .quote-text {
  font-size: 20px;
  line-height: 1.65;
  color: var(--text);
  font-weight: 500;
}
.about-strip .quote-text strong {
  color: var(--blue);
}
.about-strip .author {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 15px; color: var(--text); }
.author-title { font-size: 13px; color: var(--muted); margin-top: 2px; }

.stats-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-box {
  background: white;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform var(--transition);
}
.stat-box:hover { transform: translateY(-4px); }
.stat-box .num {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box .desc {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}

/* ─── BENEFITS GRID ─── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.benefit-card {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.benefit-card:hover {
  border-color: var(--blue);
  background: white;
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,175,243,0.12);
}
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.benefit-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.benefit-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── VOLUNTEER HUB ─── */
.hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.hub-card {
  border-radius: 28px;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.hub-card:hover { transform: scale(1.02); }
.hub-card-virtual {
  background: var(--navy);
  color: white;
}
.hub-card-inperson {
  background: var(--blue);
  color: white;
}
.hub-card-bg-text {
  position: absolute;
  bottom: -20px; right: -10px;
  font-family: var(--font-display);
  font-size: 130px;
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  color: white;
}
.hub-card-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 16px;
}
.hub-card-title {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.hub-card-desc {
  font-size: 15px;
  opacity: 0.7;
  line-height: 1.6;
  max-width: 280px;
}
.hub-card-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  transition: all 0.3s;
  align-self: flex-start;
}
.hub-card:hover .hub-card-arrow {
  background: rgba(255,255,255,0.3);
  transform: translate(4px, -4px);
}
.hub-card-arrow svg {
  width: 20px;
  height: 20px;
  color: white;
  stroke: white;
}

/* ─── OPPORTUNITY CARDS ─── */
.opp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.opp-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.opp-card:hover {
  box-shadow: 0 20px 50px rgba(0,175,243,0.15);
  border-color: var(--blue);
  transform: translateY(-6px);
}
.opp-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.opp-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.opp-card-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.opp-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 12px;
}
.opp-card-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}
.opp-card-meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}
.opp-card-meta-row svg {
  width: 14px;
  height: 14px;
  color: var(--blue);
  flex-shrink: 0;
}
.opp-empty {
  text-align: center;
  padding: 80px 40px;
  color: var(--muted);
  grid-column: 1/-1;
}
.opp-empty .big-icon { font-size: 56px; margin-bottom: 16px; }
.opp-empty h3 { font-size: 22px; color: var(--text); margin-bottom: 8px; }
.opp-empty p { font-size: 15px; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  position: relative;
  padding: 80px 48px 60px;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: var(--white);
}
.page-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 180px);
  color: rgba(0,175,243,0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  display: flex;
  align-items: center;
  padding-left: 40px;
  line-height: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--blue); font-weight: 600; }
.breadcrumb span { opacity: 0.4; }

/* ─── FORM PAGE ─── */
.form-section {
  max-width: 800px;
  margin: 0 auto;
}
.form-intro {
  background: var(--blue-pale);
  border-left: 4px solid var(--blue);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 40px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}
.google-form-embed {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  border: 1.5px solid rgba(0,0,0,0.06);
}
.google-form-embed iframe {
  width: 100%;
  height: 700px;
  border: none;
  display: block;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--navy);
  border-radius: 32px;
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}
.cta-banner::before {
  content: 'SERVE';
  position: absolute;
  font-family: var(--font-display);
  font-size: 200px;
  opacity: 0.04;
  color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  color: white;
  line-height: 0.95;
  margin-bottom: 20px;
}
.cta-banner h2 em { font-style: normal; color: var(--blue); }
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 440px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
footer {
  margin-top: 0;
  padding: 60px 48px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
}
.footer-logo em { color: var(--blue); font-style: normal; }
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--blue); }
.footer-copy {
  font-size: 13px;
  color: var(--muted);
}
.footer-copy a { color: var(--blue); font-weight: 600; }

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav { padding: 10px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 85px; left: 0; right: 0;
    background: white;
    padding: 20px 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    z-index: 999;
  }
  section { padding: 70px 24px; }
  .hero { padding: 40px 24px; min-height: auto; padding-top: 60px; }
  .hero-visual { display: none; }
  .about-strip { grid-template-columns: 1fr; gap: 40px; padding: 48px 32px; }
  .hub-grid { grid-template-columns: 1fr; }
  .hub-card { min-height: 280px; padding: 40px 32px; }
  .page-hero { padding: 60px 24px 40px; }
  .cta-banner { padding: 56px 32px; }
  footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 52px; }
  .section-title { font-size: 36px; }
  .opp-grid { grid-template-columns: 1fr; }
  .stats-col { grid-template-columns: 1fr 1fr; }
}
