:root {
  --primary: #73B21A;
  --primary-dark: #5e9215;
  --bg: #fafaf7;
  --surface: #f3f4ee;
  --ink: #16181d;
  --muted: #6b7280;
  --border: #e6e7e1;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all .2s;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(115, 178, 26, .25);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-ghost {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--primary);
}

h1,
h2,
h3,
h4 {
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
}

h3 {
  font-size: 1.15rem;
}

section {
  padding: 70px 0;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-head h2 {
  margin: 12px 0 16px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* Topbar */
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Header */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}

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

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
}

.logo-text {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: .01em;
}

.logo-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--muted);
  text-transform: uppercase;
}

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

nav.main a {
  font-size: 14px;
  font-weight: 700;
  color: rgba(22, 24, 29, .8);
}

nav.main a:hover {
  color: var(--primary);
}

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

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.mobile-nav {
  display: none;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.mobile-nav a {
  display: block;
  padding: 10px 0;
  font-weight: 700;
}

/* Hero slider */
.hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
  background: #000;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s;
}

.slide.active {
  opacity: 1;
}

.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .75), rgba(0, 0, 0, .2));
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-content {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4.25rem);
  margin: 22px 0 18px;
}

.hero p {
  font-size: 1.1rem;
  opacity: .9;
  max-width: 600px;
}

.hero .btns {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dots {
  position: absolute;
  bottom: 30px;
  left: 20px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.dot {
  width: 22px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .4);
  border: none;
  cursor: pointer;
  transition: all .3s;
}

.dot.active {
  background: var(--primary);
  width: 38px;
}

.arrows {
  position: absolute;
  bottom: 24px;
  right: 20px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.arrows button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
}

.arrows button:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* Trust bar */
.trust {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.trust .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  text-align: center;
  padding: 32px 12px;
  border-right: 1px solid var(--border);
}

.stat:last-child {
  border-right: none;
}

.stat-v {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--primary);
}

.stat-l {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* Intro redesigned */
.intro {
  padding: 70px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 50px;
  align-items: start;
}

.intro h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.intro .bar {
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 22px 0 28px;
}

.pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
}

.pill-icon {
  width: 34px;
  height: 34px;
  background: rgba(115, 178, 26, .12);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--primary);
}

.intro-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 12px 30px rgba(115, 178, 26, .05);
}

.intro-card::before {
  content: '\f06c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: -18px;
  left: -18px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(115, 178, 26, .3);
}

.intro-card p {
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.intro-card strong {
  color: var(--primary);
}

/* Services */
.services {
  background: var(--surface);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid var(--border);
  transition: all .25s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 14px 30px rgba(115, 178, 26, .1);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(115, 178, 26, .12);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  font-size: .92rem;
}

.card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--primary);
  font-weight: 900;
  font-size: 14px;
}

/* Our work */
.work-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

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

.gallery figure {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}

.gallery figure:hover img {
  transform: scale(1.05);
}

.gallery figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  background: linear-gradient(to top, rgba(0, 0, 0, .85), transparent);
  color: #fff;
}

.gallery .tag {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--primary);
}

.gallery .title {
  font-size: 1.05rem;
  font-weight: 900;
  margin-top: 4px;
}

