.office-map {
  max-width: 1130px;
  margin-top: 58px;
}
.map-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.map-heading > a {
  font-size: 13px;
  font-weight: 550;
}
.map-heading > a span {
  margin-left: 12px;
}
.office-map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #e2e8f0;
}
.office-map > p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.6;
}
.contact-with-forms {
  max-width: none;
  gap: 56px;
}
.contact-with-forms > article {
  min-width: 0;
}
.contact-with-forms > article > p {
  max-width: 430px;
  min-height: 52px;
}
.whatsapp-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
  margin-top: 30px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.form-wide {
  grid-column: 1/-1;
}
.form-field label {
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff;
}
.form-field label span {
  font-size: 12px;
  color: #9bb8d7;
}
.form-field input,
.form-field select,
.form-field textarea {
  display: block;
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(9, 38, 75, 0.18);
  border-radius: 5px;
  background: #ffffff;
  color: #09264b;
  font: 400 16px/1.5 var(--sans);
  padding: 12px 14px;
  transition:
    border-color 0.2s,
    background 0.2s;
  box-shadow: none;
}
.form-field select {
  padding-right: 10px;
  cursor: pointer;
}
.form-field select option {
  background: #ffffff;
  color: #09264b;
}
.form-field textarea {
  resize: vertical;
  min-height: 112px;
  max-height: 280px;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #526579;
  opacity: 1;
  font-size: 14px;
}
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--blue);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-color: transparent;
  background: #ffffff;
}
.form-field :user-invalid {
  border-color: #ef4444;
}
.contact .form-note {
  font-size: 12px;
  line-height: 1.65;
  color: #9bb8d7;
  margin: 0;
}
.form-submit {
  margin-top: 2px;
}
.form-submit button {
  border: 0;
  width: 100%;
  justify-content: space-between;
}
.form-submit button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.form-feedback:has(.form-status:empty) {
  display: none;
}
.contact .form-status {
  font-size: 13px;
  line-height: 1.6;
  color: #4ade80;
  margin: 0 0 8px;
}
.whatsapp-fallback {
  font-size: 14px;
  color: var(--sky);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.whatsapp-fallback[hidden] {
  display: none;
}
.direct-whatsapp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #9bb8d7;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 22px;
  padding-top: 18px;
}
.direct-whatsapp span {
  white-space: nowrap;
  font-size: 13px;
  color: #ffffff;
}
.direct-whatsapp:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.no-js-forms {
  font-size: 14px;
  margin-top: 25px;
  color: #c2d5ea;
}
.contact-image {
  height: 650px;
  max-height: 60%;
}
.contact-shade {
  background:
    linear-gradient(90deg, var(--bg-main), transparent 80%),
    linear-gradient(0deg, var(--bg-main) 0%, var(--bg-main) 45%, transparent 85%);
}
@media (max-width: 1000px) {
  .contact-with-forms {
    gap: 30px;
  }
  .whatsapp-form {
    grid-template-columns: 1fr;
  }
  .form-field {
    grid-column: 1;
  }
  .direct-whatsapp {
    align-items: flex-start;
    flex-direction: column;
  }
  .form-field textarea {
    min-height: 120px;
  }
}
@media (max-width: 600px) {
  .office-map {
    margin-top: 42px;
  }
  .map-heading {
    align-items: flex-start;
    font-size: 14px;
  }
  .map-heading > a {
    font-size: 12px;
    white-space: nowrap;
  }
  .office-map iframe {
    height: 300px;
  }
  .contact-with-forms {
    gap: 52px;
  }
  .contact-with-forms > article > p {
    min-height: 0;
  }
  .whatsapp-form {
    margin-top: 24px;
    gap: 18px;
  }
  .form-field label {
    font-size: 14px;
  }
  .contact .form-note {
    font-size: 12px;
  }
  .form-submit .button {
    font-size: 14px;
    padding: 15px 20px;
  }
  .direct-whatsapp {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .contact-image {
    height: 300px;
    max-height: 24%;
  }
  .contact-shade {
    background:
      linear-gradient(0deg, var(--bg-main) 65%, transparent 100%),
      linear-gradient(90deg, rgba(244, 247, 251, 0.7), transparent);
  }
}
/* Client reference: contained dark cards, soft fields and pill-shaped actions. */
.contact-with-forms {
  gap: 28px;
  align-items: stretch;
}
.contact-with-forms > article {
  padding: 36px 32px 28px;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid rgba(70, 189, 242, 0.22);
  border-radius: 26px;
  box-shadow: 0 20px 60px rgba(2, 10, 25, 0.35);
  display: flex;
  flex-direction: column;
}
.contact-with-forms > article > .eyebrow {
  font-size: 11px;
  letter-spacing: 0.13em;
  color: #b5cce5;
}
.contact-with-forms > article > h3 {
  font-size: clamp(30px, 2.9vw, 42px);
  line-height: 1.08;
  margin-top: 19px;
  margin-bottom: 16px;
  color: #ffffff;
}
.contact-with-forms > article > p {
  font-size: 14px;
  line-height: 1.65;
  min-height: 48px;
  margin-bottom: 0;
  color: #b5cce5;
}
.whatsapp-form {
  column-gap: 18px;
  row-gap: 19px;
  margin-top: 28px;
  flex: 1;
}
.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 17px;
  background: #ffffff;
  border: 1px solid rgba(9, 38, 75, 0.18);
  padding: 12px 15px;
  min-height: 49px;
  color: #09264b;
}
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  background: #ffffff;
  border-color: var(--blue);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: #ffffff;
  outline-color: var(--blue);
}
.form-field textarea {
  min-height: 128px;
  border-radius: 19px;
}
.form-field select {
  appearance: none;
  padding-right: 35px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cpath d='m4 6 4 4 4-4' stroke='%2309264b' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-field select option {
  background: #ffffff;
  color: #09264b;
}
.form-field label {
  font-size: 14px;
  font-weight: 500;
}
.form-field label span {
  font-weight: 400;
  font-size: 12px;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #526579;
}
.contact .form-note {
  font-size: 12px;
  color: #9bb8d7;
}
.form-submit {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-top: 3px;
}
.form-submit .button {
  width: auto;
  max-width: 100%;
  min-height: 51px;
  border-radius: 999px;
  padding: 14px 22px;
  gap: 22px;
  line-height: 1.45;
  font-size: 14px;
  white-space: normal;
}
.form-submit .button.blue {
  background: var(--blue);
  color: #ffffff;
}
.form-submit .button.blue:hover {
  background: #007bc7;
  box-shadow: 0 8px 25px rgba(0, 143, 232, 0.35);
}
.form-submit .button.green {
  background: var(--green);
  color: #ffffff;
}
.form-submit .button.green:hover {
  background: #158037;
  box-shadow: 0 8px 25px rgba(27, 154, 67, 0.35);
}
.form-submit .button:focus-visible {
  outline-color: var(--sky);
}
.direct-whatsapp {
  margin-top: 24px;
  padding-top: 19px;
  line-height: 1.6;
}
@media (min-width: 901px) {
  .contact-with-forms .whatsapp-form {
    grid-template-columns: 1fr 1fr;
  }
  .contact-with-forms .form-field {
    grid-column: auto;
  }
  .contact-with-forms .form-field.form-wide {
    grid-column: 1/-1;
  }
}
@media (max-width: 900px) {
  .contact-with-forms {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
    gap: 26px;
  }
  .contact-with-forms > article {
    padding: 34px;
  }
  .contact-with-forms .whatsapp-form {
    grid-template-columns: 1fr 1fr;
  }
  .contact-with-forms .form-field {
    grid-column: auto;
  }
  .contact-with-forms .form-field.form-wide {
    grid-column: 1/-1;
  }
  .contact-with-forms > article > p {
    min-height: 0;
  }
  .direct-whatsapp {
    flex-direction: row;
  }
}
@media (max-width: 540px) {
  .contact-with-forms > article {
    padding: 28px 20px 23px;
    border-radius: 23px;
  }
  .contact-with-forms > article > h3 {
    font-size: 34px;
  }
  .contact-with-forms > article > .eyebrow {
    font-size: 10px;
  }
  .contact-with-forms .whatsapp-form {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .contact-with-forms .form-field {
    grid-column: 1;
  }
  .form-submit .button {
    width: 100%;
    padding-inline: 19px;
  }
  .direct-whatsapp {
    flex-wrap: wrap;
    gap: 5px;
  }
  .form-field input,
  .form-field select {
    min-height: 51px;
  }
}
@media (forced-colors: active) {
  .form-field select {
    appearance: auto;
  }
}
