/* Sağda her zaman görünür yuvarlak iletişim ikonları */
.contact-float {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(-50%);
}

.contact-float .contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-float .contact-link:hover {
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-whatsapp {
  background: #25d366;
}

.contact-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
}

.contact-phone {
  background: var(--theme-color, #0b59db);
}

.contact-mail {
  background: #ea4335;
}
