.contact-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-icons .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d64fa2, #8a2be2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-icons .icon:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(214, 79, 162, 0.6);
}

.contact-icons .icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1); /* белые иконки на фоне */
}
.contact-icons .icon.whatsapp {
  background: #25D366; /* фирменный зелёный */
}

.contact-icons .icon.whatsapp:hover {
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.6);
}