:root {
  --green-900: #0f3322;
  --green-800: #184a2e;
  --green-700: #1f5e36;
  --green-600: #2d7a45;
  --green-500: #3f9655;
  --green-100: #ecf6ee;
  --cream: #f8f5ed;
  --text: #17221a;
  --muted: #4f5d52;
  --white: #ffffff;
  --card: #ffffff;
  --radius: 16px;
  --shadow: 0 14px 34px rgba(16, 54, 36, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", Tahoma, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, 92%); margin: 0 auto; }

.topbar { background: var(--green-700); color: var(--white); font-size: 0.92rem; }
.topbar-inner {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  flex-wrap: wrap;
}

header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 27, 18, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, border-color 0.25s ease;
}

header.site-header.scrolled,
body.inner-page header.site-header {
  background: rgba(13, 43, 28, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 82px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  padding: 4px;
}

.brand strong { font-size: 1rem; display: block; }
.brand span { font-size: 0.78rem; opacity: 0.9; }

nav.primary-nav { margin-left: auto; }
nav.primary-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
}

nav.primary-nav li { position: relative; }

nav.primary-nav a {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  font-weight: 500;
}

nav.primary-nav a:hover,
nav.primary-nav a.active,
nav.primary-nav .has-submenu:hover > a {
  color: #d8f6de;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 245px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 10px;
  display: none;
}

nav.primary-nav .submenu a {
  color: #174229;
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
}

nav.primary-nav .submenu a:hover { background: #ecf6ee; color: #0f3322; }
nav.primary-nav .submenu a.active { background: #ecf6ee; color: #0f3322; }
.has-submenu:hover .submenu { display: block; }
.has-submenu.open .submenu { display: block; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.92rem;
  font-weight: 500;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn.primary { background: var(--green-500); color: var(--white); }
.btn.primary:hover { background: #4cae64; }
.btn.secondary { border: 2px solid rgba(255, 255, 255, 0.8); color: var(--white); }
.btn.secondary:hover { background: rgba(255, 255, 255, 0.12); }
.btn.nav-cta { padding: 10px 16px; font-size: 0.9rem; }

.mobile-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
  border-radius: 10px;
  padding: 9px 12px;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  place-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero video,
.hero .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58) saturate(0.92) contrast(1.03);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 25, 17, 0.45) 0%, rgba(7, 24, 16, 0.76) 52%, rgba(6, 20, 14, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 132px 0 78px;
}

.kicker {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

h1, h2, h3, h4 { margin-top: 0; line-height: 1.24; color: #112b1d; }
.hero h1 { color: var(--white); font-size: clamp(2rem, 3.3vw, 3.4rem); margin-bottom: 18px; }
.hero p { font-size: 1.1rem; max-width: 860px; margin: 0 auto 28px; color: rgba(255, 255, 255, 0.9); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.section { padding: 72px 0; }
.section.compact { padding: 54px 0; }
.section.alt { background: #f2f7f3; }
.section.dark { background: var(--green-900); color: #f4fbf5; }
.section.dark h2, .section.dark h3 { color: #ffffff; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.bio-list { display: grid; gap: 18px; }
.bio-card p { margin-bottom: 0; }
.values-note { margin-top: 18px; margin-bottom: 0; }

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card h3 { margin-bottom: 10px; }
.service-card { overflow: hidden; padding: 0; }
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-card .inner { padding: 20px; }

.badges { display: grid; gap: 12px; }
.badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 16px;
}

.list-check { padding-left: 0; list-style: none; }
.list-check li { padding-left: 30px; position: relative; margin-bottom: 12px; }
.list-check li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green-600);
  font-weight: 700;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.cta-box {
  background: linear-gradient(130deg, #1f5e36 0%, #103624 100%);
  color: #f2fff4;
  border-radius: 20px;
  padding: 30px;
}
.cta-box h3, .cta-box p { color: #f2fff4; }

.faq-item {
  border: 1px solid #d5e5d8;
  border-radius: 12px;
  background: #fff;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  border: 0;
  background: #fff;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  padding: 16px 18px;
  cursor: pointer;
}
.faq-answer { padding: 0 18px 16px; color: var(--muted); display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question { background: #f4faf6; }

.info-list { display: grid; gap: 12px; }
.info-row {
  background: #fff;
  border: 1px solid #d9e7dd;
  border-radius: 12px;
  padding: 14px 16px;
}
.hiring-card { margin-top: 18px; }
.hiring-card p:last-child { margin-bottom: 0; }

.contact-embed {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 730px;
}

.map-wrap {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  border: 0;
  min-height: 420px;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.area-list div {
  background: #ffffff;
  border: 1px solid #d6e6da;
  border-radius: 10px;
  padding: 10px 12px;
}

footer {
  background: #0b2619;
  color: #d8eadf;
  padding: 52px 0 18px;
}

footer a { color: #d8eadf; }
footer h4 { color: #f1fff4; margin-bottom: 10px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 18px;
}

.footer-bottom {
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
  font-size: 0.9rem;
  color: #a9c8b4;
}

.footer-brand-logo {
  width: 120px;
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  padding: 4px;
}

@media (max-width: 1150px) {
  .nav-actions { display: none; }
}

@media (max-width: 1000px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }

  nav.primary-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: #143d29;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
  nav.primary-nav.open { display: block; }
  nav.primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 4%;
    gap: 14px;
  }
  .submenu {
    position: static;
    display: block;
    background: #ffffff;
    box-shadow: none;
    min-width: 0;
    padding: 8px;
    margin-top: 6px;
    border-radius: 10px;
  }
  nav.primary-nav .submenu a {
    color: #174229;
    padding: 8px 10px;
  }

  .mobile-toggle { display: inline-block; }
}

@media (max-width: 640px) {
  .hero p { font-size: 1rem; }
  .hero { min-height: 76vh; }
  .gallery { grid-template-columns: 1fr; }
}