/* Why switch */
.why {
  background: var(--ink);
  color: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.why h2 {
  color: #fff;
}

.why p {
  color: rgba(255, 255, 255, .75);
  margin-top: 20px;
}

.compare {
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 18px;
  overflow: hidden;
}

.compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.compare-header div:first-child {
  background: rgba(255, 255, 255, .05);
  padding: 14px 18px;
  color: rgba(255, 255, 255, .7);
}

.compare-header div:last-child {
  background: var(--primary);
  padding: 14px 18px;
  color: #fff;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.compare-row div {
  padding: 18px;
  font-size: 14px;
}

.compare-row div:first-child {
  background: rgba(255, 255, 255, .03);
  color: rgba(255, 255, 255, .75);
}

.compare-row div:last-child {
  background: rgba(115, 178, 26, .12);
  font-weight: 700;
}

/* Reasons */
.reasons {
  background: var(--surface);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lead-block {
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
  font-size: 1.08rem;
  color: var(--muted);
}

.lead-block strong {
  color: var(--ink);
}

.reason {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid var(--border);
  transition: all .25s;
}

.reason:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.reason-icon {
  width: 46px;
  height: 46px;
  background: rgba(115, 178, 26, .12);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 18px;
}

.reason h4 {
  font-size: .95rem;
}

.reason p {
  color: var(--muted);
  font-size: .85rem;
  margin-top: 8px;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  position: relative;
  background: var(--surface);
  padding: 30px;
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.step-bg {
  position: absolute;
  top: -16px;
  right: -8px;
  font-size: 110px;
  font-weight: 900;
  color: rgba(115, 178, 26, .1);
  line-height: 1;
}

.step-tag {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--primary);
  position: relative;
}

.step h4 {
  margin: 8px 0 12px;
  position: relative;
}

.step p {
  color: var(--muted);
  font-size: .9rem;
  position: relative;
}

.step.cta {
  background: var(--primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.step.cta h4 {
  font-size: 1.4rem;
  margin: 8px 0;
}

.step.cta p {
  color: rgba(255, 255, 255, .9);
}

.step.cta .btn {
  background: #fff;
  color: var(--primary);
  align-self: flex-start;
  margin-top: 18px;
}

/* About */
.about {
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-imgs img {
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 18px;
  width: 100%;
}

.about-imgs img:last-child {
  margin-top: 40px;
}

.about ul {
  list-style: none;
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.about li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
}

.about li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  color: var(--primary);
  font-weight: 900;
}

/* Areas */
.areas-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 50px;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.area-list div {
  background: var(--surface);
  padding: 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Blog */
.blog {
  background: var(--surface);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.post {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all .25s;
}

.post:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(115, 178, 26, .1);
}

.post img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}

.post-body {
  padding: 24px;
}

.post-meta {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: flex;
  gap: 12px;
}

.post-meta .cat {
  color: var(--primary);
}

.post-meta .date {
  color: var(--muted);
}

.post h3 {
  margin: 12px 0;
}

.post p {
  color: var(--muted);
  font-size: .9rem;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  transition: border-color .2s;
}

.faq-item.open {
  border-color: var(--primary);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font: inherit;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}

.faq-q .icon {
  color: var(--primary);
  transition: transform .2s;
}

.faq-item.open .faq-q .icon {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 24px 20px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

/* Contact */
.contact {
  background: var(--ink);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact h2 {
  color: #fff;
}

.contact-info p {
  color: rgba(255, 255, 255, .75);
  margin: 20px 0 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(115, 178, 26, .2);
  border: 1px solid rgba(115, 178, 26, .4);
  display: grid;
  place-items: center;
  color: var(--primary);
}

.info-item.phone .info-icon {
  background: var(--primary);
  border: none;
  color: #fff;
}

.info-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}

.info-value {
  font-size: 1.1rem;
  font-weight: 900;
}

.form-card {
  background: #fff;
  color: var(--ink);
  border-radius: 24px;
  padding: 25px;
  box-shadow: 0 20px 40px rgba(115, 178, 26, .15);
}

.form-card h3 {
  font-size: 1.6rem;
  margin: 8px 0;
}

.form-card>p {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 22px;
}

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

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: rgba(22, 24, 29, .7);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  font-size: 14px;
  background: var(--surface);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(115, 178, 26, .2);
}

.submit {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font: inherit;
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
}

.submit:hover {
  background: var(--primary-dark);
}

.disclaimer {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
}

/* Footer */
footer {
  background: var(--ink);
  color: #fff;
  padding: 60px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.foot-grid {
  display: grid;
  grid-template-columns: 4fr 2fr 2fr 4fr;
  gap: 30px;
}

footer h5 {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
}

footer ul li a:hover {
  color: var(--primary);
}

.foot-bottom {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
}

/* Responsive */
@media (max-width: 980px) {

  .intro-grid,
  .why-grid,
  .about-grid,
  .areas-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cards,
  .gallery,
  .process-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }

  nav.main {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav-cta .btn {
    display: none;
  }

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

@media (max-width: 640px) {
  section {
    padding: 50px 0;
  }

  .cards,
  .gallery,
  .process-grid,
  .blog-grid,
  .reasons-grid,
  .area-list,
  .about-imgs {
    grid-template-columns: 1fr;
  }

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

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

  .about-imgs img:last-child {
    margin-top: 0;
  }

  .compare-header div,
  .compare-row div {
    padding: 12px;
    font-size: 12px;
  }

  .foot-grid {
    grid-template-columns: 1fr;
  }

  .topbar .container {
    font-size: 11px;
  }

  .topbar span.hide-sm {
    display: none;
  }
}

/* ============================================================
     INNER PAGE COMPONENTS (service + location pages)
     ============================================================ */

/* Sub hero (single image banner) */
.subhero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}

.subhero .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subhero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .55) 45%, rgba(0, 0, 0, .25) 100%);
}

.subhero .container {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 50px;
  padding-bottom: 48px;
}

.crumb {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.crumb a:hover {
  color: var(--primary);
}

.crumb i {
  font-size: 9px;
  opacity: .55;
}

.subhero .hero-badge {
  background: var(--primary);
}

.subhero h1 {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  max-width: 880px;
  margin: 20px 0 18px;
}

.subhero p.sub {
  font-size: 1.12rem;
  max-width: 660px;
  opacity: .92;
  line-height: 1.55;
}

.subhero .btns {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Split: text + image */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.split-media img {
  width: 100%;
  border-radius: 22px;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(22, 24, 29, .12);
}

.split h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.split .bar {
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 20px 0 24px;
}

.split p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.split p strong {
  color: var(--ink);
}

/* Checklist / benefits */
.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.check-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  transition: border-color .2s, transform .2s;
}

.check-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.check-item .ck {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(115, 178, 26, .14);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 13px;
  margin-top: 2px;
}

.check-item p {
  font-size: .96rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
}

.checklist.on-dark .check-item {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .12);
}

.checklist.on-dark .check-item:hover {
  border-color: var(--primary);
}

.checklist.on-dark .check-item p {
  color: rgba(255, 255, 255, .9);
}

/* Nearby areas (internal linking) */
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.nearby-grid a {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 16px;
  font-weight: 800;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .2s;
}

.nearby-grid a:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(115, 178, 26, .1);
}

.nearby-grid a i {
  color: var(--primary);
}

.nearby-grid a .home-tag {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-left: auto;
}

@media (max-width: 980px) {
  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .checklist {
    grid-template-columns: 1fr;
  }

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

  .subhero {
    min-height: 44vh;
  }
}

@media (max-width: 640px) {
  .nearby-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
     SERVICE PAGE SIGNATURE (split hero · zigzag · timeline)
     ============================================================ */
.hero-split {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.hero-split .container {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
  padding-top: 46px;
  padding-bottom: 46px;
}

.hero-split .crumb {
  color: rgba(255, 255, 255, .7);
}

.hero-split h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 18px 0 16px;
}

.hero-split p.sub {
  color: rgba(255, 255, 255, .8);
  font-size: 1.1rem;
  max-width: 560px;
  line-height: 1.55;
}

.hero-split .btns {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-split .media {
  position: relative;
}

.hero-split .media img {
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 5/4;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .45);
}

.hero-split .float-stat {
  position: absolute;
  left: -20px;
  bottom: 26px;
  background: var(--primary);
  color: #fff;
  border-radius: 18px;
  padding: 16px 22px;
  box-shadow: 0 16px 30px rgba(115, 178, 26, .4);
}

.hero-split .float-stat b {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
}

.hero-split .float-stat span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .92;
}

.zigzag {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.zz-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.zz-row:nth-child(even) .zz-media {
  order: 2;
}

.zz-media img {
  width: 100%;
  border-radius: 22px;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 16px 36px rgba(22, 24, 29, .12);
}

.zz-body .num {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  color: var(--primary);
}

.zz-body h3 {
  font-size: 1.55rem;
  margin: 8px 0 12px;
}

.zz-body p {
  color: var(--muted);
  font-size: 1.02rem;
}

.zz-body .btn {
  margin-top: 18px;
}

.timeline {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--border);
}

.tl-step {
  position: relative;
  padding: 0 0 34px 78px;
}

.tl-step:last-child {
  padding-bottom: 0;
}

.tl-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 10px 22px rgba(115, 178, 26, .3);
  z-index: 1;
}

