/* ===== HERO ===== */
.services-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.services-hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/services/Services-hero.jpg") center/cover no-repeat;
  opacity: 0.8;
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 114, 63, 0.8);
}

.services-hero-fade {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, white, transparent);
}

.services-hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.services-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
}

/* ===== GRID ===== */
.services-grid-section {
  background: #F5F5F5;
  padding: 80px 0;
}

.services-grid-section h2 {
  color: #D62828;
  font-weight: 700;
}

.services-grid-section p {
  max-width: 800px;
}

/* Card */
.service-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

/* Image */
.service-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,114,63,0.4);
  opacity: 0;
  transition: opacity .3s ease;
}

.service-card:hover .img-overlay {
  opacity: 1;
}

/* Body */
.service-body {
  padding: 20px;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.service-header h3 {
  color: #00723F;
  font-size: 18px;
  font-weight: 700;
}

/* Icons */
.red-icon { color: #D62828; font-size: 26px; }
.green-icon { color: #00723F; font-size: 26px; }

/* ===== CTA ===== */
.services-cta {
  background: #00723F;
  color: white;
  text-align: center;
  padding: 70px 20px;
}

.services-cta h2 {
  font-weight: 700;
}

.cta-btn {
  display: inline-block;
  background: white;
  color: #00723F;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.cta-btn:hover {
  background: #D62828;
  color: white;
}
