/* =========================================================
   Contact Us — page-specific styles
   Built on top of /assets/css/site.css design tokens
========================================================= */

/* -------- page hero -------- */
.page-hero {
  padding: 160px 0 70px;
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--grad-brand);
  filter: blur(140px);
  opacity: 0.16;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.1rem); margin-bottom: 16px; }
.page-hero .lead {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* site.css's .promo-section carries a -120px top margin meant to pull it
   up over the homepage's full-height video hero. This page's .page-hero
   is much shorter, so that overlap clips the lead paragraph — cancel it. */
.promo-section { margin-top: 0; padding-top: 70px; }

/* -------- contact layout -------- */
.contact-info-wrap {
  max-width: 560px;
  margin: 0 auto;
}

/* -------- info card -------- */
.contact-info-card {
  padding: 40px;
  background: linear-gradient(160deg, rgba(105, 167, 255, 0.13), rgba(100, 229, 207, 0.06));
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--grad-brand);
  filter: blur(100px);
  opacity: 0.28;
  top: -100px;
  right: -80px;
  pointer-events: none;
}
.contact-info-card h3,
.contact-info-card > p,
.contact-info-list,
.contact-info-social { position: relative; z-index: 1; }
.contact-info-card h3 { font-size: 1.3rem; margin-bottom: 10px; }

.contact-info-list { margin: 24px 0 0; display: flex; flex-direction: column; gap: 20px; }
.contact-info-list li { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.contact-info-icon svg { width: 17px; height: 17px; }
.contact-info-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-faint);
  margin-bottom: 2px;
}
.contact-info-value { display: block; font-size: 0.95rem; color: var(--text); font-weight: 500; }
.contact-info-value a { color: var(--text); transition: color 0.2s ease; }
.contact-info-value a:hover { color: var(--teal); }

.contact-info-social {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.contact-info-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.contact-info-social svg { width: 16px; height: 16px; }
.contact-info-social a:hover { color: var(--teal); border-color: var(--border-strong); transform: translateY(-2px); }

/* -------- responsive -------- */
@media (max-width: 560px) {
  .page-hero { padding: 140px 0 50px; }
  .contact-info-card { padding: 28px; }
}
