@charset "UTF-8";
/* ─── Section ──────────────────────────────────────────────── */
.section-contact {
  width: 100%;
  padding: 3rem 0;
  box-sizing: border-box;
}

/* ─── Wrapper ──────────────────────────────────────────────── */
.wrapper-contact {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* ─── Sectietitel ───────────────────────────────────────────── */
.title-contact {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

/* ─── Inner: formulier links + info rechts ──────────────────── */
.inner-contact {
  display: flex;
  gap: 5%;
  align-items: stretch;
}

/* ─── Formulier ─────────────────────────────────────────────── */
.form-wrap-contact {
  flex: 1;
  border-radius: 12px;
  box-sizing: border-box;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
  display: inline-block;
  color: #fff;
  border: 2px solid var(--gs-cta, #233588);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  align-self: flex-start;
  transition: 0.3s all;
  background-color: var(--gs-cta, #233588);
  border-radius: 10px;
  font-size: 16px;
  display: inline-block;
  margin-top: 20px;
  transition: all 0.3s ease;
  font-family: Inter, sans-serif;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
  background-color: transparent;
  color: var(--gs-cta, #233588);
  cursor: pointer;
}

/* ─── Contact info blok ─────────────────────────────────────── */
.info-wrap-contact {
  flex: 0.6;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 23px;
  min-height: 400px;
  display: flex;
  align-items: flex-start;
}

.contact-info-text-wrapper {
  background-repeat: no-repeat;
  background-position: bottom right;
  padding: 30px 30px 95px;
}

.contact-info-text-container {
  background: #2CAAE9;
  border-radius: 20px;
  margin-top: 20px;
}

.contact_wrapper_mail_phone {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 25px 0;
  gap: 5%;
}

form.wpcf7-form p {
  width: 100%;
}
form.wpcf7-form p label {
  width: 100%;
  display: block;
  font-family: Instrument Sans, sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
}
form.wpcf7-form p label .wpcf7-form-control-wrap {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
}
form.wpcf7-form p label .wpcf7-form-control-wrap textarea {
  width: 100%;
  padding: 22px;
  font-size: 16px;
  border: 0px;
  border-radius: 10px;
  font-family: Inter, sans-serif;
  margin-top: 15px;
}
form.wpcf7-form p label .wpcf7-form-control-wrap textarea::-moz-placeholder {
  color: #bebebe;
}
form.wpcf7-form p label .wpcf7-form-control-wrap textarea::placeholder {
  color: #bebebe;
}
form.wpcf7-form p label .wpcf7-form-control-wrap textarea:focus {
  outline: none;
}
form.wpcf7-form p label .wpcf7-form-control-wrap input {
  padding: 22px;
  font-size: 16px;
  border: 0px;
  border-radius: 10px;
  width: 100%;
  font-family: Inter, sans-serif;
  margin-top: 10px;
}
form.wpcf7-form p label .wpcf7-form-control-wrap input::-moz-placeholder {
  color: #bebebe;
}
form.wpcf7-form p label .wpcf7-form-control-wrap input::placeholder {
  color: #bebebe;
}
form.wpcf7-form p label .wpcf7-form-control-wrap input:focus {
  outline: none;
}

form.wpcf7-form.invalid .wpcf7-not-valid-tip {
  margin: 5px 0;
  font-size: 16px;
  font-family: Inter, sans-serif;
}

/* ─── Achtergrondafbeelding: rechtsonder, object-contain ─────── */
.bg-image-contact {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right bottom;
     object-position: right bottom;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* ─── Content bovenop de afbeelding ─────────────────────────── */
.info-content-contact {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: white;
  border-radius: 0 0 20px 20px;
}

.info-title-contact {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.info-text-contact {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.info-text-contact p {
  margin: 0 0 0.75rem;
}

.info-text-contact p:last-child {
  margin-bottom: 0;
}

/* ─── Google Maps ───────────────────────────────────────────── */
.maps-contact {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.iframe-maps-contact {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}

.contact-info-link {
  color: black;
  text-decoration: unset;
  transition: color 0.3s ease;
}
.contact-info-link svg {
  width: 25px;
  height: 25px;
  position: relative;
  top: 6px;
  transition: fill 0.3s ease;
  fill: #2CAAE9;
}
.contact-info-link:hover {
  color: #2CAAE9;
  transition: color 0.3s ease;
}
.contact-info-link:hover svg {
  fill: #2CAAE9;
  transition: fill 0.3s ease;
}

.contact-info-address svg {
  width: 25px;
  height: 25px;
  position: relative;
  top: 6px;
  fill: #2CAAE9;
}

.contact-info-link.phone-link {
  margin-top: 35px;
  margin-left: 30px;
}

.contact-info-link.email-link {
  margin-left: 30px;
}

p.contact-info-address {
  margin-left: 30px;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border-top: unset;
  border-right: unset;
  border-bottom: unset;
  padding: 8px 30px;
  padding-left: 10px;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-top: unset;
  border-right: unset;
  border-bottom: unset;
  padding: 8px 30px;
  padding-left: 10px;
}

.wpcf7 form.spam .wpcf7-response-output {
  border-top: unset;
  border-right: unset;
  border-bottom: unset;
  padding: 8px 30px;
  padding-left: 10px;
}

.wpcf7-not-valid-tip {
  font-size: 16px;
  margin-top: 5px;
}

/* ─── Media queries ─────────────────────────────────────────── */
/* 900px – 1200px */
@media (max-width: 1200px) and (min-width: 900px) {
  .inner-contact {
    gap: 1.5rem;
  }
  .title-contact {
    font-size: 1.75rem;
  }
  .section-contact {
    padding: 2rem 0;
  }
}
/* 600px – 899px: onder elkaar */
@media (max-width: 899px) and (min-width: 600px) {
  .inner-contact {
    flex-direction: column;
    gap: 2rem;
  }
  .info-wrap-contact {
    min-height: 320px;
  }
  .title-contact {
    font-size: 1.7rem;
    line-height: 40px;
  }
  .section-contact {
    padding: 2rem 0;
  }
  .wrapper-contact {
    gap: 2rem;
  }
  .contact-info-text-wrapper {
    padding-bottom: 120px;
  }
}
/* 450px – 599px */
@media (max-width: 599px) and (min-width: 450px) {
  .inner-contact {
    flex-direction: column;
    gap: 2rem;
  }
  .info-wrap-contact {
    min-height: 320px;
  }
  .title-contact {
    font-size: 1.7rem;
    line-height: 40px;
  }
  .section-contact {
    padding: 2rem 0;
  }
  .wrapper-contact {
    gap: 2rem;
  }
  .iframe-maps-contact {
    height: 300px;
  }
  .contact-info-text-wrapper {
    padding-bottom: 120px;
  }
}
/* Onder 449px */
@media (max-width: 449px) {
  .inner-contact {
    flex-direction: column;
    gap: 1rem;
  }
  .info-wrap-contact {
    min-height: 320px;
  }
  .title-contact {
    font-size: 26px;
    line-height: 30px;
  }
  .section-contact {
    padding: 1rem 0;
  }
  .wrapper-contact {
    gap: 2rem;
  }
  .iframe-maps-contact {
    height: 300px;
  }
  .contact-info-text-wrapper {
    padding-bottom: 120px;
  }
  .contact_wrapper_mail_phone {
    flex-direction: column;
    gap: 25px;
  }
}/*# sourceMappingURL=contact_form_info.css.map */