/* ========== KONTAK PAGE ========== */

/* Container utama hanya untuk halaman kontak */
.kontak-page .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 40px;
  max-width: 1100px;
  margin: auto;
}

/* Card kontak */
.kontak-page .card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 25px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.kontak-page .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Judul di kontak */
.kontak-page .card h2 {
  color: #0056b3; /* Biru */
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}

/* Info */
.kontak-page .info p {
  margin: 8px 0;
  line-height: 1.5;
}
.kontak-page .info strong {
  color: #0056b3;
}

/* Sosial */
.kontak-page .social-icons {
  margin-top: 15px;
}
.kontak-page .social-icons a {
  color: #0056b3;
  margin-right: 15px;
  transition: color 0.3s;
}
.kontak-page .social-icons a:hover {
  color: #2e8b57;
}

/* Gambar */
.kontak-page .map img,
.kontak-page .apotek img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .kontak-page .container {
    grid-template-columns: 1fr;
  }
}
