/* ==========================================
   CONTACT PAGE SLC ONE STOP
========================================== */

.slc-contact {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--ws-header-height));
  padding-block: clamp(80px, 9vw, 125px);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 84% 18%,
      rgba(21, 151, 255, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 10% 75%,
      rgba(7, 87, 217, 0.13),
      transparent 31%
    ),
    linear-gradient(
      145deg,
      var(--ws-navy-950) 0%,
      var(--ws-navy-900) 52%,
      #071a38 100%
    );
}

.slc-contact::before,
.slc-contact::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(70, 184, 255, 0.32),
      transparent
    );
}

.slc-contact::before {
  top: 0;
}

.slc-contact::after {
  bottom: 0;
}

/* Background */

.slc-contact__background {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.slc-contact__grid {
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image:
    linear-gradient(
      rgba(74, 170, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(74, 170, 255, 0.05) 1px,
      transparent 1px
    );
  background-size: 64px 64px;
  mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.85),
      transparent
    );
  -webkit-mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.85),
      transparent
    );
}

.slc-contact__glow {
  position: absolute;
  display: block;
  border-radius: 50%;
  pointer-events: none;
}

.slc-contact__glow--left {
  bottom: -360px;
  left: -260px;
  width: 670px;
  height: 670px;
  border: 1px solid rgba(36, 147, 255, 0.09);
  background: rgba(7, 87, 217, 0.06);
}

.slc-contact__glow--right {
  top: -270px;
  right: -190px;
  width: 660px;
  height: 660px;
  border: 1px solid rgba(70, 184, 255, 0.1);
  background: rgba(21, 151, 255, 0.06);
  box-shadow:
    0 0 170px rgba(8, 120, 249, 0.1),
    inset 0 0 110px rgba(70, 184, 255, 0.04);
}

/* Container */

.slc-contact__container {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

/* Breadcrumb */

.slc-contact__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 34px;
  color: #708aa6;
  font-size: 0.72rem;
  font-weight: 680;
}

.slc-contact__breadcrumb a {
  color: #9fc5e8;
  text-decoration: none;
  transition: color 0.25s ease;
}

.slc-contact__breadcrumb a:hover {
  color: var(--ws-blue-400);
}

.slc-contact__breadcrumb span[aria-current="page"] {
  color: #dceeff;
}

/* Header */

