/* ==============================
   SERVICES PAGE STYLING
   Consistent with index eco-green theme
   ============================== */

/* 🌿 HERO SECTION */
.services-hero {
  background: linear-gradient(rgba(20,136,59,0.7), rgba(20,136,59,0.7)),
              url('../img/services-hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px 80px;
}

.services-hero .hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.services-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.services-hero p {
  font-size: 1.1rem;
  color: #eafbe1;
}

/* 🧰 SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  padding: 60px 20px;
}

.service-card {
  background: #f6fff8;
  border: 1px solid #d9f2dc;
  border-radius: 12px;
  text-align: center;
  padding: 32px 18px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.service-card i {
  font-size: 38px;
  color: #14883b;
  margin-bottom: 14px;
}

.service-card h3 {
  margin: 8px 0;
  font-size: 1.1rem;
}

.service-card h3 a {
  color: #14883b;
  text-decoration: none;
  font-weight: 700;
}

.service-card p {
  font-size: 0.9rem;
  color: #555;
}

.service-card:hover {
  background: #eafbea;
  transform: translateY(-6px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

/* 📞 CTA BANNER */
.cta-banner {
  background: #14883b;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  font-size: 1.1rem;
}

.cta-banner a {
  color: #fffae0;
  font-weight: 700;
  text-decoration: underline;
}

.cta-banner strong {
  color: #fff;
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
  .services-hero {
    padding: 80px 20px 60px;
  }
  .services-hero h1 {
    font-size: 1.8rem;
  }
  .service-card {
    padding: 28px 16px;
  }
}