:root {
  --green-dark: #003f2b;
  --green: #007a3d;
  --green-2: #0a9b58;
  --light-green: #9fdc4b;
  --soft-green: #effaf3;
  --gold: #d7a83f;
  --text: #111827;
  --muted: #6b7280;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  --radius: 18px;
}

/* ======================================== */
/* GLOBAL */
/* ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

/* ======================================== */
/* TOPBAR */
/* ======================================== */

.topbar {
  background: #00341f;
  padding: 10px 0;
  color: #fff;
  font-size: 13px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-left {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-right {
  display: flex;
  gap: 18px;
}

.topbar a {
  color: #fff;
  transition: 0.3s;
}

.topbar a:hover {
  color: #9fdc4b;
}

/* ======================================== */
/* NAVBAR */
/* ======================================== */

nav {
  padding: 5px 0;
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-inner {
  width: 90%;
  max-width: 1250px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-circle img {
  width: 85%;
  height: 85%;
  object-fit: contain;
}

.logo-text .brand {
  font-size: 25px;
  color: #0f9d58;
  line-height: 1;
  font-weight: 800;
}

.logo-text .sub {
  font-size: 14px;
  font-weight: 600;
  color: #444;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: #111;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0f9d58;
}

.btn-donate-nav {
  background: #0f9d58;
  padding: 14px 24px;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-donate-nav:hover {
  background: #087543;
  transform: translateY(-2px);
}

/* ======================================== */
/* MOBILE MENU */
/* ======================================== */

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ======================================== */
/* DROPDOWN */
/* ======================================== */

.dropdown {
  position: relative;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 600;
}

.dropdown-menu {
  position: absolute;
  top: 48px;
  left: 0;
  width: 360px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  padding: 18px 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
  max-height: 500px;
  overflow-y: auto;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 42px;
}

.dropdown-menu a {
  display: block;
  padding: 14px 24px;
  font-size: 14px;
  color: #222;
  line-height: 1.5;
  transition: 0.3s;
  border-bottom: 1px solid #f3f3f3;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: #f5fdf8;
  color: #0f9d58;
  padding-left: 30px;
}

.dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: #0f9d58;
  border-radius: 20px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: #eee;
}

/* ======================================== */
/* HERO */
/* ======================================== */

.hero-new {
  height: 400px;
  background:
    linear-gradient(rgba(0, 50, 30, 0.82), rgba(0, 50, 30, 0.7)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1400&auto=format&fit=crop")
    center/cover;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-new h1 {
  font-size: 68px;
  margin-bottom: 18px;
  font-weight: 800;
}

.hero-new p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 650px;
  color: #f2f2f2;
}

/* ======================================== */
/* CONTACT SECTION */
/* ======================================== */

.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
}

/* LEFT SIDE */

.contact-info h2 {
  font-size: 48px;
  margin-bottom: 18px;
  font-weight: 800;
}

.green-line {
  width: 60px;
  height: 4px;
  background: #8dd63f;
  border-radius: 20px;
  margin-bottom: 30px;
}

.contact-info p {
  line-height: 2;
  color: #666;
  margin-bottom: 40px;
  font-size: 16px;
}

.info-box {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.info-icon {
  width: 65px;
  height: 65px;
  background: #f0faf4;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f9d58;
  font-size: 26px;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.info-text p {
  margin: 0;
  line-height: 1.8;
}

/* ======================================== */
/* CONTACT FORM */
/* ======================================== */

.contact-form {
  background: #fff;
  padding: 50px;
  border-radius: 25px;
  border: 1px solid #eee;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.contact-form h3 {
  font-size: 38px;
  margin-bottom: 10px;
}

.contact-form p {
  color: #666;
  margin-bottom: 35px;
  line-height: 1.8;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 18px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  outline: none;
  transition: 0.3s;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #0f9d58;
  box-shadow: 0 0 0 4px rgba(15, 157, 88, 0.1);
}

.form-group textarea {
  height: 180px;
  resize: none;
}

.submit-btn {
  background: #0f9d58;
  color: #fff;
  padding: 18px 28px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #087543;
}

/* ======================================== */
/* MAP SECTION */
/* ======================================== */

.map-section {
  padding-bottom: 100px;
}

.map-box {
  border-radius: 25px;
  overflow: hidden;
  height: 500px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ======================================== */
/* SOCIAL CONNECT */
/* ======================================== */

.social-connect {
  padding-bottom: 100px;
}

.social-title {
  text-align: center;
  font-size: 46px;
  margin-bottom: 15px;
  font-weight: 800;
}

.social-sub {
  text-align: center;
  max-width: 700px;
  margin: auto;
  line-height: 1.9;
  color: #666;
  margin-bottom: 50px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.social-card {
  background: #fff;
  padding: 45px 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #eee;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.social-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.social-card i {
  font-size: 50px;
  margin-bottom: 20px;
  color: #0f9d58;
}

.social-card h4 {
  font-size: 26px;
  margin-bottom: 12px;
}

.social-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.social-card a {
  display: inline-flex;
  background: #0f9d58;
  padding: 14px 22px;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  transition: 0.3s;
}

.social-card a:hover {
  background: #087543;
}

/* ======================================== */
/* CTA BANNER */
/* ======================================== */

.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0e3d22 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 24px;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.03) 0px,
      rgba(255,255,255,.03) 2px,
      transparent 2px,
      transparent 20px
    );
}

.cta-inner {
  max-width: 1200px;
  margin: auto;
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.cta-quote {
  color: rgba(255,255,255,.75);
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
}

.cta-quote .author {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  font-style: normal;
}

.cta-text-block {
  color: var(--white);
}

.cta-text-block h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}

.cta-text-block h2 .hl {
  color: var(--light-green);
}

.cta-text-block p {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}

.cta-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cta-action-btn {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  color: var(--white);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}

.cta-action-btn:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-2px);
}

.cta-action-btn i {
  font-size: 24px;
  color: var(--light-green);
  display: block;
  margin-bottom: 8px;
}

.cta-action-btn span {
  font-size: 13px;
  font-weight: 700;
  display: block;
}

/* ======================================== */
/* FOOTER */
/* ======================================== */

footer {
  background: #003522;
  color: white;
}

.footer-main {
  padding: 52px 0;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.4fr 1.35fr;
  gap: 36px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 15px;
}

.footer-col p,
.footer-col li {
  color: #cceada;
  font-size: 13px;
  list-style: none;
  margin-bottom: 8px;
  line-height: 1.8;
}

.socials {
  display: flex;
  gap: 9px;
  margin: 14px 0 18px;
}

.socials span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0a7f4b;
  display: grid;
  place-items: center;
  font-size: 12px;
}

.socials a {
  color: #fff;
}

.whatsapp {
  display: inline-flex;
  background: #09a65a;
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.copyright {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 0;
  color: #cceada;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* ======================================== */
/* RESPONSIVE */
/* ======================================== */

@media (max-width: 1100px) {

  .contact-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    display: none;
    margin-top: 10px;
    box-shadow: none;
    border: 1px solid #eee;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}

@media (max-width: 768px) {

  .hero-new {
    height: auto;
    padding: 100px 0;
    text-align: center;
  }

  .hero-new h1 {
    font-size: 48px;
  }

  .contact-form {
    padding: 30px;
  }

  .social-grid,
  .footer-main,
  .cta-actions {
    grid-template-columns: 1fr;
  }

  .copyright {
    flex-direction: column;
    text-align: center;
  }

  .topbar .container {
    justify-content: center;
    text-align: center;
  }

  .topbar-left,
  .topbar-right {
    justify-content: center;
  }
}

@media (max-width: 480px) {

  .hero-new h1 {
    font-size: 38px;
  }

  .contact-info h2,
  .social-title {
    font-size: 34px;
  }

  .contact-form h3 {
    font-size: 28px;
  }

  .info-box {
    flex-direction: column;
  }

  .contact-form {
    padding: 25px;
  }

  .logo-text .brand {
    font-size: 20px;
  }

  .logo-text .sub {
    font-size: 11px;
  }
}