.lead-section {
  width: 100%;
  padding: 90px 40px;
  background-color: #052d55;
}

.lead-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: stretch;
}

.lead-left,
.lead-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lead-label {
  display: block;
  font-family: "Asap Sharp", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #ffffff;
  opacity: 0.7;
  margin-bottom: 14px;
}

.lead-heading {
  font-family: "Asap Sharp", sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 16px 0;
}

.lead-subtext {
  font-family: "Asap Sharp", sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0 0 28px 0;
}

.lead-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.lead-stars {
  color: #f5a623;
  font-size: 16px;
  letter-spacing: 2px;
}

.lead-rating-text {
  font-family: "Asap Sharp", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.lead-map-wrapper {
  flex: 1;                  /* mengisi sisa ruang vertikal yang ada */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.lead-map {
  width: 100%;
  height: 100%;             /* diubah dari 260px tetap → 100% mengikuti wrapper */
  border: 0;
  display: block;
}

.lead-form-card {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.lead-form-title {
  font-family: "Asap Sharp", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #12024D;
  margin: 0 0 20px 0;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lead-form-label {
  font-family: "Asap Sharp", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #052d55;
  margin-top: 12px;
}

.lead-form-input {
  font-family: "Asap Sharp", sans-serif;
  font-size: 14px;
  color: #12024D;
  padding: 12px 14px;
  border: 1px solid #d8dce3;
  border-radius: 8px;
  outline: none;
  background-color: #ffffff;
}

.lead-form-input:focus {
  border-color: #052d55;
}

.lead-form-submit {
  margin-top: 24px;
  padding: 14px 20px;
  background-color: #052d55;
  color: #ffffff;
  font-family: "Asap Sharp", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.lead-form-submit:hover {
  background-color: #06386b;
}

.lead-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.lead-form-status {
  font-family: "Asap Sharp", sans-serif;
  font-size: 13px;
  margin: 12px 0 0 0;
  min-height: 18px;
}

.lead-form-status.success {
  color: #1a7f37;
}

.lead-form-status.error {
  color: #c92a2a;
}
/* Honeypot anti-spam: disembunyikan visual dari manusia (posisi di luar layar),
   tapi tetap ada di DOM supaya bot form-filler otomatis tetap mengisinya. */
.lead-form-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
