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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a2e1a;
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; }

/* ===========================
   UTILITIES
=========================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3d7a5e;
  margin-bottom: 16px;
}

.section-label-light {
  color: #4a8a6a;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1a2e1a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title-dark {
  color: #162416;
}

.section-desc {
  font-size: 1.05rem;
  color: #4a5e4a;
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
  line-height: 1.7;
}

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2d6a4f;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: inherit;
}

.btn-primary:hover {
  background: #235a42;
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #1a2e1a;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid #a0c4b4;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  font-family: inherit;
}

.btn-outline:hover {
  border-color: #2d6a4f;
  background: rgba(45, 106, 79, 0.05);
  transform: translateY(-1px);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #1a2e1a;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid #4a8a6a;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  font-family: inherit;
}

.btn-outline-dark:hover {
  border-color: #1a2e1a;
  background: rgba(26, 46, 26, 0.06);
  transform: translateY(-1px);
}

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

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 106, 79, 0.1);
  display: flex;
  align-items: center;
  padding: 0 32px;
  height: 68px;
  gap: 32px;
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(26, 46, 26, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: #2d6a4f;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a2e1a;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #3a5a3a;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #2d6a4f;
}

.nav-cta {
  flex-shrink: 0;
  padding: 10px 22px;
  font-size: 0.88rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #1a2e1a;
  margin-left: auto;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: #fff;
  flex-direction: column;
  padding: 16px 24px 24px;
  z-index: 99;
  border-bottom: 1px solid #e0ede8;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #1a2e1a;
  border-bottom: 1px solid #f0f7f3;
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: linear-gradient(160deg, #e8f5f0 0%, #f0faf6 40%, #eaf4f0 70%, #dff0ea 100%);
  position: relative;
}

.hero-content {
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(45, 106, 79, 0.2);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #3d7a5e;
  margin-bottom: 36px;
  backdrop-filter: blur(8px);
}

.hero-badge svg {
  fill: #e57373;
}

a.hero-badge {
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

a.hero-badge:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(45, 106, 79, 0.45);
  transform: translateY(-1px);
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: #1a2e1a;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  color: #2d6a4f;
  display: block;
}

.hero-desc {
  font-size: 1.1rem;
  color: #4a6a4a;
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons a {
  flex: 1;
  min-width: max-content;
  text-align: center;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #6a8e7a;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  animation: bounce 2s infinite;
}

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

/* ===========================
   ABOUT SECTION
=========================== */
.about {
  padding: 100px 0;
  background: #fff;
  text-align: center;
}

.about .section-desc {
  margin-bottom: 64px;
  max-width: 720px;
}

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

.about-card {
  background: #f6fbf8;
  border: 1px solid #d8eee5;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 106, 79, 0.1);
}

.about-icon {
  width: 56px;
  height: 56px;
  background: #e8f5ef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #2d6a4f;
}

.about-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #1a2e1a;
  margin-bottom: 12px;
}

.about-card p {
  font-size: 0.95rem;
  color: #5a7a5a;
  line-height: 1.65;
}

/* ===========================
   SERVICES SECTION
=========================== */
.services {
  padding: 100px 0;
  background: #f6fbf8;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.service-card {
  background: #fff;
  border: 1px solid #e0ede8;
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 106, 79, 0.1);
}

.service-card-featured {
  background: #1a2e1a;
  border-color: #1a2e1a;
  color: #e0f0e8;
}

.service-card-featured h3 {
  color: #e8f5ef;
}

.service-card-featured p {
  color: #a0c4a8;
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #2d6a4f;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: #e8f5ef;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #2d6a4f;
}

.service-icon-featured {
  background: rgba(45, 106, 79, 0.4);
  color: #a0e0b8;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #1a2e1a;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: #5a7a5a;
  line-height: 1.65;
}

/* ===========================
   SOCIAL PROGRAM SECTION
=========================== */
.social-program {
  padding: 100px 0;
  background: #fff;
}

.social-program-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.social-program-left {
  padding-top: 12px;
}

.social-program-left .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.social-program-desc {
  font-size: 1rem;
  color: #4a6a4a;
  line-height: 1.75;
  margin-bottom: 32px;
}

.eligibility-card {
  background: #f4faf7;
  border: 1px solid #d0e8da;
  border-radius: 20px;
  padding: 36px;
}

.eligibility-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #1a2e1a;
  margin-bottom: 24px;
}

.eligibility-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.eligibility-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #3a5a3a;
  line-height: 1.5;
}

.eligibility-list svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: #2d6a4f;
}

.partners-row {
  font-size: 0.88rem;
  color: #5a7a5a;
  padding-top: 20px;
  border-top: 1px solid #c8e0d0;
  line-height: 1.6;
}

.partners-row strong {
  color: #1a2e1a;
}

/* ===========================
   TEAM SECTION
=========================== */
.team {
  padding: 100px 0;
  background: #f6fbf8;
  text-align: center;
}

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

.team-grid-single {
  grid-template-columns: 360px;
  justify-content: center;
}

.team-avatar-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: none;
}

.team-avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-card {
  background: #fff;
  border: 1px solid #e0ede8;
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 106, 79, 0.1);
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: #e8f5ef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #2d6a4f;
}

.team-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #1a2e1a;
  margin-bottom: 6px;
}

.team-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2d6a4f;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.team-card p {
  font-size: 0.9rem;
  color: #5a7a5a;
  line-height: 1.65;
}

/* ===========================
   CONTACT SECTION
=========================== */
.contact {
  padding: 100px 0;
  background: #fff;
  text-align: center;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  text-align: left;
  margin-top: 8px;
}

/* MAP EMBED LEFT COLUMN */
.contact-form-wrap {
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.maps-embed-large {
  flex: 1;
  min-height: 380px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}

.maps-embed-large iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: 14px;
}

/* CONTACT INFO */
.contact-info {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: #e8f5ef;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d6a4f;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8aaa8a;
  margin-bottom: 4px;
}

.contact-info-item a,
.contact-info-item p {
  font-size: 0.95rem;
  color: #3a5a3a;
  line-height: 1.6;
}

.contact-info-item a:hover {
  color: #2d6a4f;
  text-decoration: underline;
}


/* ===========================
   FOOTER
=========================== */
.footer {
  background: #1a2e1a;
  color: #b0c8b0;
  padding: 48px 0 40px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer .logo-img {
  border: 2px solid rgba(255,255,255,0.15);
}

.footer .logo-text {
  color: #e0f0e0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.9rem;
  color: #8aaa8a;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #e0f0e0;
}

.footer-copy {
  font-size: 0.82rem;
  color: #6a8a6a;
}

.footer-heart {
  margin-top: 6px;
  font-size: 0.8rem;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .about-cards,
  .services-grid,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .social-program-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    order: -1;
  }

  .contact-form-wrap {
    order: 1;
  }

  .social-program-left .section-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 680px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .about-cards,
  .services-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .navbar {
    padding: 0 20px;
  }

  .section-desc {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
.eligibility-card {
    padding: 24px 20px;
  }
}
