:root {
  --green-900: #0F2E24;
  --green-800: #163A2D;
  --green-700: #1E4A38;
  --green-600: #2B6A52;
  --ink: #0B1220;
  --muted: #5A6B63;
  --bg: #F6F8F7;
  --card: #FFFFFF;
  --line: #E3EAE6;
  --shadow: 0 10px 30px rgba(11, 18, 32, .08);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1200px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px
}

.page {
  padding-top: 84px
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 248, 247, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

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

.brand img {
  height: 60px;
  width: auto
}

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

.nav a {
  font-weight: 600;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 10px;
}

.nav a:hover {
  background: #ffffffcc
}

.nav a.active {
  background: #ffffff;
  border: 1px solid var(--line)
}

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center
}

.btn {
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px)
}

.btn-primary {
  background: var(--green-900);
  color: #EAF2EE;
  box-shadow: 0 10px 20px rgba(15, 46, 36, .18)
}

.btn-primary:hover {
  background: var(--green-800)
}

.btn-outline {
  background: transparent;
  color: var(--green-900);
  border-color: var(--green-900)
}

.btn-outline:hover {
  background: #ffffff
}

.btn-soft {
  background: #163c2e;
}

.btn-soft:hover {
  background: #565a57
}

/* Hero */
.hero {
  padding: 36px 0 18px;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media {
  position: relative;
  height: 420px;
  background: #dfe8e2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 46, 36, .82) 0%, rgba(15, 46, 36, .50) 45%, rgba(15, 46, 36, .10) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  padding: 46px;
  display: flex;
  align-items: flex-start;
}

.hero-left {
  max-width: 560px;
  color: #EAF2EE
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(234, 242, 238, .22);
  background: rgba(11, 18, 32, .18);
  margin-bottom: 14px;
}

.h1 {
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: 44px;
  line-height: 1.05;
  margin: 0 0 12px;
  font-weight: 800
}

.lead {
  margin: 0 0 20px;
  color: rgba(234, 242, 238, .92);
  line-height: 1.5
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.hero-actions .btn-outline {
  border-color: #EAF2EE;
  color: #EAF2EE
}

.hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, .12)
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 16px;
  border-top: 1px solid var(--line);
  background: linear-gradient(#fff, #fbfcfb);
}

.trust-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.trust-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(15, 46, 36, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-900);
  font-weight: 900;
}

.trust-text {
  font-weight: 700;
  font-size: 13px
}

.trust-sub {
  font-size: 12px;
  color: var(--muted)
}

/* Sections */
.section {
  padding: 26px 0
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.h2 {
  font-family: Poppins, Inter, system-ui, sans-serif;
  font-size: 28px;
  margin: 0;
  font-weight: 800
}

.p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6
}

.grid {
  display: grid;
  gap: 14px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr)
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr)
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(11, 18, 32, .06);
}

.card-pad {
  padding: 18px
}

.card-title {
  font-weight: 800;
  font-size: 16px;
  margin: 0 0 8px
}

.card-desc {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px
}

.card-media {
  height: 160px;
  background: #e6efe9
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 12px;
  padding: 8px 10px;
  background: rgba(15, 46, 36, .08);
  border: 1px solid rgba(15, 46, 36, .18);
  border-radius: 999px;
  color: var(--green-900);
}

/* CTA band */
.cta-band {
  margin: 26px 0 8px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background:
    linear-gradient(90deg, rgba(15, 46, 36, .92), rgba(15, 46, 36, .72)),
    url("../img/hero.jpg.svg");
  background-size: cover;
  background-position: center;
}

.cta-inner {
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #EAF2EE;
}

.cta-inner .h2 {
  color: #EAF2EE
}

.cta-inner .p {
  color: rgba(234, 242, 238, .9)
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

/* Footer */
.site-footer {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  background: #0f1f19;
  color: #EAF2EE;
}

.footer-inner {
  padding: 26px 0
}

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

.footer-title {
  font-weight: 900;
  margin: 0 0 10px
}

.footer-link {
  display: block;
  color: rgba(234, 242, 238, .86);
  padding: 6px 0
}

.footer-link:hover {
  color: #fff
}

.small {
  color: rgba(234, 242, 238, .70);
  font-size: 13px;
  line-height: 1.6
}

.footer-bottom {
  border-top: 1px solid rgba(234, 242, 238, .12);
  padding-top: 14px;
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap
}

/* Services detail list */
.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px
}

.service-row {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 22px rgba(11, 18, 32, .05);
}

.service-row .pill {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(15, 46, 36, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--green-900);
}

.service-row h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 900
}

.service-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px
}

.service-row .service-meta {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

/* FAQ */
.faq {
  display: grid;
  gap: 10px
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6
}

/* Areas */
.areas-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 14px
}

.list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.list h3 {
  margin: 0 0 10px;
  font-weight: 900
}

.list ul {
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--muted);
  line-height: 1.8
}

.embed {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.embed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 14px
}

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 22px rgba(11, 18, 32, .05);
}

label {
  display: block;
  font-weight: 800;
  font-size: 13px;
  margin: 10px 0 6px
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 12px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: #fbfcfb;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(15, 46, 36, .55);
  box-shadow: 0 0 0 4px rgba(15, 46, 36, .10)
}

textarea {
  min-height: 110px;
  resize: vertical
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 22px rgba(11, 18, 32, .05);
}

.gallery-item img {
  height: 210px;
  width: 100%;
  object-fit: cover
}

.gallery-item .cap {
  padding: 12px;
  font-weight: 800;
  font-size: 14px
}

/* Mobile */
.mobile-toggle {
  display: none
}

@media (max-width: 980px) {
  .hero-media {
    height: 460px
  }

  .trust-row {
    grid-template-columns: repeat(2, 1fr)
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr)
  }

  .service-list {
    grid-template-columns: 1fr
  }

  .areas-wrap {
    grid-template-columns: 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width: 720px) {
  .nav {
    display: none
  }

  .mobile-toggle {
    display: inline-flex
  }

  .hero-content {
    padding: 26px
  }

  .h1 {
    font-size: 34px
  }

  .grid-3 {
    grid-template-columns: 1fr
  }

  .gallery-grid {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }
}

/* ============================================================
   BUTTON COLOR & CONTRAST FIXES
   ============================================================ */

/* 1. Forces white text on all dark-colored buttons */
.btn-primary,
.btn-soft,
.btn-dark,
.hero-actions .btn:first-child,
.cta-actions .btn:first-child {
  background-color: #0F2E24 !important;
  /* Brand Dark Green */
  color: #FFFFFF !important;
  /* Force pure white text */
  border: none !important;
  text-decoration: none !important;
}

/* 2. Fixes the "Outline" buttons (like View Our Work) */
/* Ensures they have a visible border and readable text */
.btn-outline,
.hero-actions .btn-outline,
.hero-actions .btn:last-child {
  background-color: transparent !important;
  color: #FFFFFF !important;
  /* Keeping white for over-image placement */
  border: 2px solid #FFFFFF !important;
  /* White border for high contrast on image */
}

/* 3. Mobile Button Fix (Stacks them so they don't squash) */
@media (max-width: 768px) {

  .hero-actions,
  .cta-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100% !important;
    padding: 14px 20px !important;
    justify-content: center !important;
  }

  /* If the "Outline" button lands on a white background on mobile, 
       this makes it switch to dark green so it's visible */
  .hero-content .btn-outline {
    color: #0F2E24 !important;
    border-color: #0F2E24 !important;
  }
}