/* ================================
   CONTACT PAGE
================================ */

.contact-page {
  padding: 70px 20px 100px;
}

.contact-section {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 60px);

  position: relative;
  overflow: hidden;

  border-radius: 30px;

  background-color: rgba(0, 0, 0, 0.8);

  border: 1px solid rgba(77, 184, 255, 0.35);

  color: #ffffff;

  animation: funnelGlow 3.5s infinite ease-in-out;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;

  border: 1px solid rgba(77, 184, 255, 0.45);

  box-shadow:
    0 0 14px rgba(77, 184, 255, 0.35),
    0 0 34px rgba(77, 184, 255, 0.16),
    inset 0 0 24px rgba(77, 184, 255, 0.06);
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    transparent 150px
  );
}

.contact-section > * {
  position: relative;
  z-index: 2;
}

.contact-intro {
  text-align: center;
  margin-bottom: 50px;
}

.contact-eyebrow {
  display: block;

  margin-bottom: 14px;

  color: #4db8ff;

  font-size: 0.9rem;
  font-weight: 800;

  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-title {
  position: relative;

  display: inline-block;

  margin: 0 0 28px;
  padding-bottom: 18px;

  font-family: "Acme", sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 0.95;

  color: #ffffff;

  text-shadow:
    0 0 15px rgba(77, 184, 255, 0.25),
    0 0 35px rgba(77, 184, 255, 0.12);
}

.contact-title::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: 0;

  width: 70%;
  height: 4px;

  transform: translateX(-50%);

  border-radius: 999px;

  background: linear-gradient(
    90deg,
    transparent,
    #4db8ff,
    #ffffff,
    #4db8ff,
    transparent
  );

  box-shadow:
    0 0 12px rgba(77, 184, 255, 0.8),
    0 0 25px rgba(77, 184, 255, 0.4);
}

.contact-description {
  max-width: 700px;
  margin: 0 auto 30px;

  font-size: 1.12rem;
  line-height: 1.9;

  color: rgba(255, 255, 255, 0.88);
}

.contact-cta {
  margin-top: 10px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.contact-card {
  padding: 28px;

  border-radius: 24px;

  background: rgba(77, 184, 255, 0.04);

  border: 1px solid rgba(77, 184, 255, 0.22);
  border-left: 5px solid #4db8ff;

  backdrop-filter: blur(12px);

  box-shadow:
    0 0 12px rgba(77, 184, 255, 0.12),
    0 0 24px rgba(77, 184, 255, 0.06),
    0 18px 45px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;

  margin-bottom: 18px;

  border-radius: 50%;

  color: #4db8ff;

  background: rgba(77, 184, 255, 0.1);

  border: 1px solid rgba(77, 184, 255, 0.35);

  font-size: 1.6rem;

  box-shadow:
    0 0 16px rgba(77, 184, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-card h2 {
  margin: 0 0 10px;

  font-family: "Acme", sans-serif;
  font-size: 1.8rem;

  color: #ffffff;
}

.contact-card p {
  margin: 0;

  font-size: 1.05rem;
  line-height: 1.7;

  color: rgba(255, 255, 255, 0.88);
}

.contact-content {
  margin-top: 50px;
}

/* MOBILE */

@media (max-width: 768px) {
  .contact-page {
    padding: 45px 16px 80px;
  }

  .contact-section {
    padding: 36px 24px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    text-align: center;
  }
}
