:root {
  --green: #073b2f;
  --green-2: #0f5a46;
  --gold: #c79a2b;
  --gold-2: #e0bd64;
  --ink: #14211d;
  --muted: #66736f;
  --line: #dde5e1;
  --soft: #f4f7f5;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(5, 34, 27, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: Poppins, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
}
a { color: var(--green-2); text-decoration: none; }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }

.navbar {
  padding: 18px 0;
  transition: .25s ease;
  background: linear-gradient(180deg, rgba(7, 59, 47, .86), rgba(7, 59, 47, 0));
}
.navbar.scrolled,
.navbar:has(.navbar-collapse.show) {
  background: rgba(7, 59, 47, .98);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .18);
  padding: 10px 0;
}
.brand-logo { width: 75px; height: 80px; object-fit: contain; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--gold);
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0;
}
.brand-text { font-weight: 700; }
.nav-link { font-weight: 600; color: rgba(255,255,255,.9) !important; }
.nav-link.active, .nav-link:hover { color: var(--gold-2) !important; }
.nav-cta {
  background: var(--gold);
  color: var(--green) !important;
  border-radius: 6px;
  padding-inline: 18px !important;
  margin-left: 8px;
}

.hero-section { height: 100vh; min-height: 680px; position: relative; overflow: hidden; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 35, 28, .92), rgba(4, 35, 28, .58), rgba(4, 35, 28, .2)),
    linear-gradient(0deg, rgba(4,35,28,.75), rgba(4,35,28,0) 38%);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.hero-copy { max-width: 850px; color: var(--white); padding-top: 60px; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}
.hero-copy h1 {
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 1.02;
  font-weight: 800;
  margin-bottom: 20px;
}
.hero-copy p { font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 720px; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.btn {
  border-radius: 6px;
  padding: 13px 22px;
  font-weight: 700;
}
.btn-gold {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--green);
}
.btn-gold:hover { background: var(--green); border-color: var(--green); color: var(--white); }

.section-pad { padding: 108px 0; }
.soft-bg { background: var(--soft); }
.section-heading { max-width: 820px; margin: 0 auto 48px; }
h2 { font-weight: 800; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.12; color: var(--green); }
h3 { font-weight: 750; color: var(--green); }
.lead { color: var(--green); font-weight: 500; }

.about-panel {
  position: relative;
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-panel img { width: 100%; height: 520px; object-fit: cover; }
.stat-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: 240px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 45px rgba(0,0,0,.15);
}
.stat-card.secondary { left: auto; right: 22px; bottom: 120px; }
.stat-card strong { display: block; font-size: 2rem; color: var(--green); }
.stat-card span { color: var(--muted); font-size: .9rem; }
.mission-card,
.service-card,
.team-card,
.news-card,
.value-grid article,
.why-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(5,34,27,.07);
}
.mission-card { padding: 34px; height: 100%; }
.mission-card.dark { background: var(--green); color: rgba(255,255,255,.85); border-color: var(--green); }
.mission-card.dark h3 { color: var(--white); }
.mission-card i,
.service-card i,
.why-grid i {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  background: rgba(199,154,43,.14);
  color: var(--gold);
  border-radius: 8px;
  font-size: 1.45rem;
  margin-bottom: 18px;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.value-grid article { padding: 22px; }
.value-grid i { color: var(--gold); font-size: 1.5rem; }
.value-grid h3 { font-size: 1rem; }
.value-grid p { margin: 0; color: var(--muted); font-size: .92rem; }

.service-card {
  min-height: 360px;
  padding: 30px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card p { color: var(--muted); }
.link-button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--green-2);
  font-weight: 800;
  padding: 0;
}
.check-list { padding-left: 0; list-style: none; }
.check-list li { padding: 8px 0 8px 30px; position: relative; }
.check-list li::before {
  content: "\F26E";
  font-family: bootstrap-icons;
  position: absolute;
  left: 0;
  color: var(--gold);
}

.timeline { position: relative; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: var(--line); }
.timeline article { position: relative; padding-bottom: 28px; }
.timeline span {
  position: absolute;
  left: -34px;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  border: 5px solid var(--white);
  box-shadow: 0 0 0 1px var(--gold);
}
.timeline p { color: var(--muted); margin-bottom: 0; }

