.contact-info-section {
  padding: 60px 20px;
  background: #fff;
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
}

.contact-info-container {
  display: flex;
  gap: 24px;
  max-width: 1200px;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}

.info-box {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  padding: 32px 24px;
  flex: 1 1 300px;
  min-width: 280px;
}

.info-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.icon {
  background: #222526;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  font-size: 24px;
  margin-right: 16px;
  flex-shrink: 0;
}

.info-header h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.info-box p {
  font-size: 15px;
  color: #222526;
  line-height: 1.6;
  margin: 0;
}

.wa-number {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.wa-number:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info-container {
    flex-direction: column;
    align-items: center;
  }

  .info-box {
    width: 100%;
    max-width: 500px;
  }
}








.contact-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
}

.contact-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}

.contact-form {
  flex: 1 1 500px;
  
}

.contact-form .form-label {
  display: inline-block;
  background: #222526;
  color: #fff;
  font-size: 15px;
  padding: 8px 20px;
  border-radius: 24px;
  margin-bottom: 20px;
  font-weight: 600;
     /* 🔥 tambahkan ini */
    margin-bottom: 0px;

}

.contact-form h2 {
  font-size: 36px;
  font-weight: 550;
  margin-bottom: 0;
}

.contact-form p {
  font-size: 16px;
  color: #222526;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 12px;
  margin-bottom: 20px;
  outline: none;
  resize: vertical;
  height: 52px;
  box-sizing: border-box;
}

.contact-form textarea {
  height: 140px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row input {
  flex: 1;
}

.contact-form button {
  background: #222526;
  color: #fff;
  font-size: 16px;
  padding: 16px 36px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  height: 52px;
}

.map-embed {
  flex: 1 1 500px;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    width: 100%;
  }
}
