@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #0d2b1a;
  --green-main:   #1a5c2a;
  --green-mid:    #2e7d43;
  --amber:        #c8860a;
  --amber-light:  #e0a020;
  --off-white:    #f8f6f1;
  --text-dark:    #1a2b1e;
  --text-muted:   #5a6b5e;
  --white:        #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  padding-top: 152px;
}

@media (max-width: 768px) { body { padding-top: 64px; } }

h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; }

/* ======================== NAVBAR ======================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--green-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nav-logo { margin-bottom: 1rem; }
.nav-logo img { height: 56px; width: auto; display: block; cursor: pointer; }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  list-style: none;
  flex-wrap: wrap;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.80);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--amber-light); }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all 0.3s;
}
.mobile-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}
.mobile-menu {
  display: none;
  background: #0f3320;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.9rem 2rem;
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.05); color: var(--amber-light); }

@media (max-width: 768px) {
  .nav-inner { display: none; }
  .mobile-header { display: flex; }
}

/* ======================== BUTTONS ======================== */
.btn-amber {
  background: var(--amber); color: var(--white); border: none;
  padding: 0.9rem 2.2rem; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
  text-decoration: none; display: inline-block; transition: background 0.25s;
  font-family: 'Poppins', sans-serif;
}
.btn-amber:hover { background: var(--amber-light); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 0.9rem 2.2rem; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: background 0.25s, border-color 0.25s;
  font-family: 'Poppins', sans-serif;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.8); }
.btn-green {
  background: var(--green-main); color: var(--white); border: none;
  padding: 0.85rem 2rem; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
  text-decoration: none; display: inline-block; transition: background 0.25s;
  font-family: 'Poppins', sans-serif;
}
.btn-green:hover { background: var(--green-mid); }
.btn-submit {
  width: 100%; padding: 1rem;
  background: var(--green-dark); color: var(--white); border: none;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; cursor: pointer;
  font-family: 'Poppins', sans-serif; transition: background 0.25s;
}
.btn-submit:hover { background: var(--green-main); }

/* ======================== SHARED SECTION STYLES ======================== */
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 0.5rem;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; color: var(--green-dark); line-height: 1.2; }
.title-bar { width: 48px; height: 2px; background: var(--green-dark); margin: 1rem 0 1.5rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p.muted {
  margin-top: 0.75rem; color: var(--text-muted); font-size: 0.95rem;
  max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7;
}

/* ======================== PAGE HERO ======================== */
.page-hero {
  position: relative; padding: 6rem 2.5rem;
  background: var(--green-dark); overflow: hidden; text-align: center;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.2; }
.page-hero-content { position: relative; z-index: 10; max-width: 700px; margin: 0 auto; }
.page-hero-content h1 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; color: var(--white); }
.page-hero-content p { margin-top: 1rem; color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.8; }

/* ======================== CARDS / VALUES ======================== */
.values-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.value-card {
  background: var(--white); border: 1px solid #dde8e0;
  padding: 1.75rem; transition: box-shadow 0.3s, transform 0.3s; cursor: default;
}
.value-card:hover { box-shadow: 0 12px 40px rgba(26,92,42,0.12); transform: translateY(-4px); }
.value-icon {
  width: 48px; height: 48px; background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; transition: background 0.3s;
}
.value-card:hover .value-icon { background: var(--amber); }
.value-icon svg { width: 22px; height: 22px; stroke: var(--white); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.value-card h3 { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }

/* ======================== CTA BANNER ======================== */
.cta-banner {
  position: relative; padding: 5rem 2.5rem;
  text-align: center; overflow: hidden;
}
.cta-banner-bg { position: absolute; inset: 0; }
.cta-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner-overlay { position: absolute; inset: 0; background: rgba(13,43,26,0.82); }
.cta-banner-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta-banner-content h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--white); }
.cta-banner-content p { margin-top: 1.2rem; color: rgba(255,255,255,0.72); font-size: 0.95rem; line-height: 1.8; }
.cta-banner-content a { margin-top: 2rem; display: inline-block; }