.tl-step h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.tl-step p {
  color: var(--muted);
  font-size: 1rem;
}

.timeline .tl-cta {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .hero-split .container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-split .media img {
    aspect-ratio: 16/10;
  }

  .hero-split .float-stat {
    left: 16px;
  }

  .zz-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .zz-row:nth-child(even) .zz-media {
    order: 0;
  }
}

@media (max-width: 640px) {
  .tl-step {
    padding-left: 64px;
  }

  .tl-num {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .timeline::before {
    left: 23px;
  }
}

/* ============================================================
     LOCATION PAGE SIGNATURE (local strip · directory · stepper)
     ============================================================ */
.local-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.local-strip span {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.local-strip span i {
  color: var(--primary);
}

.svc-index {
  border-top: 1px solid var(--border);
}

.svc-index .row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 26px 8px;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}

.svc-index .row:hover {
  background: var(--surface);
}

.svc-index .ic {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(115, 178, 26, .12);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 19px;
}

.svc-index .txt h3 {
  font-size: 1.18rem;
}

.svc-index .txt p {
  color: var(--muted);
  font-size: .94rem;
  margin-top: 4px;
  max-width: 64ch;
}

.svc-index .go {
  flex: none;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--ink);
  font-weight: 800;
  font-size: .85rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}

