/* =========================
   ROOT VARIABLES
========================= */
:root{
  --lime:#9DC025;
  --black:#0a0b07;
  --dark:#111111;
  --dark2:#181818;
  --dark3:#141414;
  --white:#ffffff;
  --muted:#9aa3ad;
  --border:rgba(255,255,255,0.08);
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--black);
  color:var(--white);
  overflow-x:hidden;
  line-height:1.6;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

iframe{
  max-width:100%;
  border:0;
}

section{
  padding:120px 0;
  overflow:hidden;
}

.container{
  width:100%;
  max-width:1400px;
  margin:auto;
  padding-inline:20px;
}

/* =========================
   SECTION HEADINGS
========================= */
.section-tag{
  color:var(--lime);
  letter-spacing:.25em;
  text-transform:uppercase;
  font-size:.8rem;
  font-weight:700;
  margin-bottom:20px;
}

.section-center{
  text-align:center;
  margin-bottom:70px;
}

.section-center h2,
.overview-left h2{
  font-size:clamp(2.5rem,6vw,4.5rem);
  font-weight:900;
  line-height:1.1;
}

.section-center span,
.overview-left span{
  color:var(--lime);
}

/* =========================
   OVERVIEW SECTION
========================= */
.overview-section{
  background:var(--dark2);
}

.overview-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:60px;
  align-items:center;
}

.overview-left p{
  color:var(--muted);
  margin-top:20px;
  line-height:1.9;
}

.overview-stats{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:20px;
  margin-top:40px;
}

.stat-box{
  background:var(--dark3);
  border:1px solid var(--border);
  padding:25px;
  border-radius:20px;
  text-align:center;
}

.stat-box h3{
  font-size:2.5rem;
  color:var(--lime);
  margin-bottom:8px;
}

.stat-box span{
  color:var(--muted);
  font-size:.9rem;
}

/* =========================
   IMAGE GRID
========================= */
.image-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:15px;
}

.image-card{
  border-radius:20px;
  overflow:hidden;
  height:260px;
  position:relative;
}

.image-card.large{
  grid-column:span 2;
  height:360px;
}

.image-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s ease;
}

.image-card:hover img{
  transform:scale(1.08);
}

/* =========================
   MISSION
========================= */
.mission-section{
  background:#05080d;
}

.mission-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:25px;
}

.mission-card{
  padding:45px;
  border-radius:28px;
}

.mission-card.lime{
  background:var(--lime);
  color:#000;
}

.mission-card.dark{
  background:var(--dark3);
  border:1px solid var(--border);
}

.mini-tag{
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.2em;
  margin-bottom:15px;
}

.mission-card h3{
  font-size:2.2rem;
  margin-bottom:15px;
  line-height:1.1;
}

.mission-card p{
  line-height:1.8;
  opacity:.9;
}

/* =========================
   IMAGE BREAK
========================= */
.image-break{
  position:relative;
  min-height:600px;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.image-break img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(.5);
}

.image-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to right,rgba(0,0,0,.9),rgba(0,0,0,.4));
}

.image-break-content{
  position:relative;
  z-index:2;
  max-width:700px;
}

/* =========================
   VALUES
========================= */
.values-section{
  background:var(--dark2);
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.value-card{
  background:var(--dark3);
  border:1px solid var(--border);
  border-radius:24px;
  padding:35px;
  transition:.3s;
}

.value-card:hover{
  transform:translateY(-6px);
  border-color:var(--lime);
}

.value-icon{
  font-size:2rem;
  margin-bottom:15px;
  color:var(--lime);
}

.value-card h3{
  font-size:1.3rem;
  margin-bottom:10px;
}

.value-card p{
  color:var(--muted);
  line-height:1.7;
}

/* =========================
   TEAM
========================= */
.team-section{
  background:#05080d;
}

.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.team-card{
  background:var(--dark3);
  border:1px solid var(--border);
  border-top:3px solid var(--lime);
  padding:30px;
  border-radius:20px;
}

.team-card h3{
  font-size:1.3rem;
  margin-bottom:10px;
}

.team-card p{
  color:var(--muted);
  line-height:1.7;
}

/* =========================
   CTA
========================= */
.cta-section{
  background:var(--lime);
  text-align:center;
}

.cta-content h2{
  color:#000;
  font-size:clamp(2.5rem,6vw,4.5rem);
  margin-bottom:20px;
}

.cta-content p{
  color:rgba(0,0,0,.7);
  max-width:650px;
  margin:auto;
  line-height:1.8;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
  margin-top:30px;
}

.cta-primary{
  background:#000;
  color:#fff;
  padding:15px 30px;
  border-radius:12px;
  font-weight:700;
  text-decoration:none;
}

.cta-secondary{
  border:2px solid rgba(0,0,0,.3);
  color:#000;
  padding:15px 30px;
  border-radius:12px;
  font-weight:700;
  text-decoration:none;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:980px){
  section{
    padding:90px 0;
  }

  .image-card.large{
    grid-column:span 1;
    height:300px;
  }
}

@media(max-width:600px){
  .mission-card{
    padding:30px;
  }

  .team-card{
    padding:25px;
  }

  .value-card{
    padding:25px;
  }
}

/* Footer Contact Section */
#site-footer .contact {
  display: flex;
  flex-direction: column;   /* stack items vertically */
  gap: 0.75rem;             /* spacing between items */
  align-items: flex-start;  /* align left */
}

#site-footer .contact a {
  display: block;           /* each link on its own line */
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

#site-footer .contact a:hover {
  color: #22c55e;           /* successful green hover */
}
/* =====================================
   OVERFLOW PROTECTION
===================================== */

html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

*{
  box-sizing:border-box;
}

img,
video,
iframe{
  max-width:100%;
  height:auto;
}

section,
div,
aside,
main,
footer,
nav{
  max-width:100%;
}