body {
  font-family: 'Inter', sans-serif;
  color: #222;
  margin: 0;
  background: #ffffff;
}

.kontak-section {
  padding: 150px 20px;
  background: #ffffff;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== CARD BERJEJER HORIZONTAL ===== */
.kontak-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 60px;
}

/* ===== STYLE CARD ===== */
.kontak-item {
  flex: 1 1 220px;
  max-width: 250px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  padding: 25px;
  text-decoration: none;
  color: #111;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s;
  
  /* --- Pusatkan isi di tengah card --- */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.kontak-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  background: #f0f0f0;
}

.kontak-item i {
  font-size: 2rem;
  color: #111;
  margin-bottom: 10px;
}

.kontak-item h3 {
  margin: 5px 0;
  font-weight: 600;
}

.kontak-item p {
  font-size: 0.95rem;
  color: #333;
}

/* ===== TEKS DI BAWAH CARD ===== */
.kontak-info {
  display: block;
  text-align: center;
  margin-top: -50px;
}

.kontak-info h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.kontak-info p {
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ======== RESPONSIVE MODE ======== */
@media (max-width: 768px) {
  .kontak-section {
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .kontak-row {
    order: 2;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .kontak-item {
    width: 90%;
    max-width: 320px;
  }

  /* “Hubungi Kami” di bawah card */
  .kontak-info {
    order: 3;
    margin-top: -20px; /* ✅ dikurangi dari 40px → jadi 20px */
    text-align: center;
  }

  .kontak-info h1 {
    font-size: 1.5rem;
  }

  .kontak-info p {
    font-size: 0.95rem;
    padding: 0 15px;
  }
}