:root {
  --green-dark: #123A1E;
  --green: #2E8B3D;
  --green-mid: #226B32;
  --green-light: #6FBF5E;
  --black: #1A1A1A;
  --white: #FFFFFF;
  --off-white: #F7F8F4;
  --gray: #5B5F5A;
  --border: #E1E5DD;
  --shadow: 0 10px 30px rgba(18, 58, 30, 0.12);
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--black);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--green-dark);
}

p { margin: 0 0 1em; }

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

a { color: inherit; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: 1180px;
  margin: 0 auto;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

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

.brand-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--black);
  line-height: 1.15;
}

.brand-text span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--green);
  text-transform: uppercase;
}

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

nav.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--green);
  border-color: var(--green);
}

.call-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-mid);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  padding: 11px 18px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(46, 139, 61, 0.35);
  transition: background 0.15s, transform 0.15s;
  flex-shrink: 0;
}

.call-now-btn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.call-now-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  animation: ring 2.4s infinite;
  transform-origin: top center;
}

@keyframes ring {
  0%, 100% { transform: rotate(0); }
  4% { transform: rotate(18deg); }
  8% { transform: rotate(-16deg); }
  12% { transform: rotate(14deg); }
  16% { transform: rotate(-10deg); }
  20% { transform: rotate(6deg); }
  24% { transform: rotate(0); }
}

.call-now-number { display: inline; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}

.btn-primary {
  background: var(--green-mid);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(46, 139, 61, 0.3);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }

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

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.8) 100%);
  z-index: -1;
}

.hero-content { max-width: 680px; padding: 60px 0; }

.hero .eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 0.4em;
}

.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}
.hero-rating .stars { color: #FFC94A; letter-spacing: 2px; }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.section-dark {
  background: var(--green-dark);
  color: var(--white);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-alt { background: var(--white); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.eyebrow-tag {
  display: inline-block;
  color: var(--green-mid);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
.section-head p { color: var(--gray); }

/* ---------- Grid / Cards ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.flex-row-stretch {
  display: flex;
  align-items: stretch;
  gap: 40px;
}
.flex-row-stretch > * { flex: 1 1 0; min-width: 0; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.service-card img {
  border-radius: var(--radius) var(--radius) 0 0;
  height: 210px;
  width: 100%;
  object-fit: cover;
}
.service-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card .service-card-body { padding: 24px; }
.service-card ul { padding-left: 20px; margin: 12px 0 0; color: var(--gray); }
.service-card ul li { margin-bottom: 6px; }

.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(46,139,61,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.icon-badge svg { width: 24px; height: 24px; color: var(--green); }

/* ---------- Reviews ---------- */
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
}
.review-stars { color: #FFC94A; letter-spacing: 2px; margin-bottom: 10px; font-size: 1rem; }
.review-quote { font-style: italic; color: var(--black); margin-bottom: 14px; }
.review-author { font-weight: 700; font-size: 0.9rem; }
.review-date { font-size: 0.8rem; color: var(--gray); }

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 999px;
  padding: 10px 20px;
  box-shadow: var(--shadow);
  font-weight: 700;
}
.rating-badge .stars { color: #FFC94A; letter-spacing: 2px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.2s;
}
.gallery-grid a { display: block; overflow: hidden; border-radius: 10px; }
.gallery-grid a:hover img { transform: scale(1.06); }

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(18,58,30,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.gallery-lightbox.open { display: flex; }
.gallery-lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 10px;
  width: auto;
  height: auto;
}
.gallery-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}

/* ---------- About ---------- */
.about-photo {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.service-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.fill-photo {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.job-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.stat-row {
  display: flex;
  gap: 30px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.stat { text-align: left; }
.stat strong { display: block; font-size: 1.7rem; color: var(--green-light); font-family: 'Poppins', sans-serif; }
.stat span { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.section-alt .stat span, .card .stat span { color: var(--gray); }

/* ---------- Forms ---------- */
.form-field { margin-bottom: 16px; text-align: left; }
.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  background: var(--white);
  color: var(--black);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
}
.form-field textarea { resize: vertical; min-height: 100px; }

.form-status {
  margin-top: 14px;
  font-size: 0.92rem;
  padding: 12px 14px;
  border-radius: 10px;
  display: none;
}
.form-status.show { display: block; }
.form-status.error {
  background: #FDEBEA;
  color: #B3261E;
  border: 1px solid #F3C6C3;
}
.form-status.success {
  background: #E9F7EC;
  color: var(--green-mid);
  border: 1px solid #BFE5C6;
}

.form-success-block { text-align: center; padding: 20px 0; }
.form-success-block .icon-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
}
.form-fallback-call {
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--gray);
}
.form-fallback-call a { color: var(--green); font-weight: 700; text-decoration: none; }

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 34px;
}

.contact-info-list { list-style: none; padding: 0; margin: 20px 0 0; }
.contact-info-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.contact-info-list .icon-badge { margin-bottom: 0; flex-shrink: 0; }
.contact-info-list a { text-decoration: none; color: var(--black); font-weight: 600; }
.contact-info-list a:hover { color: var(--green); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--green-mid);
  color: var(--white);
  text-align: center;
  border-radius: var(--radius);
  padding: 50px 30px;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.9); }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  padding: 50px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-grid h3 { color: var(--white); font-size: 1rem; margin-bottom: 14px; }
.footer-grid a {
  display: block;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.footer-grid a:hover { color: var(--white); }
.footer-brand img { height: 50px; margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.9rem; max-width: 320px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 18px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.footer-credit a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
}

/* ---------- Chatbot ---------- */
.chat-launcher {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(18,58,30,0.35);
  z-index: 900;
  padding: 0;
  overflow: hidden;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-launcher img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.chat-launcher .close-x {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 300;
  display: none;
}
.chat-launcher.open img { display: none; }
.chat-launcher.open .close-x { display: block; }

.chat-status-dot {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 16px;
  height: 16px;
  background: #3DDC5A;
  border: 2px solid var(--white);
  border-radius: 50%;
  z-index: 901;
  pointer-events: none;
}
.chat-launcher.open + .chat-status-dot { display: none; }

.chat-popup {
  position: fixed;
  bottom: 96px;
  right: 22px;
  width: 340px;
  max-width: calc(100vw - 32px);
  max-height: 74vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(18,58,30,0.35);
  z-index: 899;
  display: none;
  flex-direction: column;
}
.chat-popup.open { display: flex; }

.chat-popup-header {
  background: var(--green-dark);
  color: var(--white);
  padding: 18px 20px;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-popup-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.chat-popup-header strong { display: block; font-size: 0.95rem; }
.chat-popup-header span { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.75); }

.chat-popup-body { padding: 18px 20px; }
.chat-popup-body p.intro { font-size: 0.9rem; color: var(--gray); margin-bottom: 16px; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.hide-mobile { display: inline; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .flex-row-stretch { flex-direction: column; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  nav.main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 20px 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s, opacity 0.2s;
  }
  nav.main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  nav.main-nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: block; }
  .brand-text { font-size: 0.92rem; }
  .brand img { height: 44px; }
  .hide-mobile { display: none; }
  .call-now-btn { padding: 11px 14px; }
  .grid-3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 48px 0; }
}

@media (max-width: 380px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
}
