/* ===== MODAL ===== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #fff;
  padding: 30px 25px;
  border-radius: 20px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  animation: modalIn 0.35s ease;
}

.modal-content h3 {
  font-size: 1.8rem;
  color: var(--color-blue);
  margin-bottom: 15px;
}

.modal-content p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 25px;
}

@keyframes modalIn {
  from {
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .modal-content h3 {
    font-size: 1.4rem;
  }
}
