/* ================= SERVICE PAGE ONLY ================= */

.service-hero {
  position: relative;
  height: 60vh;
  background: url("../images/residential/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 70px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 52px;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 18px;
  opacity: 0.9;
}

.section.dark {
  background: radial-gradient(circle at top, #161616, #0b0b0b);
}

.section-text {
  max-width: 760px;
  margin: 0 auto 18px;
  line-height: 1.7;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.cap-card {
  background: linear-gradient(180deg, #151515, #0f0f0f);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px 24px;
}

.cap-card:hover {
  border-color: #d4af37;
  transform: translateY(-4px);
}

/* ================= PROCESS ================= */
.process-list {
  max-width: 900px;
  margin: 40px auto 0;
  display: grid;
  gap: 24px;
}

.process-card {
  background: linear-gradient(180deg, #151515, #0f0f0f);
  border-radius: 18px;
  padding: 28px 30px 28px 60px;
  position: relative;
}

.process-card h3 {
  margin-bottom: 6px;
  font-size: 20px;
}

.process-card p {
  font-size: 15px;
  opacity: 0.75;
}

.process-card .step {
  position: absolute;
  left: 20px;
  top: 28px;
  background: #d4af37;
  color: black;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}