
.contact-popup {
  position: fixed;
  bottom: 30px;
  left: 20px;
  display: flex;
  align-items: center;
  background: #fffbe6;
  border-left: 6px solid #ff4d4f;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(255, 77, 79, 0.4);
  min-width: 340px;
  max-width: 460px;
  z-index: 9999;
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.5s ease-in-out;
  font-family: Arial, sans-serif;
}

.contact-popup.show {
  opacity: 1;
  transform: translateX(0);
}

.contact-popup img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 16px;
  animation: pulse-red 1.4s infinite;
}

.contact-message {
  font-size: 16px;
  font-weight: bold;
  color: #d4380d;
  line-height: 1.5;
}

@keyframes pulse-red {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@media screen and (max-width: 600px) {
  .contact-popup {
    bottom: 15px;
    left: 10px;
    max-width: 90%;
  }
}