.slc-contact__header {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.slc-contact__eyebrow {
  display: inline-flex;
  min-height: 35px;
  align-items: center;
  padding-inline: 15px;
  color: #c7e9ff;
  border: 1px solid rgba(70, 184, 255, 0.22);
  border-radius: 100px;
  background: rgba(15, 82, 158, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 24px rgba(0, 32, 78, 0.13);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.slc-contact__title {
  margin: 22px 0 0;
  color: #f5fbff;
  font-size: clamp(2.7rem, 5.4vw, 4.8rem);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.slc-contact__title span {
  color: transparent;
  background:
    linear-gradient(
      100deg,
      #7fd7ff,
      var(--ws-blue-500),
      #65c8ff
    );
  background-clip: text;
  -webkit-background-clip: text;
  filter:
    drop-shadow(
      0 12px 30px rgba(8, 120, 249, 0.2)
    );
}

.slc-contact__description {
  max-width: 760px;
  margin: 24px auto 0;
  color: #98b1ca;
  font-size: clamp(0.96rem, 1.3vw, 1.06rem);
  line-height: 1.82;
}

/* Layout */

.slc-contact__layout {
  display: grid;
  grid-template-columns:
    minmax(300px, 0.76fr)
    minmax(0, 1.24fr);
  gap: 20px;
  margin-top: clamp(45px, 6vw, 70px);
}

/* Sidebar */

.slc-contact__sidebar,
.slc-contact__form-wrapper {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(108, 185, 255, 0.15);
  border-radius: 25px;
  background:
    linear-gradient(
      145deg,
      rgba(11, 35, 72, 0.76),
      rgba(3, 15, 35, 0.9)
    );
  box-shadow:
    0 35px 80px rgba(0, 7, 24, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.slc-contact__sidebar::before,
.slc-contact__form-wrapper::before {
  position: absolute;
  top: 0;
  right: 12%;
  left: 12%;
  height: 1px;
  content: "";
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(84, 190, 255, 0.52),
      transparent
    );
}

.slc-contact__sidebar {
  padding: clamp(24px, 3vw, 35px);
}

.slc-contact__sidebar-label {
  color: var(--ws-blue-400);
  font-size: 0.7rem;
  font-weight: 790;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.slc-contact__sidebar-top h2 {
  margin: 13px 0 0;
  color: #edf8ff;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 820;
  line-height: 1.24;
  letter-spacing: -0.035em;
}

.slc-contact__sidebar-top p {
  margin: 15px 0 0;
  color: #829db8;
  font-size: 0.84rem;
  line-height: 1.72;
}

/* Contact Channels */

.slc-contact__channels {
  display: grid;
  gap: 11px;
  margin-top: 28px;
}

.slc-contact__channel {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  min-height: 88px;
  padding: 14px;
  border: 1px solid rgba(104, 180, 255, 0.11);
  border-radius: 16px;
  background: rgba(4, 18, 42, 0.57);
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.slc-contact__channel:hover {
  border-color: rgba(70, 184, 255, 0.27);
  background: rgba(11, 42, 83, 0.62);
  transform: translateY(-2px);
}

.slc-contact__channel-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--ws-blue-400);
  border: 1px solid rgba(70, 184, 255, 0.18);
  border-radius: 14px;
  background: rgba(21, 151, 255, 0.08);
}

.slc-contact__channel-icon svg {
  width: 23px;
  height: 23px;
}

.slc-contact__channel > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.slc-contact__channel-label {
  color: #718ca8;
  font-size: 0.61rem;
  font-weight: 740;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.slc-contact__channel strong,
.slc-contact__channel a {
  overflow-wrap: anywhere;
  color: #e1f1ff;
  font-size: 0.8rem;
  font-weight: 760;
  text-decoration: none;
}

.slc-contact__channel a:hover {
  color: var(--ws-blue-400);
}

.slc-contact__channel small {
  color: #7189a3;
  font-size: 0.65rem;
  line-height: 1.48;
}

/* Topics */

.slc-contact__topics {
  padding-top: 24px;
  margin-top: 25px;
  border-top: 1px solid rgba(109, 181, 255, 0.11);
}

.slc-contact__topics > strong {
  color: #dceeff;
  font-size: 0.78rem;
  font-weight: 760;
}

.slc-contact__topics ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 17px 0 0;
  list-style: none;
}

.slc-contact__topics li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  color: #8fa8c1;
  font-size: 0.72rem;
  line-height: 1.5;
}

.slc-contact__topics li span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--ws-blue-400);
  border: 1px solid rgba(70, 184, 255, 0.15);
  border-radius: 8px;
  background: rgba(21, 151, 255, 0.07);
  font-size: 0.64rem;
  font-weight: 900;
}

/* Security */

.slc-contact__security {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  padding: 14px;
  margin-top: 25px;
  border: 1px solid rgba(255, 192, 91, 0.14);
  border-radius: 14px;
  background: rgba(255, 169, 46, 0.055);
}

.slc-contact__security-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #ffd27c;
  border: 1px solid rgba(255, 202, 103, 0.17);
  border-radius: 11px;
  background: rgba(255, 175, 46, 0.07);
}

.slc-contact__security-icon svg {
  width: 19px;
  height: 19px;
}

.slc-contact__security p {
  margin: 0;
  color: #9e9a8e;
  font-size: 0.67rem;
  line-height: 1.6;
}

/* Form Wrapper */

.slc-contact__form-wrapper {
  padding: clamp(24px, 3.5vw, 42px);
}

.slc-contact__form-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(109, 181, 255, 0.11);
}

.slc-contact__form-number {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  color: #ffffff;
  border: 1px solid rgba(108, 202, 255, 0.3);
  border-radius: 14px;
  background:
    linear-gradient(
      145deg,
      var(--ws-blue-500),
      var(--ws-blue-700)
    );
  box-shadow: 0 10px 25px rgba(8, 120, 249, 0.25);
  font-size: 0.72rem;
  font-weight: 850;
}

