/* ===== HERO ===== */
.layanan-hero{
  background: #0d6efd;
  padding: 34px 16px;
  color: #fff;
}

.layanan-hero__inner{
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.layanan-hero__title{
  margin: 0 0 16px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
}

/* Tombol WA */
.wa-btn{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #22c55e;
  color: #fff;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.wa-btn:hover{
  filter: brightness(0.95);
}

.wa-btn__icon{
  font-size: 28px;
  line-height: 1;
}

.wa-btn__icon i{
  color: #fff;
}

.wa-btn__text{
  font-size: 14px;
  line-height: 1.3;
}

/* ===== WRAP ===== */
.layanan-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 18px 60px;
}

/* ===== GRID ===== */
.layanan-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;              /* sedikit lebih renggang agar tidak menyatu */
  margin-top: 22px;
}

@media (max-width: 1024px){
  .layanan-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .layanan-grid{ grid-template-columns: 1fr; }
}

/* ===== CARD ===== */
.layanan-card{
  display: block;
  background: #ffffff;
  border: 2px solid #d18241;         /* ✅ lebih tebal biar tegas */
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;

  /* ✅ shadow lebih terasa */
  box-shadow: 0 10px 20px rgba(2, 6, 23, .06);

  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.layanan-card:hover{
  transform: translateY(-3px);
  border-color: #d6b523;
  box-shadow: 0 18px 36px rgba(2, 6, 23, .10);
}

/* gambar: rasio seragam */
.layanan-card__img{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #f1f5f9;   /* ✅ lebih kontras dari putih */
  overflow: hidden;
}

.layanan-card__img img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ===== BODY ===== */
.layanan-card__body{
  padding: 14px 14px 16px;
}

.layanan-card__body h3{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;       /* ✅ lebih tebal */
  color: #111827;
}

.layanan-card__body p{
  margin: 0;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

/* ===== NOTE ===== */
.layanan-note{
  margin-top: 22px;
  background: #f8fafc;
  border: 1px solid #e9eef5;
  border-radius: 12px;
  padding: 14px 16px;
  color: #333;
}

.layanan-note p{
  margin: 0;
  line-height: 1.6;
}
