/* -------------------------------------------
   OUR SPIRITUAL SERVICES (Image Background)
------------------------------------------- */

.spiritual-services {
  background: linear-gradient(180deg, #fff 0%, #fffaf3 100%);
  padding: 100px 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.services-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.services-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.services-header span {
  color: #f6b10a;
}

.services-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.service-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  min-height: 380px;
  color: #fff;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.service-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0.75));
  z-index: 1;
  transition: all 0.3s ease;
}

.service-card:hover .service-overlay {
  background: linear-gradient(180deg, rgba(246,177,10,0.3), rgba(0,0,0,0.7));
  transform: scale(1.05);
}

/* CONTENT */
.service-content {
  position: relative;
  z-index: 2;
  padding: 60px 25px;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
  transition: background 0.3s;
}

.service-card:hover .service-icon {
  background: #f6b10a;
  color: #fff;
}

.service-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.service-card p {
  font-size: 15px;
  color: #f2f2f2;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* BUTTON */
.service-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #f6b10a;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.service-btn:hover {
  background: #e29d00;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-header h2 {
    font-size: 28px;
  }
  .service-content {
    padding: 40px 20px;
  }
}
