#cara-pesan {
  background: #f8f9fa;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--secondary), #ffb300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.5rem;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.step-icon a {
  color: white;
  text-decoration: none;
}

.step-icon a:hover {
  color: white;
}

.step-item:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 35px;
  height: 35px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-item h4 {
  font-weight: 600;
  margin-bottom: 10px;
}
