.elementor-225 .elementor-element.elementor-element-4552213{--display:flex;}/* Start custom CSS for html, class: .elementor-element-5a21339 *//* ===== MIRAGEMATRIX CONTACT PAGE ===== */

.mm-contact-page {
  position: relative;
  overflow: hidden;
  background: #030303;
  color: #ffffff;
}

.mm-contact-page__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(47,128,255,0.10), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(255,138,42,0.08), transparent 22%),
    linear-gradient(180deg, #020202 0%, #05070d 45%, #020202 100%);
}

.mm-contact-page__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.52), rgba(0,0,0,0.28)),
    linear-gradient(to top, rgba(0,0,0,0.26), rgba(0,0,0,0.10));
}

.mm-contact-page__inner {
  position: relative;
  z-index: 2;
  width: min(92%, 1320px);
  margin: 0 auto;
  padding: 90px 20px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

/* LEFT */
.mm-contact-page__eyebrow {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.mm-contact-page__title {
  margin: 0 0 20px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow:
    0 0 18px rgba(47,128,255,0.10),
    0 0 24px rgba(255,138,42,0.06);
}

.mm-contact-page__text {
  max-width: 640px;
  margin: 0 0 30px;
  color: rgba(255,255,255,0.84);
  font-size: 18px;
  line-height: 1.7;
}

.mm-contact-page__info {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.mm-contact-page__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mm-contact-page__label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
}

.mm-contact-page__item a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

.mm-contact-page__item a:hover {
  text-shadow: 0 0 10px rgba(47,128,255,0.28);
}

.mm-contact-page__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  background:
    linear-gradient(rgba(9,12,22,0.96), rgba(9,12,22,0.96)) padding-box,
    linear-gradient(90deg, #2f80ff 0%, #5ec0ff 40%, #ff8a2a 100%) border-box;
  border: 1.5px solid transparent;
  box-shadow:
    0 0 14px rgba(47,128,255,0.22),
    0 0 18px rgba(255,138,42,0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.mm-contact-page__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow:
    0 0 20px rgba(47,128,255,0.30),
    0 0 24px rgba(255,138,42,0.22);
}

/* RIGHT FORM CARD */
.mm-contact-page__form-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 34px 28px;
  box-shadow:
    0 14px 32px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mm-contact-page__form-title {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.2;
  color: #ffffff;
}

.mm-contact-page__form-text {
  margin: 0 0 22px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.6;
}

.mm-contact-page__form-placeholder {
  min-height: 320px;
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  text-align: center;
  padding: 24px;
}

/* GLOW LINE */
.mm-contact-page__glow-line {
  position: relative;
  height: 2px;
  width: 100%;
  background: rgba(255,255,255,0.05);
  overflow: hidden;
}

.mm-contact-page__glow-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(47,128,255,0.9) 20%,
    rgba(255,138,42,0.9) 45%,
    rgba(110,231,255,0.95) 65%,
    transparent 100%
  );
  box-shadow:
    0 0 10px rgba(47,128,255,0.6),
    0 0 14px rgba(255,138,42,0.5),
    0 0 18px rgba(110,231,255,0.5);
  animation: mmContactGlowFlow 7s linear infinite;
}

@keyframes mmContactGlowFlow {
  0% {
    transform: translateX(-30%);
  }
  100% {
    transform: translateX(140%);
  }
}

/* TABLET */
@media (max-width: 1024px) {
  .mm-contact-page__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 72px 18px;
  }

  .mm-contact-page__left,
  .mm-contact-page__right {
    text-align: center;
  }

  .mm-contact-page__text {
    margin-left: auto;
    margin-right: auto;
  }

  .mm-contact-page__info {
    justify-items: center;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .mm-contact-page__inner {
    padding: 56px 14px;
  }

  .mm-contact-page__text {
    font-size: 16px;
  }

  .mm-contact-page__item a {
    font-size: 17px;
  }

  .mm-contact-page__form-card {
    padding: 26px 18px;
    border-radius: 18px;
  }

  .mm-contact-page__form-title {
    font-size: 24px;
  }

  .mm-contact-page__cta {
    width: 100%;
  }
}/* End custom CSS */