/* ── Reset & Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Quicksand', sans-serif;
  color: #1a1a2e;
  background: #FDFBF7;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Nunito', sans-serif; line-height: 1.25; }

/* ── Nav ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(5, 150, 105, 0.1);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(5, 150, 105, 0.1); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-icon { width: 36px; height: 36px; flex-shrink: 0; }
.brand-text { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.05rem; color: #064e3b; }
.brand-accent { color: #059669; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-weight: 600; font-size: 0.925rem; color: #1a1a2e;
  transition: color 0.2s;
}
.nav-links a:hover { color: #059669; }

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: 0.95rem; border-radius: 50px;
  padding: 14px 28px; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(5,150,105,0.25); }
.btn-emerald { background: #059669; color: #fff; }
.btn-emerald:hover { background: #047857; box-shadow: 0 8px 28px rgba(5,150,105,0.35); }
.btn-cream { background: #FAF6EE; color: #064e3b; border: 2px solid #d1fae5; }
.btn-cream:hover { background: #d1fae5; box-shadow: 0 8px 24px rgba(5,150,105,0.15); }
.btn-white { background: #fff; color: #059669; }
.btn-white:hover { background: #ecfdf5; box-shadow: 0 8px 28px rgba(255,255,255,0.3); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 22px; font-size: 0.875rem; }
.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }
.btn-icon-right { width: 16px; height: 16px; }

/* ── Hero ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #064e3b 0%, #047857 40%, #059669 100%);
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(52,211,153,0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(110,231,183,0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(167,243,208,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 320px;
  gap: 48px; align-items: center;
  position: relative; z-index: 1;
  width: 100%;
}
.hero-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  padding: 48px 44px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); color: #a7f3d0;
  font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: 0.8rem; border-radius: 50px;
  padding: 8px 18px; margin-bottom: 24px;
  letter-spacing: 0.03em; text-transform: uppercase;
}
.badge-icon { width: 16px; height: 16px; }
.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800; color: #fff;
  margin-bottom: 20px; line-height: 1.15;
}
.hero-sub {
  font-size: 1.1rem; color: #d1fae5;
  margin-bottom: 36px; line-height: 1.75;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Floating stat cards */
