.contact {
  padding: var(--space-1xl) 0;
  background: var(--background);
  text-align: center;
}

.contact-content h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

.contact-content p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  line-height: 1.6;
}

/* CTA BUTTONS */
.contact-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

/* SOCIAL LINKS */
.social-links {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
}

.social-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: var(--primary);
}

.closing-line {
  margin-top: var(--space-lg);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}