:root {
  --hm-primary: #2E7D32;
  --hm-secondary: #4CAF50;
  --hm-dark: #1B5E20;
  --hm-light: #E8F5E9;
  --hm-gold: #D4AF37;
  --hm-white: #FFFFFF;
  --hm-text: #222222;
}

body {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  color: var(--hm-text);
  background: var(--hm-white);
}

a { color: var(--hm-primary); text-decoration: none; }
a:hover { color: var(--hm-dark); }

/* ---------- Buttons ---------- */
.btn-hm-primary {
  background: var(--hm-primary);
  border: 2px solid var(--hm-primary);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.75rem 1.75rem;
  transition: all .2s ease;
}
.btn-hm-primary:hover { background: var(--hm-dark); border-color: var(--hm-dark); color: #fff; }

.btn-hm-outline {
  background: transparent;
  border: 2px solid var(--hm-white);
  color: var(--hm-white);
  font-weight: 600;
  border-radius: 50px;
  padding: 0.75rem 1.75rem;
  transition: all .2s ease;
}
.btn-hm-outline:hover { background: var(--hm-white); color: var(--hm-primary); }

.btn-hm-gold {
  background: var(--hm-gold);
  border: 2px solid var(--hm-gold);
  color: #1B5E20;
  font-weight: 700;
  border-radius: 50px;
}

/* ---------- Navbar ---------- */
.hm-navbar {
  background: var(--hm-white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.hm-navbar .navbar-brand img { height: 46px; }
.hm-navbar .nav-link {
  font-weight: 600;
  color: var(--hm-text);
  margin: 0 .5rem;
}
.hm-navbar .nav-link:hover,
.hm-navbar .nav-link.active { color: var(--hm-primary); }

/* ---------- Hero ---------- */
.hm-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(27,94,32,.55), rgba(27,94,32,.25)), url('../images/hero.jpg') center/cover no-repeat;
  color: #fff;
}
.hm-hero h1 {
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.hm-hero p.lead { text-shadow: 0 1px 6px rgba(0,0,0,.35); }

.hm-badge-strip {
  background: rgba(27,94,32,.85);
  backdrop-filter: blur(2px);
  border-radius: 16px;
  padding: 1rem 1.25rem;
}
.hm-badge-strip .badge-item {
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
}
.hm-badge-strip .badge-item i {
  display: block;
  font-size: 1.6rem;
  color: var(--hm-gold);
  margin-bottom: .35rem;
}

/* ---------- Section titles ---------- */
.hm-section-title { text-align: center; margin-bottom: 2.5rem; }
.hm-section-title .eyebrow {
  color: var(--hm-primary);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: .8rem;
}
.hm-section-title h2 { font-weight: 800; color: var(--hm-dark); }
.hm-section-title .underline {
  width: 70px; height: 4px; background: var(--hm-gold);
  margin: .75rem auto 0; border-radius: 2px;
}

/* ---------- Service cards ---------- */
.hm-service-card {
  border: 1px solid #eef2ee;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
  background: #fff;
}
.hm-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(27,94,32,.15);
}
.hm-service-card .icon-wrap {
  width: 56px; height: 56px;
  background: var(--hm-light);
  color: var(--hm-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.hm-service-card .card-body { padding: 1.5rem; }
.hm-service-card h5 { font-weight: 700; color: var(--hm-dark); }
.hm-service-card .price { color: var(--hm-gold); font-weight: 700; }

/* ---------- How it works ---------- */
.hm-step {
  text-align: center;
  padding: 1.5rem 1rem;
}
.hm-step .step-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--hm-light);
  color: var(--hm-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
  border: 2px dashed var(--hm-secondary);
}

/* ---------- Testimonials ---------- */
.hm-testimonial-card {
  background: var(--hm-light);
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
}
.hm-testimonial-card .stars { color: var(--hm-gold); }

/* ---------- Coverage areas ---------- */
.hm-area-pill {
  display: inline-block;
  background: var(--hm-light);
  color: var(--hm-dark);
  font-weight: 600;
  padding: .5rem 1.1rem;
  border-radius: 50px;
  margin: .25rem;
  border: 1px solid #cfe8d1;
}

/* ---------- CTA band ---------- */
.hm-cta-band {
  background: linear-gradient(120deg, var(--hm-dark), var(--hm-primary));
  color: #fff;
  border-radius: 20px;
  padding: 3rem 2rem;
}

/* ---------- Footer ---------- */
.hm-footer {
  background: #14351a;
  color: #d8e6da;
}
.hm-footer h5 { color: #fff; font-weight: 700; }
.hm-footer a { color: #cfe0d1; }
.hm-footer a:hover { color: var(--hm-gold); }
.hm-footer .social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  margin-right: .5rem;
}

.hm-whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  background: #25D366;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.7rem;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  z-index: 1050;
}

/* Lazy-loaded image fade-in */
img[loading="lazy"] { background: #f0f4f0; }
