/* ── Contact Hero ── */
.contact-hero {
  position: relative;
  padding: 140px 0 96px;
  overflow: hidden;
  text-align: center;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.contact-hero .container {
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-email-btn {
  font-size: 16px;
  padding: 14px 28px;
  word-break: break-all;
}

/* ── Contact Cards Section ── */
.contact-section {
  padding: 72px 0 96px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Info Card ── */
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s, transform 0.2s;
}

.info-card:hover {
  border-color: rgba(124, 58, 237, 0.4);
  transform: translateY(-2px);
}

.info-icon {
  font-size: 28px;
  margin-bottom: 4px;
}

.info-card h3 {
  font-size: 16px;
  font-weight: 700;
}

.info-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.info-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--purple-light);
  transition: color 0.2s;
  margin-top: 4px;
  word-break: break-all;
}

.info-link:hover {
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .hero-email-btn {
    font-size: 14px;
    padding: 12px 20px;
  }
}
