.contact { background: var(--bg); }
.soc-icons { display: flex; align-items: center; justify-content: center; gap: 3rem; padding: 3rem 0 2rem; }
.soc-icon { display: flex; align-items: center; justify-content: center; width: 64px; height: 64px; color: rgba(255,255,255,0.5); transition: color 0.3s var(--ease), transform 0.3s var(--ease); cursor: none; }
.soc-icon svg { width: 36px; height: 36px; }
.soc-icon:hover { color: var(--white); transform: translateY(-4px) scale(1.1); }
@media (max-width: 480px) {
  .soc-icons { gap: 2rem; }
  .soc-icon { width: 48px; height: 48px; }
  .soc-icon svg { width: 28px; height: 28px; }
}
