/* =============================================
   HOME.CSS — Homepage-specific styles only
   All global styles remain in style.css
   ============================================= */

/* ─────────────────────────────────────────────
   LOGO — bigger, company name visible
───────────────────────────────────────────── */
.nav-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}
.nav-logo {
  margin-right: 24px !important;
}
.nav-logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-logo-name {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #0a2e18;
  line-height: 1.15;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.nav-logo-tagline {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #1a6b3c;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Taller navbar to fit 64px logo */
.navbar-top {
  height: 84px;
}

/* Tighter gap so everything fits */
.nav-menu {
  gap: 16px !important;
}

/* Compact CTA */
.nav-cta {
  margin-left: 12px !important;
  padding: 10px 18px !important;
  font-size: 13px !important;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   HERO — full bg image on all screen sizes
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background: #0b2516;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 28, 15, 0.93) 0%,
    rgba(8, 28, 15, 0.82) 45%,
    rgba(8, 28, 15, 0.45) 75%,
    rgba(8, 28, 15, 0.25) 100%
  );
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-brand {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #6ee89a;
  border-left: 3px solid #6ee89a;
  padding: 0 0 0 12px;
  margin-bottom: 16px;
  display: inline-block;
}
.hero-label {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
  display: block;
}
.hero-content h1 {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 20px;
}
.hero-value-prop {
  font-family: "Lato", sans-serif;
  font-size: 17px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: var(--green-light);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.25s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-hero-primary:hover {
  background: #2d9a58;
}
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition:
    background 0.25s,
    border-color 0.25s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}
.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.hero-img-main {
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-top,
.hero-img-bottom {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─────────────────────────────────────────────
   COMPANY NAME PROMINENCE
───────────────────────────────────────────── */
.who-company-name {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.who-company-name::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--green-light);
  flex-shrink: 0;
}
.impact-company-name {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.impact-company-name::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--green-light);
  flex-shrink: 0;
}
.why-company-intro {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--green-light);
}
.why-company-intro strong {
  color: var(--green-dark);
  font-weight: 800;
}

/* ─────────────────────────────────────────────
   CORE SERVICES STRIP
───────────────────────────────────────────── */
.core-services {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.core-services-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
}
.core-service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 36px 44px;
}
.core-service-icon {
  width: 52px;
  height: 52px;
  background: #ebf7f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  flex-shrink: 0;
}
.core-service-item h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.3;
  margin-bottom: 8px;
}
.core-service-item p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 0;
}
.core-service-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 20px 0;
}

/* ─────────────────────────────────────────────
   TRUSTED BY
───────────────────────────────────────────── */
.trusted-by {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}
.trusted-by h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.trusted-by > .container > p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 44px;
}
.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.logo-strip-item {
  opacity: 0.6;
  filter: grayscale(1);
  transition:
    opacity 0.2s,
    filter 0.2s;
  cursor: default;
}
.logo-strip-item:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* ─────────────────────────────────────────────
   CONTACT INFO STRIP
───────────────────────────────────────────── */
.contact-strip {
  background: var(--green-dark);
}
.contact-strip-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
}
.contact-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 24px;
}
.contact-strip-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-strip-item h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 5px;
}
.contact-strip-item p,
.contact-strip-item a {
  font-family: "Lato", sans-serif;
  font-size: 13.5px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.55;
}
.contact-strip-item a:hover {
  color: var(--green-light);
}
.contact-strip-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  align-self: stretch;
  margin: 16px 0;
}

/* ─────────────────────────────────────────────
   RESPONSIVE — homepage overrides
───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav-logo-tagline {
    display: none;
  }
  .core-service-item {
    padding: 28px 28px;
  }
  .contact-strip-item {
    padding: 24px 20px;
  }
}

@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
  }
  .hero-images {
    display: none;
  }
  .hero {
    min-height: 520px;
  }
  .hero-content h1 {
    font-size: 34px;
  }
  .hero-value-prop {
    font-size: 15px;
    max-width: 100%;
  }
  .core-services-grid {
    grid-template-columns: 1fr;
  }
  .core-service-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  .core-service-item {
    padding: 24px 20px;
  }
  .contact-strip-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-strip-divider {
    display: none;
  }
  .contact-strip-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 20px;
  }
  .contact-strip-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 600px) {
  .nav-logo-img {
    width: 48px;
    height: 48px;
  }
  .nav-logo-name {
    font-size: 13px;
  }
  .navbar-top {
    height: 72px;
  }
  .hero {
    min-height: 480px;
  }
  .hero-brand {
    font-size: 10px;
    letter-spacing: 2.5px;
  }
  .hero-content h1 {
    font-size: 28px;
  }
  .hero-value-prop {
    font-size: 14px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    justify-content: center;
  }
  .logo-strip {
    gap: 16px;
  }
  .contact-strip-grid {
    grid-template-columns: 1fr;
  }
  .contact-strip-item:nth-child(odd) {
    border-right: none;
  }
}