.slc-contact__form-header > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.slc-contact__form-header > div > span {
  color: var(--ws-blue-400);
  font-size: 0.64rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slc-contact__form-header h2 {
  margin: 0;
  color: #edf8ff;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

/* Form */

.slc-contact__form {
  margin-top: 27px;
}

.slc-contact__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.slc-contact__field {
  min-width: 0;
}

.slc-contact__field--full {
  margin-top: 18px;
}

.slc-contact__field label,
.slc-contact__label-row label {
  display: inline-block;
  margin-bottom: 9px;
  color: #d5e7f8;
  font-size: 0.72rem;
  font-weight: 730;
}

.slc-contact__field label span,
.slc-contact__label-row label span {
  color: #6dc9ff;
}

.slc-contact__label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.slc-contact__label-row small {
  color: #6e87a2;
  font-size: 0.65rem;
}

.slc-contact__input-wrapper {
  position: relative;
}

.slc-contact__input-icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 15px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: #6386a8;
  pointer-events: none;
  transform: translateY(-50%);
  transition: color 0.25s ease;
}

.slc-contact__input-icon svg {
  width: 19px;
  height: 19px;
}

.slc-contact__input-wrapper input,
.slc-contact__input-wrapper select,
.slc-contact__input-wrapper textarea {
  width: 100%;
  color: #e9f6ff;
  border: 1px solid rgba(105, 177, 247, 0.16);
  outline: none;
  background: rgba(3, 15, 35, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
  font: inherit;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.slc-contact__input-wrapper input,
.slc-contact__input-wrapper select {
  min-height: 54px;
  padding: 0 44px;
  border-radius: 13px;
  font-size: 0.78rem;
}

.slc-contact__input-wrapper textarea {
  min-height: 180px;
  padding: 16px 16px 16px 45px;
  border-radius: 15px;
  font-size: 0.8rem;
  line-height: 1.65;
  resize: vertical;
}

.slc-contact__input-wrapper textarea + * {
  top: 18px;
}

.slc-contact__input-wrapper--textarea
.slc-contact__input-icon {
  top: 17px;
  transform: none;
}

.slc-contact__input-wrapper input::placeholder,
.slc-contact__input-wrapper textarea::placeholder {
  color: #536c86;
  opacity: 1;
}

.slc-contact__input-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
  cursor: pointer;
}

.slc-contact__input-wrapper--select::after {
  position: absolute;
  top: 50%;
  right: 17px;
  width: 8px;
  height: 8px;
  content: "";
  border-right: 2px solid #6f91b3;
  border-bottom: 2px solid #6f91b3;
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

.slc-contact__input-wrapper select option {
  color: #eaf5ff;
  background: var(--ws-navy-900);
}

.slc-contact__input-wrapper:focus-within
.slc-contact__input-icon {
  color: var(--ws-blue-400);
}

.slc-contact__input-wrapper input:focus,
.slc-contact__input-wrapper select:focus,
.slc-contact__input-wrapper textarea:focus {
  border-color: rgba(70, 184, 255, 0.56);
  background: rgba(5, 24, 52, 0.9);
  box-shadow:
    0 0 0 4px rgba(21, 151, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.slc-contact__field.is-invalid
.slc-contact__input-wrapper input,
.slc-contact__field.is-invalid
.slc-contact__input-wrapper select,
.slc-contact__field.is-invalid
.slc-contact__input-wrapper textarea {
  border-color: rgba(255, 105, 105, 0.58);
  box-shadow: 0 0 0 4px rgba(255, 85, 85, 0.07);
}

.slc-contact__error {
  display: block;
  min-height: 17px;
  margin-top: 6px;
  color: #ff9292;
  font-size: 0.63rem;
  line-height: 1.45;
}

/* Agreement */

.slc-contact__agreement {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 14px;
  margin-top: 18px;
  border: 1px solid rgba(104, 180, 255, 0.1);
  border-radius: 13px;
  background: rgba(5, 20, 45, 0.48);
}

.slc-contact__agreement input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--ws-blue-500);
}

.slc-contact__agreement label {
  color: #8099b3;
  font-size: 0.67rem;
  line-height: 1.6;
}

.slc-contact__agreement a {
  color: var(--ws-blue-400);
  font-weight: 700;
  text-decoration: none;
}

.slc-contact__agreement a:hover {
  text-decoration: underline;
}

.slc-contact__error--agreement {
  margin-left: 30px;
}

/* Form Status */

.slc-contact__status {
  padding: 13px 15px;
  margin-top: 16px;
  border-radius: 12px;
  font-size: 0.7rem;
  line-height: 1.55;
}

.slc-contact__status.is-success {
  color: #aaf1cf;
  border: 1px solid rgba(72, 220, 156, 0.2);
  background: rgba(40, 190, 125, 0.08);
}

.slc-contact__status.is-error {
  color: #ffb2b2;
  border: 1px solid rgba(255, 105, 105, 0.2);
  background: rgba(255, 75, 75, 0.07);
}

/* Actions */

.slc-contact__actions {
  display: flex;
  align-items: center;
  gap: 17px;
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid rgba(109, 181, 255, 0.1);
}

.slc-contact__submit {
  display: inline-flex;
  min-height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  color: #ffffff;
  border: 1px solid rgba(107, 200, 255, 0.38);
  border-radius: 13px;
  background:
    linear-gradient(
      135deg,
      var(--ws-blue-500),
      var(--ws-blue-700)
    );
  box-shadow:
    0 14px 30px rgba(8, 120, 249, 0.27),
    inset 0 1px 0 rgba(255, 255, 255, 0.23);
  font-size: 0.76rem;
  font-weight: 780;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

.slc-contact__submit:hover {
  box-shadow:
    0 20px 40px rgba(8, 120, 249, 0.39),
    inset 0 1px 0 rgba(255, 255, 255, 0.23);
  transform: translateY(-3px);
}

.slc-contact__submit:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
}

.slc-contact__submit svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.slc-contact__submit:hover svg {
  transform: translateX(4px);
}

.slc-contact__actions p {
  margin: 0;
  color: #6f88a3;
  font-size: 0.65rem;
  line-height: 1.55;
}

/* Honeypot */

.slc-contact__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Bottom CTA */

.slc-contact__bottom {
  display: grid;
  grid-template-columns:
    50px
    minmax(0, 1fr)
    auto;
  align-items: center;
  gap: 15px;
  padding: 22px 24px;
  margin-top: 20px;
  border: 1px solid rgba(104, 180, 255, 0.13);
  border-radius: 18px;
  background:
    linear-gradient(
      135deg,
      rgba(13, 42, 84, 0.61),
      rgba(4, 17, 39, 0.75)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.slc-contact__bottom-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--ws-blue-400);
  border: 1px solid rgba(70, 184, 255, 0.18);
  border-radius: 14px;
  background: rgba(21, 151, 255, 0.08);
}

.slc-contact__bottom-icon svg {
  width: 24px;
  height: 24px;
}

.slc-contact__bottom-content strong {
  color: #e4f2ff;
  font-size: 0.84rem;
  font-weight: 760;
}

.slc-contact__bottom-content p {
  margin: 6px 0 0;
  color: #768fa9;
  font-size: 0.7rem;
  line-height: 1.58;
}

.slc-contact__bottom-link {
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  color: #ffffff;
  border: 1px solid rgba(107, 200, 255, 0.35);
  border-radius: 12px;
  background:
    linear-gradient(
      135deg,
      var(--ws-blue-500),
      var(--ws-blue-700)
    );
  box-shadow:
    0 13px 28px rgba(8, 120, 249, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-size: 0.7rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.slc-contact__bottom-link:hover {
  box-shadow:
    0 19px 38px rgba(8, 120, 249, 0.37),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
}

/* Focus Accessibility */

.slc-contact a:focus-visible,
.slc-contact button:focus-visible,
.slc-contact input:focus-visible,
.slc-contact select:focus-visible,
.slc-contact textarea:focus-visible {
  outline: 3px solid rgba(70, 184, 255, 0.4);
  outline-offset: 3px;
}

/* ==========================================
   CONTACT TABLET
========================================== */

@media (max-width: 1000px) {
  .slc-contact__layout {
    grid-template-columns: 1fr;
  }

  .slc-contact__channels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .slc-contact__channel {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .slc-contact__channel-icon {
    width: 44px;
    height: 44px;
  }
}

/* ==========================================
   CONTACT MOBILE
========================================== */

@media (max-width: 720px) {
  .slc-contact {
    padding-block: 65px 75px;
  }

  .slc-contact__container {
    width: min(100% - 28px, 1240px);
  }

  .slc-contact__breadcrumb {
    margin-bottom: 27px;
  }

  .slc-contact__eyebrow {
    min-height: 31px;
    padding-inline: 12px;
    font-size: 0.61rem;
  }

  .slc-contact__title {
    margin-top: 19px;
    font-size: clamp(2.25rem, 12vw, 3.3rem);
    line-height: 1.07;
  }

  .slc-contact__description {
    margin-top: 20px;
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .slc-contact__layout {
    gap: 14px;
    margin-top: 42px;
  }

  .slc-contact__sidebar,
  .slc-contact__form-wrapper {
    border-radius: 20px;
  }

  .slc-contact__sidebar,
  .slc-contact__form-wrapper {
    padding: 21px;
  }

  .slc-contact__channels {
    grid-template-columns: 1fr;
  }

  .slc-contact__form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .slc-contact__field--full {
    margin-top: 15px;
  }

  .slc-contact__input-wrapper input,
  .slc-contact__input-wrapper select {
    min-height: 52px;
  }

  .slc-contact__input-wrapper textarea {
    min-height: 170px;
  }

  .slc-contact__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .slc-contact__submit {
    width: 100%;
  }

  .slc-contact__actions p {
    text-align: center;
  }

  .slc-contact__bottom {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 19px;
  }

  .slc-contact__bottom-icon {
    width: 46px;
    height: 46px;
  }

  .slc-contact__bottom-link {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 420px) {
  .slc-contact__sidebar,
  .slc-contact__form-wrapper {
    padding: 18px;
  }

  .slc-contact__channel {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 12px;
  }

  .slc-contact__channel-icon {
    width: 42px;
    height: 42px;
  }

  .slc-contact__form-header {
    align-items: flex-start;
  }

  .slc-contact__form-number {
    width: 43px;
    height: 43px;
    flex-basis: 43px;
  }
}