/* ================================
   10. CONTACT FORM 
   sx-contanct-form: to control the convert forms modules
   se-contact-page: control contact landing page
   ================================ */

   /* Center the Convert Forms module */
.sx-contanct-form {
  display: flex;
  justify-content: center;
}

/* =====================================
   CONTACT PAGE HEADER (Sensolytics)
   ===================================== */

.sx-contact-page {
  margin-bottom: 40px;
}

.sx-contact-header {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.sx-contact-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.sx-contact-intro {
  font-size: 16px;
  color: rgba(0,0,0,.75);
  max-width: 760px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

/* ACTION BUTTONS */
.sx-contact-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}


/* Active (current page) */
.sx-contact-btn.is-active {
  /* match primary CTA from btn.css */
  background: var(--color-brand-blue, #2D84CD);
  color: var(--color-white, #ffffff);
  padding: 12px 24px;
  border: 1px solid var(--color-brand-blue, #2D84CD);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;

  /* ensure it's visually non-interactive */
  cursor: default;
  pointer-events: none;

  /* keep a subtle inactive appearance */
  opacity: 0.95;
  transition: none; /* disable hover/transform effects for the inactive state */
}

/* Outline buttons */
.sx-contact-btn.is-outline {
  display: inline-block;
  background: var(--color-white);
  color: var(--color-brand-blue);
  padding: 12px 24px; /*btn size: top-bottom 12px left-right 24px*/
  border: 1px solid var(--color-brand-blue);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease;
}

.sx-contact-btn.is-outline:hover {
  background: var(--color-brand-blue);
  opacity: 0.9;
  transform: translateY(-2px);
  color: var(--color-white);
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .sx-contact-title {
    font-size: 26px;
  }

  .sx-contact-intro {
    font-size: 15px;
  }
}