/* === LAYANAN page === */
/* ====== PAGE /layanan (DESAIN KHUSUS) ====== */
.layanan-list{
  padding: 70px 0 110px;   /* biar tidak mentok footer */
  background: #1f1f1f;      /* kalau page kamu dark */
}

.layanan-list-title{
  text-align: center;
  margin: 0 0 46px;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 42px;         /* judul besar seperti desain */
  line-height: 1.05;
  color: #fff;
}

.layanan-list-title span{
  color: #9CC63B;
}

.layanan-list-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.layanan-list-card{
  text-align: center;
}

.layanan-list-img{
  width: 230px;
  height: 230px;
  border-radius: 28px;
  object-fit: cover;
  display: block;
  margin: 0 auto 18px;
}

.layanan-list-img-ph{
  background: #d9d9d9;
}

.layanan-list-name{
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin-bottom: 12px;
}

.layanan-list-btn{
  margin: 0 auto;
  display: inline-flex;
}

/* responsive */
@media (max-width: 900px){
  .layanan-list-title{ font-size: 44px; margin-bottom: 28px; }
  .layanan-list-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .layanan-list-img{
    width: 260px;
    height: 260px;
  }
}


/* ===== layanan: samakan feel dengan Tentang (spasi & tone text) ===== */
.layanan-list-grid.mt-40{ margin-top:40px; }

.layanan-list-name{
  /* mirip tone .about-text */
  font-size:14px;
  line-height:1.7;
  color:rgba(255,255,255,0.82);
  margin:0 0 12px;
  font-weight:600;
}

/* jarak image -> title disamakan (lebih rapih, tidak terlalu jauh) */
.layanan-list-img{
  margin:0 auto 14px;
  transition: transform .25s ease;
}

/* hover animasi halus saat kursor mengarah ke card/gambar */
.layanan-hover{
  border-radius:22px;
  padding:14px 12px 18px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.layanan-hover:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

.layanan-hover:hover .layanan-list-img{
  transform: scale(1.06);
}
