@charset "UTF-8";
.lead_form {
  background-color: white;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: max-content;
  column-gap: 40px;
  width: 825px;
}
@media (max-width: 1024px) {
  .lead_form {
    grid-template-columns: 1fr;
    width: 90vw;
    max-width: 500px;
    column-gap: 0;
  }
}
@media (max-width: 480px) {
  .lead_form {
    max-width: 100%;
  }
}
.lead_form__imagesection {
  width: 100%;
  display: flex;
  position: relative;
  height: 0;
  min-height: 100%;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .lead_form__imagesection {
    display: none;
  }
}
.lead_form__imagesection-description {
  left: 30px;
  right: 30px;
  position: absolute;
  bottom: 30px;
  font-size: 12px;
  color: white;
  z-index: 2;
}
.lead_form__imagesection-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  flex: 1;
}
.lead_form__form {
  box-sizing: border-box;
  margin-block: 40px;
  margin-inline: 20px;
  position: relative;
}
@media (max-width: 1024px) {
  .lead_form__form {
    margin-block: 20px;
    margin-inline: 15px;
  }
}
@media (max-width: 480px) {
  .lead_form__form {
    margin-block: 15px;
    margin-inline: 10px;
  }
}
.lead_form__form-header {
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .lead_form__form-header {
    margin-bottom: 15px;
  }
}
.lead_form__form-title {
  font-size: 24px;
  color: #0c1d2f;
  font-family: "Trirong";
  margin-bottom: 8px;
}
@media (max-width: 480px) {
  .lead_form__form-title {
    font-size: 20px;
  }
}
.lead_form__form-caption {
  font-size: 14px;
  color: #0c1d2f;
  font-family: "Rubik";
}
@media (max-width: 480px) {
  .lead_form__form-caption {
    font-size: 12px;
  }
}
.lead_form__form-secondaryCaption {
  font-size: 14px;
  color: #0c1d2f;
  font-family: "Rubik";
}
@media (max-width: 480px) {
  .lead_form__form-secondaryCaption {
    font-size: 12px;
  }
}
.lead_form__form-fieldWrapper {
  margin-top: 12px;
}
.lead_form__form-field {
  margin-bottom: 16px;
  width: 100%;
}
.lead_form__form-field-checkboxWrapper {
  margin-bottom: 0px;
  width: 100%;
}
@media (max-width: 480px) {
  .lead_form__form-field {
    margin-bottom: 12px;
  }
}
.lead_form__form-field input,
.lead_form__form-field textarea {
  color: #0c1d2f;
  box-sizing: border-box;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ededed;
  border-radius: 6px;
  font-family: "Rubik";
  font-size: 14px;
  outline: none;
  height: 36px;
}
@media (max-width: 480px) {
  .lead_form__form-field input,
  .lead_form__form-field textarea {
    padding: 8px 10px;
    font-size: 12px;
  }
}
.lead_form__form-field input::placeholder,
.lead_form__form-field textarea::placeholder {
  color: #d8d7d7;
}
.lead_form__form-field input:focus,
.lead_form__form-field textarea:focus {
  border-color: #0c1d2f;
}
.lead_form__form-field textarea {
  resize: vertical;
  min-height: 100px;
}
@media (max-width: 480px) {
  .lead_form__form-field textarea {
    min-height: 80px;
  }
}
.lead_form__form-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.lead_form__form-checkbox {
  width: 100%;
  padding-inline: 12px;
  border-radius: 8px;
  height: 36px;
  background-color: #fdfdf7;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: "Rubik";
  font-size: 14px;
  position: relative;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .lead_form__form-checkbox {
    font-size: 12px;
    gap: 6px;
  }
}
.lead_form__form-checkbox input {
  display: none;
}
.lead_form__form-checkbox-custom {
  width: 13px;
  height: 13px;
  border: 1px solid #d8d7d7;
  border-radius: 4px;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .lead_form__form-checkbox-custom {
    width: 13px;
    height: 13px;
  }
}
input:checked + .lead_form__form-checkbox-custom {
  background-color: #0c1d2f;
  border-color: #0c1d2f;
}
input:checked + .lead_form__form-checkbox-custom::after {
  content: "✔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-size: 8px;
  color: white;
}
.lead_form__form-radioLabel {
  font-size: 12px;
  color: #0c1d2f;
  font-family: "Rubik";
  margin-bottom: 8px;
  display: block;
}
@media (max-width: 480px) {
  .lead_form__form-radioLabel {
    font-size: 11px;
  }
}
.lead_form__form-error {
  color: red;
  font-size: 12px;
  font-family: "Rubik";
  margin-top: 4px;
}
@media (max-width: 480px) {
  .lead_form__form-error {
    font-size: 11px;
  }
}
.lead_form__form-submit {
  width: 100%;
  height: 36px;
  background-color: #0c1d2f;
  color: white;
  border: none;
  border-radius: 6px;
  font-family: "Trirong";
  font-size: 12px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
@media (max-width: 480px) {
  .lead_form__form-submit {
    padding: 10px;
    font-size: 12px;
  }
}
.lead_form__form-submit:hover {
  opacity: 0.9;
  color: white;
  background-color: #0c1d2f;
}
.lead_form__form-submit:active {
  transform: translateY(1px);
}
.lead_form-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
  color: #0c1d2f;
}
@media (max-width: 1024px) {
  .lead_form-close {
    top: 5px;
    right: 10px;
  }
}
@media (max-width: 480px) {
  .lead_form-close {
    font-size: 16px;
    padding: 4px;
  }
}.modal-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
}
.modal-overlay.close {
  opacity: 0;
}

.modal-content {
  background: #fff;
  padding: 12px;
  width: auto;
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: auto;
  position: relative;
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.3s ease;
}
.modal-content.open {
  transform: scale(1);
  opacity: 1;
}
.modal-content.close {
  transform: scale(0.95);
  opacity: 0;
}
@media (max-width: 1024px) {
  .modal-content {
    padding: 8px;
    max-width: 95vw;
    max-height: 95vh;
  }
}
@media (max-width: 480px) {
  .modal-content {
    padding: 6px;
    max-width: 98vw;
    max-height: 98vh;
  }
}

/* Simplified body scroll-lock */
body.modal-open {
  overflow: hidden;
}