/* ===== PPID CARD STYLE ===== */
/* GRID LAYOUT PPID */

.ppid-grid {
  display: grid;
  grid-template-columns: 1fr; /* default HP */
  gap: 32px; /* gap-8 = 2rem = 32px */
}

/* Tablet */
@media (min-width: 768px) {
  .ppid-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop Besar */
@media (min-width: 1280px) {
  .ppid-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


.ppid-card {
    background: linear-gradient(145deg, #eef6ff, #ffffff);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(13, 82, 155, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.ppid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(13, 82, 155, 0.15);
}

.ppid-icon {
    width: 60px;
    height: 60px;
    background: #dbeeff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 28px;
    margin-bottom: 18px;
    transition: 0.3s;
}

.ppid-card:hover .ppid-icon {
    background: #1a73e8;
    color: white;
}

.ppid-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f2d52;
    margin-bottom: 12px;
}

.ppid-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #5c6f87;
    margin-bottom: 18px;
}

.ppid-card a {
    font-weight: 600;
    font-size: 14px;
    color: #1a73e8;
    text-decoration: none;
    transition: 0.3s;
}

.ppid-card a:hover {
    color: #0f2d52;
}

/* WRAPPER */
.layanan-wrapper {
  padding: 90px 20px;
  background: transparent
}

/* TITLE */
.layanan-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #0f2d52; /* navy */
}

/* GRID */
.layanan-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* CARD */
.layanan-card {
  display: block;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #e6ecf3;
  border-radius: 14px;
  padding: 45px 20px;
  text-align: center;
  transition: all 0.35s ease;
}

.layanan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(15, 45, 82, 0.08);
  border-color: #dbe4ef;
}

/* ICON WRAPPER */
.layanan-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 22px auto;
  border-radius: 14px;
  background: linear-gradient(135deg, #e8f1ff, #f5f9ff);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* SVG STYLE */
.layanan-icon svg {
  width: 32px;
  height: 32px;
  stroke: #1e3a8a; /* navy */
  transition: 0.3s;
}

/* HOVER EFFECT ICON */
.layanan-card:hover .layanan-icon {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
}

.layanan-card:hover .layanan-icon svg {
  stroke: #ffffff;
}

/* TEXT */
.layanan-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0f2d52;
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .layanan-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .layanan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .layanan-grid {
    grid-template-columns: 1fr;
  }
}