.contact-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

.contact-card i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.contact-card h5 {
  margin-bottom: 0.4rem;
  color: var(--accent);
}

.contact-card a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Social links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.social-links a:hover {
  transform: translateY(-4px);
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.14);
}
