.contact-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 70px;
  padding: 0 max(24px, calc((100vw - 1110px) / 2));
  border-bottom: 1px solid #cfe0ef;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: #385569;
  font-size: 20px;
  font-weight: 800;
}

.brand strong {
  font-weight: 500;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  color: #fff;
  background: linear-gradient(135deg, #0d78c8, #10bee0);
  border-radius: 10px;
  place-items: center;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #385569;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #008dd2;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.header-actions .btn {
  min-height: 42px;
  padding: 0 20px;
  font-size: 13px;
  text-transform: none;
}

.lang-link {
  color: #385569;
  font-size: 13px;
  font-weight: 800;
}

.lang-link strong {
  color: #007bd0;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #eef7ff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: #385569;
}

.contact-hero {
  position: relative;
  min-height: 345px;
  padding: 22px 0 58px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.breadcrumb {
  display: flex;
  gap: 9px;
  margin-bottom: 62px;
  color: #6f879a;
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb a {
  color: #007bd0;
}

.hero-copy {
  max-width: 670px;
}

.contact-hero .heading-xl {
  color: #385569;
  font-size: clamp(54px, 6.8vw, 82px);
}

.contact-hero .lead {
  max-width: 650px;
  color: #6a8298;
  font-size: 22px;
}

.label-line {
  position: relative;
  padding-left: 38px;
  color: #007bd0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.label-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 2px;
  background: #007bd0;
}

.hero-ring {
  position: absolute;
  right: -135px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  border: 42px solid rgba(221, 235, 247, 0.8);
  border-radius: 50%;
}

.inquiry-section {
  padding-top: 78px;
  background: linear-gradient(180deg, #edf6fc 0%, #eaf5fc 100%);
}

.inquiry-section .section-head {
  max-width: 760px;
}

.inquiry-section .heading-md {
  color: #385569;
}

.inquiry-section .section-head p:not(.eyebrow) {
  color: #7b91a4;
  font-size: 18px;
}

.contact-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  margin-bottom: 20px;
  border: 1px solid #cce0f3;
  border-radius: 999px;
  background: #fff;
}

.contact-tabs button {
  min-height: 40px;
  padding: 0 24px;
  color: #385569;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.contact-tabs button.active,
.contact-tabs button:hover {
  color: #fff;
  background: linear-gradient(180deg, #00a9d9, #007bd0);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 305px;
  gap: 32px;
  margin-top: 50px;
}

.contact-form,
.side-card {
  border: 1px solid #cbe0f2;
  border-radius: 14px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 24px 54px rgba(49, 96, 135, 0.11);
}

.contact-form {
  display: grid;
  gap: 28px;
  padding: 34px;
}

.contact-form label,
.contact-form fieldset {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.contact-form span,
.contact-form legend {
  color: #385569;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: #385569;
  border: 1px solid #cbe0f2;
  border-radius: 14px;
  background: #f8fcff;
  font: inherit;
  font-weight: 700;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form textarea {
  min-height: 210px;
  padding-top: 18px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #008dd2;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 141, 210, 0.1);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.choice-row {
  display: flex;
  gap: 12px;
}

.choice-row label {
  position: relative;
  display: grid;
  width: 145px;
}

.choice-row input {
  position: absolute;
  opacity: 0;
}

.choice-row span {
  display: grid;
  min-height: 44px;
  border: 1px solid #cbe0f2;
  border-radius: 999px;
  background: #f8fcff;
  place-items: center;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.choice-row input:checked + span,
.choice-row label:hover span {
  color: #fff;
  border-color: #008dd2;
  background: #008dd2;
}

.privacy-row {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 12px !important;
}

.privacy-row input {
  min-height: auto;
  width: 16px;
  height: 16px;
  margin-top: 4px;
}

.privacy-row span {
  color: #6b8196;
  font-size: 14px;
  font-weight: 700;
}

.privacy-row a {
  color: #007bd0;
  text-decoration: underline;
}

.contact-form .btn {
  width: max-content;
}

.contact-sidebar {
  display: grid;
  align-content: start;
  gap: 16px;
}

.side-card {
  padding: 26px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.side-card:hover {
  border-color: #008dd2;
}

.side-card.highlight {
  background:
    radial-gradient(circle at 100% 0%, rgba(72, 220, 229, 0.24), transparent 45%),
    #fff;
}

.card-icon {
  display: grid;
  width: 28px;
  height: 28px;
  margin-bottom: 28px;
  color: #007bd0;
  border: 1px solid #cbe0f2;
  border-radius: 7px;
  place-items: center;
  font-size: 10px;
  font-weight: 900;
}

.side-card h3 {
  margin: 0 0 10px;
  color: #385569;
  font-size: 29px;
  line-height: 1.05;
}

.side-card p:not(.eyebrow) {
  margin-bottom: 18px;
  color: #6d8499;
}

.contact-pill {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-top: 10px;
  padding: 7px 13px;
  color: #007bd0;
  border: 1px solid #cbe0f2;
  border-radius: 999px;
  background: #eff8ff;
  font-size: 14px;
  font-weight: 900;
}

.location-box {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  padding: 10px;
  border: 1px solid #cbe0f2;
  border-radius: 13px;
  background: #f8fcff;
}

.location-box span {
  height: 52px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 40% 45%, #008dd2 0 3px, transparent 4px),
    linear-gradient(135deg, #ffffff, #e9f4fd);
}

.location-box strong {
  color: #385569;
  line-height: 1.15;
}

.postal-link {
  display: block;
  margin-top: 18px;
  color: #385569;
  text-align: center;
  text-decoration: underline;
  font-weight: 900;
}

.contact-footer {
  position: relative;
  padding: 76px 0 190px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 100%, rgba(58, 181, 235, 0.2), transparent 27%),
    linear-gradient(180deg, #f9fcff, #edf7ff);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.22fr 1.25fr 1fr 0.95fr;
  gap: 66px;
}

.footer-brand {
  margin-bottom: 20px;
}

.contact-footer h3 {
  margin: 0 0 18px;
  color: #b9cbda;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-footer p,
.contact-footer a {
  display: block;
  margin-bottom: 10px;
  color: #6d8499;
  font-size: 16px;
}

.review-card {
  display: grid;
  grid-template-columns: 1fr 58px;
  max-width: 260px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid #cbe0f2;
  border-radius: 12px;
  background: #fff;
}

.review-card strong {
  display: block;
  color: #385569;
}

.review-card span {
  color: #6d8499;
  font-size: 13px;
  font-weight: 800;
}

.review-card i {
  border-radius: 50%;
  background: linear-gradient(135deg, #ccefff, #008dd2);
}

.language-pill {
  width: max-content;
  padding: 8px 15px;
  border: 1px solid #cbe0f2;
  border-radius: 999px;
  background: #fff;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid #d8e6f5;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.footer-badge {
  position: absolute;
  right: 0;
  bottom: 70px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: max-content;
  margin: 0 auto;
  padding: 28px 70px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 28px 80px rgba(0, 125, 190, 0.14);
}

.footer-badge .brand-mark {
  width: 58px;
  height: 58px;
  font-size: 30px;
}

.footer-badge strong {
  color: #385569;
  font-size: 44px;
  line-height: 1;
}

.footer-badge em {
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 980px) {
  .contact-header {
    grid-template-columns: auto auto;
    padding-right: 17px;
    padding-left: 17px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .header-actions {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: 17px;
    left: 17px;
    display: grid;
    gap: 0;
    padding: 18px;
    border: 1px solid #d9e7f7;
    border-radius: 10px;
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px 6px;
  }

  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding-bottom: 48px;
  }

  .breadcrumb {
    margin-bottom: 44px;
  }

  .contact-hero .heading-xl {
    font-size: 48px;
  }

  .hero-ring {
    right: -220px;
  }

  .field-grid,
  .choice-row {
    grid-template-columns: 1fr;
  }

  .choice-row {
    display: grid;
  }

  .choice-row label,
  .contact-form .btn {
    width: 100%;
  }

  .contact-form,
  .side-card {
    padding: 22px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom div {
    flex-wrap: wrap;
  }

  .footer-badge {
    position: static;
    width: min(100%, 340px);
    margin-top: 56px;
    padding: 22px 28px;
  }

  .footer-badge strong {
    font-size: 32px;
  }
}

.fluentform.ff-default.fluentform_wrapper_1.ffs_default_wrap {
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background-color: #fffffff2 !important;
    box-shadow: none !important;
    outline: none !important;
    min-inline-size: 100%;
    border: 1px solid #cbe0f2;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 54px rgba(49, 96, 135, 0.11);
    padding: 30px !important;
}