.hero-floats { display: flex; flex-direction: column; gap: 20px; }
.float-card {
  background: rgba(255,255,255,0.95);
  border-radius: 20px; padding: 24px 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  display: flex; align-items: center; gap: 18px;
  animation: float 4s ease-in-out infinite;
}
.float-card:nth-child(2) { animation-delay: -1.3s; }
.float-card:nth-child(3) { animation-delay: -2.6s; }
.float-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.float-icon emerald { background: #d1fae5; color: #059669; }
.float-icon.cream { background: #fef3c7; color: #92400e; }
.float-icon svg { width: 26px; height: 26px; }
.float-stat { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.4rem; color: #064e3b; }
.float-stat span { font-size: 1rem; color: #059669; }
.float-label { font-size: 0.82rem; color: #6b7280; font-weight: 500; line-height: 1.3; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── Section shared ────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: 'Nunito', sans-serif; font-weight: 800;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: #059669; background: #d1fae5;
  border-radius: 50px; padding: 6px 16px; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800; color: #064e3b;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.075rem; color: #4b5563;
  max-width: 640px; line-height: 1.75;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-desc { margin: 0 auto; }

/* ── Services ──────────────────────────────────────── */
.services { padding: 100px 0; background: #FDFBF7; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 22px; padding: 36px 32px;
  border: 1px solid #e5e7eb;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(5,150,105,0.12);
  border-color: #a7f3d0;
}
.service-icon-wrap {
  width: 64px; height: 64px;
  background: #d1fae5; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.service-icon { width: 32px; height: 32px; color: #059669; }
.service-title { font-size: 1.2rem; font-weight: 800; color: #064e3b; margin-bottom: 12px; }
.service-desc { font-size: 0.95rem; color: #4b5563; line-height: 1.7; }

/* ── About ─────────────────────────────────────────── */
.about { padding: 100px 0; background: #ecfdf5; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: 28px; overflow: hidden; box-shadow: 0 20px 60px rgba(5,150,105,0.15); }
.about-img-main img { width: 100%; height: 400px; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -32px; right: -24px;
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  border: 5px solid #ecfdf5;
}
.about-img-secondary img { width: 260px; height: 180px; object-fit: cover; }
.about-badge {
  position: absolute; top: -16px; left: 24px;
  background: #059669; color: #fff;
  font-family: 'Nunito', sans-serif; font-weight: 800;
  font-size: 0.85rem; border-radius: 50px;
  padding: 10px 20px; display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(5,150,105,0.3);
}
.about-badge svg { width: 18px; height: 18px; }
.about-text { font-size: 1.025rem; color: #374151; line-height: 1.8; margin-bottom: 16px; }
.about-features { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-feature { display: flex; align-items: center; gap: 12px; }
.about-feature-icon {
  width: 32px; height: 32px; background: #d1fae5; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about-feature-icon svg { width: 18px; height: 18px; color: #059669; }
.about-feature span { font-weight: 600; font-size: 0.925rem; color: #1a1a2e; }

/* ── Community ─────────────────────────────────────── */
.community { padding: 100px 0; background: #FDFBF7; }
.community-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.community-card {
  background: #fff; border-radius: 24px; overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: transform 0.25s, box-shadow 0.25s;
}
.community-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(5,150,105,0.12); }
.community-card img { width: 100%; height: 200px; object-fit: cover; }
.community-card-content { padding: 28px 28px 32px; }
.community-card-title { font-size: 1.15rem; font-weight: 800; color: #064e3b; margin-bottom: 10px; }
.community-card-content p { font-size: 0.925rem; color: #4b5563; line-height: 1.7; }

/* ── FAQ ───────────────────────────────────────────── */
.faq { padding: 100px 0; background: #ecfdf5; }
.faq-header { text-align: center; margin-bottom: 52px; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { margin-bottom: 16px; background: #fff; border-radius: 18px; border: 1px solid #e5e7eb; overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: #a7f3d0; }
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; background: none; border: none; cursor: pointer;
  text-align: left; gap: 16px;
}
.faq-q { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1.05rem; color: #064e3b; }
.faq-chevron { width: 20px; height: 20px; color: #059669; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-a p { padding: 0 28px 22px; font-size: 0.95rem; color: #4b5563; line-height: 1.75; }

/* ── CTA ───────────────────────────────────────────── */
.cta-section { padding: 80px 0; background: linear-gradient(135deg, #064e3b, #059669); }
.cta-card {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-content { max-width: 560px; }
.cta-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
.cta-text { font-size: 1.05rem; color: #a7f3d0; line-height: 1.75; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Contact ───────────────────────────────────────── */
.contact { padding: 100px 0; background: #FDFBF7; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-desc { font-size: 1.025rem; color: #4b5563; line-height: 1.75; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail { display: flex; align-items: flex-start; gap: 18px; }
.contact-detail-icon {
  width: 52px; height: 52px; background: #d1fae5; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-icon svg { width: 24px; height: 24px; color: #059669; }
.contact-detail strong { display: block; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.95rem; color: #064e3b; margin-bottom: 4px; }
.contact-detail p, .contact-detail a { font-size: 0.95rem; color: #4b5563; }
.contact-detail a:hover { color: #059669; text-decoration: underline; }

/* Form */
.contact-form-wrap {
  background: #fff; border-radius: 28px; padding: 44px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 50px rgba(5,150,105,0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: 0.875rem; color: #064e3b;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 2px solid #e5e7eb; border-radius: 14px;
  font-family: 'Quicksand', sans-serif; font-size: 0.95rem; color: #1a1a2e;
  background: #FDFBF7; transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #059669; box-shadow: 0 0 0 4px rgba(5,150,105,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9ca3af; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; align-items: center; gap: 10px;
  margin-top: 16px; padding: 16px 20px;
  background: #d1fae5; border-radius: 14px;
  font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: 0.95rem; color: #064e3b;
}
.form-success svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ── Footer ────────────────────────────────────────── */
.footer { background: #064e3b; color: #a7f3d0; padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px; padding-bottom: 56px;
}
.footer .brand-text { color: #fff; }
.footer .brand-accent { color: #34d399; }
.footer-tagline { font-size: 0.925rem; line-height: 1.75; margin-top: 16px; color: #6ee7b7; max-width: 280px; }
.footer h4 {
  font-family: 'Nunito', sans-serif; font-weight: 800;
  font-size: 1rem; color: #fff; margin-bottom: 20px;
}
.footer ul li { margin-bottom: 12px; }
.footer ul a { font-size: 0.9rem; color: #6ee7b7; transition: color 0.2s; }
.footer ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.85rem; color: #6ee7b7; }

/* ── Hamburger ─────────────────────────────────────── */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: #064e3b; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Mobile overlay ────────────────────────────────── */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(6,78,59,0.95); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.mobile-link {
  font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: 1.5rem; color: #fff; transition: color 0.2s;
}
.mobile-link:hover { color: #34d399; }
.mobile-cta {
  background: #fff; color: #059669; border-radius: 50px;
  padding: 14px 36px; font-size: 1.1rem; margin-top: 8px;
}

/* ── Scroll reveal (progressive enhancement) ───────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
}
.reveal { /* when JS is disabled, stay visible */ opacity: 1; transform: none; }

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-floats { flex-direction: row; flex-wrap: wrap; margin-top: 32px; }
  .float-card { flex: 1; min-width: 180px; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-images { max-width: 520px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero-card { padding: 32px 28px; }
  .hero-floats { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .cta-card { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