.svc-index .go::after {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 11px;
}

.svc-index .go:hover,
.svc-index .row:hover .go {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Reusable CTA banner */
.cta-banner {
  margin-top: 50px;
  background: var(--ink);
  border-radius: 24px;
  padding: 38px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}

.cta-banner .cta-copy h3 {
  color: #fff;
  font-size: 1.5rem;
  max-width: 600px;
}

.cta-banner .cta-copy p {
  color: rgba(255, 255, 255, .7);
  margin-top: 8px;
  font-size: .98rem;
}

.cta-banner .btn {
  white-space: nowrap;
}

.stepper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.stepper .st {
  text-align: center;
  position: relative;
  padding-top: 6px;
}

.stepper .st::before {
  content: '';
  position: absolute;
  top: 30px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.stepper .st:first-child::before {
  display: none;
}

.stepper .st .dot {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 900;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}

.stepper .st h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.stepper .st p {
  color: var(--muted);
  font-size: .85rem;
}

@media (max-width: 720px) {
  .svc-index .row {
    grid-template-columns: 50px 1fr;
  }

  .svc-index .go {
    grid-column: 2;
    justify-self: start;
    margin-top: 10px;
  }
}

@media (max-width: 980px) {
  .stepper {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 32px;
  }

  .stepper .st:nth-child(4)::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .stepper {
    grid-template-columns: repeat(2, 1fr);
  }

  .stepper .st:nth-child(odd)::before {
    display: none;
  }
}

/* ============================================================
     NAV DROPDOWNS + MOBILE ACCORDION
     ============================================================ */
nav.main .has-drop {
  position: relative;
}

nav.main .drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: rgba(22, 24, 29, .8);
  background: none;
  border: none;
  font-family: inherit;
}

nav.main .drop-toggle i {
  font-size: 9px;
  transition: transform .2s;
}

nav.main .has-drop:hover .drop-toggle {
  color: var(--primary);
}

nav.main .has-drop:hover .drop-toggle i {
  transform: rotate(180deg);
}

nav.main .drop {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(22, 24, 29, .14);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all .2s;
  z-index: 60;
}

nav.main .has-drop:hover .drop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

nav.main .drop a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(22, 24, 29, .82);
}

nav.main .drop a:hover {
  background: var(--surface);
  color: var(--primary);
}

nav.main .drop a i {
  color: var(--primary);
  font-size: 13px;
  width: 16px;
  text-align: center;
}

nav.main a.active,
nav.main .drop a.active {
  color: var(--primary);
}

.mobile-nav .m-group>a,
.mobile-nav>a {
  display: block;
  padding: 12px 0;
  font-weight: 800;
  border-bottom: 1px solid var(--border);
}

.mobile-nav .m-sub {
  padding-left: 14px;
}

.mobile-nav .m-sub a {
  display: block;
  padding: 9px 0;
  font-weight: 700;
  font-size: .92rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.mobile-nav .m-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 14px 0 4px;
}

/* ============================================================
     CONTACT ASSURANCE (fills the form's left column)
     ============================================================ */
.assure {
  margin-top: 30px;
  border-top: 1px solid var(--border);
  padding-top: 26px;
}

.assure h4 {
  font-size: 1rem;
  margin-bottom: 16px;
}

.assure-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.assure-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.assure-step .n {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(115, 178, 26, .14);
  color: var(--primary);
  font-weight: 900;
  font-size: 13px;
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.assure-step p {
  font-size: .92rem;
  color: var(--muted);
}

.assure-step b {
  color: var(--ink);
  display: block;
  font-size: .96rem;
}

.assure-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.assure-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 800;
}

.assure-badges span i {
  color: var(--primary);
}

/* ============================================================
     MAP
     ============================================================ */
.map-wrap {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 36px rgba(22, 24, 29, .1);
}

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

/* ============================================================
     BLOG
     ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.post {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all .25s;
  display: flex;
  flex-direction: column;
}

.post:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 16px 34px rgba(115, 178, 26, .1);
}

.post .thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.post .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.post:hover .thumb img {
  transform: scale(1.05);
}

.post-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.post .cat {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(115, 178, 26, .1);
  padding: 5px 10px;
  border-radius: 999px;
}

.post .date {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.post h3 {
  font-size: 1.12rem;
  line-height: 1.3;
}

.post p {
  color: var(--muted);
  font-size: .92rem;
  margin-top: 10px;
}

.post .read {
  margin-top: auto;
  padding-top: 16px;
  color: var(--primary);
  font-weight: 900;
  font-size: 13px;
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.post:hover .read i {
  transform: translateX(3px);
}

.post .read i {
  transition: transform .2s;
}

/* ============================================================
     GALLERY PAGE (masonry-ish)
     ============================================================ */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gal-grid figure {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.gal-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}

