/* BAGIAN UTAMA */
.features-section {
  padding: 60px 20px;
  background-color: #f8f9fb;
  font-family: sans-serif;
}

/* JUDUL SECTION */
.section-title {
  text-align: center;
  margin-bottom: 20px;
}

.section-title h2 {
  font-size: 2rem;
  color: #b80000;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* WRAPPER UNTUK SEMUA BOX */
.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

/* BOX UTAMA */
.feature-box {
  position: relative;
  flex: 1 1 300px;
  max-width: 380px;
  padding: 32px 28px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
  cursor: pointer;
  transition: all 0.4s ease;
}

/* EFEK HOVER */
.feature-box:hover {
  background: linear-gradient(135deg, #3f51b5, #e91e63);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* ICON */
.feature-box .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f44336, #e91e63);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.feature-box .icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.feature-box:hover .icon {
  background: rgba(255, 255, 255, 0.25);
}

/* TEKS */
.feature-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.feature-box p {
  font-size: 15px;
  line-height: 1.6;
  transition: color 0.3s ease;
}

/* NOMOR */
.feature-box .number {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-size: 64px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.05);
  pointer-events: none;
  transition: color 0.3s ease;
}

.feature-box:hover .number {
  color: rgba(255, 255, 255, 0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .features-container {
    flex-direction: column;
    align-items: center;
  }

  .feature-box {
    width: 90%;
    max-width: 500px;
  }
}