/* ======================== VISION BANNER ======================== */
.vision-banner { background: var(--green-dark); padding: 4rem 2.5rem; text-align: center; }
.vision-banner h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; color: var(--white); line-height: 1.4; }
.vision-banner h3 span, .vision-banner p span { color: var(--amber-light); font-weight: 700; }
.vision-banner p { margin-top: 1.2rem; color: rgba(255,255,255,0.68); font-size: 0.95rem; line-height: 1.8; max-width: 780px; margin-left: auto; margin-right: auto; }

/* ======================== CONTACT ======================== */
.contact-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-img { width: 100%; height: 260px; object-fit: cover; display: block; margin-bottom: 2rem; }
.contact-info-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item { display: flex; align-items: center; gap: 1.25rem; }
.contact-icon { width: 44px; height: 44px; background: var(--green-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 18px; height: 18px; stroke: var(--amber); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-info-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.contact-info-value { font-size: 0.9rem; font-weight: 700; color: var(--green-dark); margin-top: 2px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--green-dark); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid #c5d5c8;
  background: #f5f8f5; color: var(--text-dark); font-size: 0.88rem;
  font-family: 'Poppins', sans-serif; outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--green-main); }
.form-group textarea { resize: none; }

/* ======================== FOOTER ======================== */
footer { background: #071a0e; color: rgba(255,255,255,0.65); }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 4rem 2.5rem; display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 3rem; }
.footer-logo { height: 60px; width: auto; margin-bottom: 1.25rem; display: block; }
.footer-desc { font-size: 0.85rem; line-height: 1.75; color: rgba(255,255,255,0.55); max-width: 260px; }
.footer-heading { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--amber-light); }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.85rem; }
.footer-contact-list svg { width: 16px; height: 16px; stroke: var(--amber); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 1px; }
.footer-tags { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-tag { font-size: 0.72rem; border: 1px solid rgba(255,255,255,0.18); padding: 0.25rem 0.75rem; color: rgba(255,255,255,0.45); }
.footer-bar { border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bar-inner { max-width: 1280px; margin: 0 auto; padding: 1.25rem 2.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer-bar-inner p { font-size: 0.75rem; color: rgba(255,255,255,0.28); }

/* ======================== OPENINGS ======================== */
.openings-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.opening-item { background: var(--off-white); border: 1px solid #dde8e0; padding: 1.25rem 1.75rem; }
.opening-item h3 { font-size: 0.95rem; font-weight: 700; color: var(--green-dark); }
.opening-item p { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }
.apply-cta-box { max-width: 500px; margin: 3rem auto 0; text-align: center; padding: 2.5rem; border: 1px solid #dde8e0; background: var(--off-white); }
.apply-cta-box h3 { font-size: 1.25rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.75rem; }
.apply-cta-box p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }

/* ======================== WHY GRID ======================== */
.why-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem 3rem; }
.why-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.why-thumb { width: 96px; height: 96px; flex-shrink: 0; overflow: hidden; }
.why-thumb img { width: 100%; height: 100%; object-fit: cover; }
.why-item h4 { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.5rem; }
.why-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; }

/* ======================== ABOUT ======================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; }
.about-img { min-height: 500px; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-text { padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.about-text p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
.pvms { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.pvm-item { display: flex; gap: 1rem; align-items: flex-start; }
.pvm-bar { width: 3px; flex-shrink: 0; background: var(--amber); border-radius: 99px; align-self: stretch; min-height: 36px; }
.pvm-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green-dark); margin-bottom: 2px; }
.pvm-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ======================== HERO ======================== */
.hero-section { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,43,26,0.88) 0%, rgba(13,43,26,0.55) 55%, rgba(13,43,26,0.15) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; width: 100%; }
.hero-text { max-width: 560px; }
.hero-text h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; color: var(--white); line-height: 1.15; }
.hero-text .tagline { margin-top: 1rem; font-size: clamp(1rem, 2vw, 1.4rem); font-weight: 600; color: var(--amber-light); }
.hero-text p { margin-top: 1.2rem; color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.75; font-weight: 300; max-width: 420px; }
.hero-btns { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-text { padding: 3rem 1.75rem; }
  .about-img { min-height: 280px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .page-hero, section { padding-left: 1.25rem; padding-right: 1.25rem; }
  .footer-inner, .footer-bar-inner { padding-left: 1.25rem; padding-right: 1.25rem; }
}

/* ======================== ANIMATIONS ======================== */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

