/* ==== Hubungi Kami Page ==== */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #f9f9f9;
  color: #333;
}

.contact-page {
  padding: 60px 10%;
}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.form-section, .info-section {
  flex: 1 1 45%;
  background: #f2f2f2;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.form-section h2, .info-section h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #000;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 5px;
  font-weight: 500;
}

input, textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 0.95rem;
}

input:focus, textarea:focus {
  outline: 2px solid #007bff;
}

button {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #0056b3;
}

.info-section ul {
  list-style: none;
  padding: 0;
}

.info-section li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.info-section i {
  width: 35px;
  height: 35px;
  background: #007bff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.errorWrap, .succWrap {
  background: #fff3f3;
  color: #d00;
  border-left: 5px solid #d00;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
}

.succWrap {
  background: #e6ffea;
  color: #0a0;
  border-left-color: #0a0;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .form-section, .info-section {
    flex: 1 1 100%;
  }
}
