.kontak-kami {
  background-image: url('../assets/background/bg ct.png'); /* ganti path sesuai file kamu */
  background-size: cover;
  background-position: center;
  padding: 4rem 2rem;
  color: white;
  text-align: center;
  position: relative;
}

.kontak-kami::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.kontak-header {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

.kontak-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: 1px;
}

.kontak-header p {
  font-size: 1.5rem;
  color: #eee;
  line-height: 1.5;
}

.kontak-kartu-grid {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
}

.kontak-kartu {
  background: #fff;
  color: #333;
  border-radius: 10px;
  padding: 2rem;
  width: 300px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.kontak-kartu:hover {
  transform: translateY(-5px);
}

.kontak-kartu i {
  font-size: 2.5rem;
  color: #ff5f00;
  margin-bottom: 1rem;
}

.kontak-kartu h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.kontak-kartu p, .kontak-kartu a {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
  text-decoration: none;
}

.kontak-form-container {
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin: 2rem auto 0 auto;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: left;
}

.kontak-form-container h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #222;
}

.kontak-form-container form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.kontak-form-container input,
.kontak-form-container textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
}

.kontak-form-container button {
  padding: 0.8rem;
  background-color: #ff5f00;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.kontak-form-container button:hover {
  background-color: #e04e00;
}