.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}
.modal.show {
  display: flex;
}
.modal-content.small-modal {
  background: #111;
  color: #fff;
  padding: 30px;
  border-radius: 16px;
  width: 360px;
  max-width: 90%;
  position: relative;
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
  font-family: 'Poppins', sans-serif;
}
.modal-content h2 {
  margin: 0 0 10px;
  font-size: 22px;
}
.modal-content .subtitle {
  font-size: 15px;
  color: #aaa;
  margin-bottom: 25px;
}
.close-modal {
  position: absolute;
  right: 20px; top: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #fff;
}
.contact-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.icon-button {
  width: 60px;
  height: 60px;
  background: #222;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}
.icon-button:hover {
  transform: scale(1.1);
  background: #333;
}
.icon-button svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.telegram {
  color: #0088cc;
}
.whatsapp {
  color: #25d366;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
