/* HERO */
.contact-hero {
  min-height: 80vh;
  padding: 180px 8vw 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at top, #1b1f3b, #0b0f1a);
}

.contact-hero-inner {
  max-width: 900px;
}

.contact-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
}

.contact-hero p {
  margin-top: 20px;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* CONTACT METHODS */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.contact-card {
  background: var(--glass);
  padding: 32px;
  border-radius: 22px;
  backdrop-filter: blur(14px);
}

.contact-card h3 {
  margin-bottom: 10px;
  color: var(--accent);
}

.contact-card a {
  color: var(--text-dark);
  text-decoration: underline;
}

/* FORM */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: none;
  background: rgba(255,255,255,0.06);
  color: var(--text-dark);
  font-family: inherit;
}

/* RESPONSE NOTE */
.response-note {
  max-width: 720px;
  margin: auto;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* SOCIAL LINKS */
.social-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.social-links a {
  padding: 12px 22px;
  border-radius: 30px;
  background: var(--glass);
  text-decoration: none;
  color: var(--text-dark);
  backdrop-filter: blur(10px);
}
