/* === Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2d3436;
  line-height: 1.7;
  background: #fff;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* === Navbar === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26,39,68,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 12px rgba(0,0,0,0.15);
  transition: box-shadow 0.3s;
}
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.1rem; color: #fff; }
.nav-logo img { border-radius: 8px; background: #1a2744; height: 40px; width: auto; max-width: 160px; object-fit: contain; }
.nav-menu { display: flex; gap: 28px; }
.nav-link { font-size: 0.92rem; font-weight: 500; color: rgba(255,255,255,0.85); transition: color 0.2s; }
.nav-link:hover { color: #c8922a; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: #fff; border-radius: 2px; transition: 0.3s; }

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a2744 0%, #2c3e6b 40%, #1a2744 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,146,42,0.15) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 120px 0 80px; }
.hero-motto { font-size: 1.2rem; color: #c8922a; margin-bottom: 16px; font-weight: 500; letter-spacing: 2px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.25; margin-bottom: 20px; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.85); max-width: 750px; margin: 0 auto 16px; line-height: 1.8; }
.hero-sub-2 { margin-bottom: 16px; }
.hero-tagline { font-size: 1.15rem; color: #c8922a; font-weight: 600; font-style: italic; margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === Buttons === */
.btn {
  display: inline-block; padding: 14px 32px; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.25s; border: 2px solid transparent;
}
.btn-primary { background: #c8922a; color: #fff; border-color: #c8922a; }
.btn-primary:hover { background: #b07e22; border-color: #b07e22; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: #c8922a; color: #c8922a; }
.btn-sm { padding: 10px 24px; font-size: 0.88rem; }

/* === Section === */
.section { padding: 90px 0; }
.section:nth-child(even) { background: #f8f9fa; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2rem; font-weight: 700; color: #1a2744; }
.section-line { width: 60px; height: 3px; background: #c8922a; margin: 14px auto 0; border-radius: 2px; }
.section-subtitle { margin-top: 16px; font-size: 1.05rem; color: #4a5568; max-width: 600px; margin-left: auto; margin-right: auto; }

/* === Pillars / Core Pillars === */
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.pillar-card {
  background: #fff; border-radius: 14px; padding: 36px 24px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: transform 0.25s, box-shadow 0.25s;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.pillar-icon { font-size: 2.8rem; margin-bottom: 16px; }
.pillar-card h3 { font-size: 1.15rem; color: #1a2744; margin-bottom: 10px; }
.pillar-card p { font-size: 0.93rem; color: #636e72; }

/* === About / Story === */
.story-block { max-width: 800px; margin: 0 auto 50px; }
.story-block h3 { font-size: 1.4rem; color: #1a2744; margin-bottom: 16px; }
.story-block p { font-size: 1.05rem; color: #4a5568; margin-bottom: 14px; line-height: 1.8; }

.vision-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.vm-card {
  background: #fff; border-radius: 14px; padding: 36px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05); border-top: 3px solid #c8922a;
}
.vm-card h3 { font-size: 1.2rem; color: #1a2744; margin-bottom: 12px; }
.vm-card p { font-size: 1rem; color: #4a5568; line-height: 1.8; }

/* === Programs === */
.programs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.program-card {
  background: #fff; border-radius: 14px; padding: 32px; border-left: 4px solid #c8922a;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05); transition: transform 0.25s;
}
.program-card:hover { transform: translateY(-4px); }
.program-icon { font-size: 2rem; margin-bottom: 12px; }
.program-card h3 { font-size: 1.1rem; color: #1a2744; margin-bottom: 8px; }
.program-card p { font-size: 0.93rem; color: #636e72; margin-bottom: 8px; }
.program-card ul { list-style: none; padding: 0; margin: 0 0 12px; }
.program-card ul li { font-size: 0.93rem; color: #4a5568; padding: 4px 0 4px 20px; position: relative; }
.program-card ul li::before { content: '✓'; position: absolute; left: 0; color: #c8922a; font-weight: 700; }

/* === Impact / Counters === */
section.section.impact { background: linear-gradient(135deg, #1a2744, #2c3e6b); color: #fff; }
section.section.impact .section-header h2 { color: #fff; }
section.section.impact .section-line { background: #c8922a; }
.counters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.counter-card { padding: 20px; }
.counter-number { font-size: 3rem; font-weight: 800; color: #c8922a; }
.counter-suffix { font-size: 2rem; font-weight: 700; color: #c8922a; }
.counter-card p { margin-top: 8px; font-size: 0.95rem; color: rgba(255,255,255,0.8); }

/* === Testimonials / Impact Stories === */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.testimonial-card {
  background: #fff; border-radius: 14px; padding: 36px; position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05); border-top: 3px solid #c8922a;
}
.quote-icon { font-size: 4rem; color: #c8922a; opacity: 0.3; line-height: 1; position: absolute; top: 12px; left: 24px; font-family: Georgia, serif; }
.testimonial-card blockquote { padding-top: 24px; }
.testimonial-card blockquote p { font-size: 1.05rem; color: #4a5568; font-style: italic; line-height: 1.8; }
.testimonial-author { margin-top: 16px; font-size: 0.95rem; color: #1a2744; font-style: normal; }
.stories-closing { text-align: center; margin-top: 36px; font-size: 1.1rem; color: #4a5568; font-style: italic; }

/* === Get Involved === */
.involve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.involve-card {
  background: #fff; border-radius: 14px; padding: 32px 24px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: transform 0.25s;
}
.involve-card:hover { transform: translateY(-4px); }
.involve-icon { font-size: 2.5rem; margin-bottom: 16px; }
.involve-card h3 { font-size: 1.1rem; color: #1a2744; margin-bottom: 10px; }
.involve-card p { font-size: 0.9rem; color: #636e72; margin-bottom: 20px; }

/* === Contact === */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; text-align: center; }
.contact-item h4 { font-size: 1.05rem; color: #1a2744; margin-bottom: 10px; }
.contact-item p { font-size: 0.93rem; color: #4a5568; }
.contact-item a { color: #c8922a; transition: color 0.2s; }
.contact-item a:hover { color: #b07e22; }

/* === Footer === */
.footer { background: #1a2744; color: rgba(255,255,255,0.8); padding: 40px 0 24px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 24px; margin-bottom: 20px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { border-radius: 50%; }
.footer-brand strong { color: #fff; font-size: 1.05rem; }
.footer-motto { font-size: 0.85rem; color: #c8922a; margin-top: 2px; }
.footer-credentials { display: flex; flex-wrap: wrap; gap: 16px; font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.footer-partner { text-align: center; font-size: 0.9rem; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 16px; }
.footer-partner a { color: #c8922a; font-weight: 600; }
.footer-partner a:hover { text-decoration: underline; }
.footer-bottom { text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* === WhatsApp Float === */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}

/* === Mobile === */
@media (max-width: 900px) {
  .pillars-grid, .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .involve-grid { grid-template-columns: repeat(2, 1fr); }
  .vision-mission-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: 70px; left: 0; right: 0; background: #1a2744;
    flex-direction: column; padding: 20px 24px; gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transform: translateY(-120%); transition: transform 0.3s;
  }
  .nav-menu.active { transform: translateY(0); }
  .programs-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .involve-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: center; text-align: center; }
  .footer-credentials { justify-content: center; }
}
@media (max-width: 480px) {
  .pillars-grid, .counters-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 100px 0 60px; }
}