.gal-grid figure:hover img {
  transform: scale(1.06);
}

.gal-grid .tall {
  grid-row: span 2;
}

.gal-grid .wide {
  grid-column: span 2;
}

/* ============================================================
     ABOUT PAGE
     ============================================================ */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 54px;
  align-items: center;
}

.about-hero-grid .media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-hero-grid .media img {
  border-radius: 18px;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about-hero-grid .media img:nth-child(1) {
  margin-top: 28px;
}

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

.value {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
}

.value .vi {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(115, 178, 26, .12);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 21px;
  margin-bottom: 18px;
}

.value h4 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.value p {
  color: var(--muted);
  font-size: .94rem;
}

/* ============================================================
     FOOTER SOCIAL
     ============================================================ */
.foot-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.foot-social a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  display: grid;
  place-items: center;
  color: #fff;
  transition: all .2s;
}

.foot-social a:hover {
  background: var(--primary);
}

/* new css */

section.subhero.about-sec {
  display: block;
}

/* homepage */
section.home-cont .assure-step {
  align-items: center;
}

section.home-cont .contact-info p {
  margin: 0px 0 0px;
}

#badge-text span {
  color: #16181d;
}

.assure-step b {
  color: #6b7280;
  display: block;
  font-size: .96rem;
}

/* service */
#service-box .zz-media img {
  aspect-ratio: 8/4;
}

/* slider home page */

.blog-slider {
  position: relative;
  padding: 30px 0;
  overflow: hidden;
}



/* Post styling */
.post {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.post img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* NAV BUTTONS */
.blog-slider .swiper-button-next,
.blog-slider .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 42px;
  height: 42px;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #333;

  transition: all 0.3s ease;
}

/* POSITION FIX */
.blog-slider .swiper-button-prev {
  left: 10px;
}

.blog-slider .swiper-button-next {
  right: 10px;
}

/* ICON */
.blog-slider .swiper-button-next::after,
.blog-slider .swiper-button-prev::after {
  font-size: 14px;
  font-weight: bold;
}

/* HOVER */
.blog-slider .swiper-button-next:hover,
.blog-slider .swiper-button-prev:hover {
  background: #4CAF50;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

/* PAGINATION */
.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #000;
}

.swiper-pagination-bullet-active {
  background: #4CAF50 !important;
  /* 🔥 change to your brand color */
}

/* Move dots down (create space above) */
.blog-slider .swiper-pagination {
  margin-top: 20px;
  /* adjust as needed */
  position: relative;
}

/* 📱 MOBILE */
@media (max-width: 767px) {
  .blog-slider {
    padding: 20px 0;
  }

  .post img {
    height: 180px;
  }

  /* hide arrows */
  .blog-slider .swiper-button-next,
  .blog-slider .swiper-button-prev {
    display: none;
  }
}

/* 📱 TABLET */
@media (768px - 1023px) {
  .post img {
    height: 200px;
  }
}

/* 💻 DESKTOP */
@media (min-width: 1024px) {
  .post img {
    height: 220px;
  }
}

/* pop up css */
/* LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.active {
  display: flex;
}

/* IMAGE */
.lightbox-img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
}

/* CLOSE BUTTON */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}

/* NAV BUTTONS */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: #fff;
  color: #000;
}

/*  */

@media (max-width: 980px) {

  .blog-grid,
  .gal-grid,
  .values {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gal-grid .wide {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {

  .blog-grid,
  .gal-grid,
  .values {
    grid-template-columns: 1fr;
  }

  .gal-grid {
    grid-auto-rows: 240px;
  }

  .gal-grid .tall {
    grid-row: span 1;
  }

  .map-wrap iframe {
    height: 320px;
  }
}





.mobile-nav .m-sub {
    display: none;
    padding-left: 15px;
}

.mobile-nav .m-group.active .m-sub {
    display: block;
}

.mobile-nav .m-label {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.mobile-nav .m-label::after {
    content: '+';
    font-size: 18px;
}

.mobile-nav .m-group.active .m-label::after {
    content: '-';
}


.form-card br {
    display: none;
}
.wpcf7-spinner {
    position: absolute!important;
}