body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
}

/* Container utama */
.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

/* Gambar header */
.contact-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}

.contact-image .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  padding: 0 15px;
}

/* Isi utama */
.contact-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  padding: 40px 20px;
  gap: 30px;
  box-sizing: border-box;
  justify-content: space-between;
}

/* Kolom kiri dan kanan */
.contact-left,
.contact-right {
  flex: 1 1 45%;
  min-width: 300px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* Judul dan paragraf */
.contact-left h2,
.contact-right h3,
.contact-left h3 {
  margin-bottom: 15px;
  color: #333;
}

.contact-left p {
  line-height: 1.6;
  color: #555;
}

/* Form */
.contact-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

.contact-form button {
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.contact-form button:hover {
  background-color: #218838;
}

/* Floating WhatsApp */
.wa-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
}

.wa-floating img {
  width: 100%;
  height: 100%;
}

/* Link WhatsApp */
.wa-link {
  color: #28a745;
  text-decoration: underline;
}

/* Responsif untuk layar kecil */
@media (max-width: 768px) {
  .contact-main {
    flex-direction: column;
    padding: 20px 10px;
  }

  .contact-left,
  .contact-right {
    flex: 1 1 100%;
    padding: 20px 15px;
  }

  .contact-image {
    height: 200px;
  }

  .contact-image .overlay {
    font-size: 18px;
  }
}