.dark-band {
  background: linear-gradient(135deg, var(--green), #031f19);
  color: rgba(255,255,255,.82);
}
.dark-band h2, .dark-band h3 { color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.why-grid article { padding: 24px; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); }
.why-grid p { margin: 0; color: rgba(255,255,255,.75); font-size: .92rem; }
.counter-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.counter-strip div {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  text-align: center;
  background: rgba(255,255,255,.07);
}
.counter-strip strong { display: block; color: var(--gold-2); font-size: 2.5rem; line-height: 1; }
.counter-strip span { font-size: .92rem; }

.team-card { overflow: hidden; height: 100%; }
.team-card img { width: 100%; height: 300px; object-fit: cover; background: var(--soft); }
.team-card > div { padding: 26px; }
.role { color: var(--gold); font-weight: 700; }

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.gallery-filter button {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
  padding: 10px 16px;
  font-weight: 700;
}
.gallery-filter button.active { background: var(--green); color: var(--white); border-color: var(--green); }
.gallery-grid {
  columns: 3 260px;
  column-gap: 18px;
}
.gallery-item {
  display: inline-block;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 18px;
  box-shadow: 0 14px 35px rgba(5,34,27,.1);
}
.gallery-item img { width: 100%; min-height: 190px; object-fit: cover; transition: transform .3s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(7,59,47,.86);
  color: var(--white);
  font-weight: 700;
}

.partners-band { overflow: hidden; }
.sponsor-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: scrollSponsors 28s linear infinite;
}
.sponsor-logo {
  width: 210px;
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(5,34,27,.07);
  font-weight: 800;
  color: var(--green);
  text-align: center;
}
.sponsor-logo img { max-height: 56px; margin-bottom: 6px; }
@keyframes scrollSponsors { to { transform: translateX(-50%); } }

.news-card { overflow: hidden; height: 100%; }
.news-card img { width: 100%; height: 230px; object-fit: cover; }
.news-card div { padding: 24px; }
.news-card time { color: var(--gold); font-weight: 800; font-size: .85rem; }
.news-card p { color: var(--muted); }
.news-card a { font-weight: 800; }

.contact-section { background: var(--soft); }
.contact-list { display: grid; gap: 12px; margin: 26px 0; }
.contact-list a, .contact-list span {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  font-weight: 600;
}
.contact-list i { color: var(--gold); }
.map-wrap { overflow: hidden; border-radius: 8px; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 260px; border: 0; display: block; }
.contact-form {
  background: var(--white);
  padding: 34px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.contact-form label { font-weight: 700; margin-bottom: 6px; }
.contact-form input, .contact-form textarea, .newsletter input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  outline: 0;
}
.contact-form input:focus, .contact-form textarea:focus, .newsletter input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(199,154,43,.16);
}
.form-status { margin-top: 16px; font-weight: 700; }

.site-footer {
  background: #031f19;
  color: rgba(255,255,255,.76);
  padding: 72px 0 28px;
}
.footer-brand { color: var(--white); font-weight: 800; font-size: 1.3rem; margin-bottom: 14px; }
.site-footer h3 { color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.site-footer a { display: block; color: rgba(255,255,255,.75); margin-bottom: 9px; }
.site-footer a:hover { color: var(--gold); }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  border-radius: 6px;
}
.newsletter { display: flex; gap: 8px; }
.newsletter button {
  width: 50px;
  border: 0;
  border-radius: 6px;
  background: var(--gold);
  color: var(--green);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--gold);
  color: var(--green);
  display: none;
  z-index: 20;
}
.back-to-top.show { display: grid; place-items: center; }
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(3,31,25,.92);
  display: grid;
  place-items: center;
  padding: 28px;
}
.lightbox-overlay img {
  max-height: 88vh;
  max-width: 94vw;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0,0,0,.4);
}
.lightbox-overlay button {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--gold);
  color: var(--green);
  font-size: 1.8rem;
  line-height: 1;
}

@media (max-width: 1199px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .hero-section { min-height: 760px; }
  .section-pad { padding: 74px 0; }
  .nav-cta { margin-left: 0; margin-top: 6px; }
  .hero-copy h1 { font-size: 3rem; }
  .stat-card, .stat-card.secondary { position: static; width: auto; margin: 14px; }
  .about-panel, .about-panel img { min-height: auto; height: auto; }
  .value-grid, .why-grid, .counter-strip { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}
