.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  width: 520px;
  max-width: 90%;
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  position: relative;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {

  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }

}

.close-btn {
  position: absolute;
  right: 18px;
  top: 12px;
  font-size: 28px;
  cursor: pointer;
}

.popup-title {
  font-size: 30px;
  margin-bottom: 5px;
}

.popup-subtitle {
  color: #e05555;
  margin-bottom: 20px;
}

.popup-box input,
.popup-box textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 2px solid #ddd;
  font-size: 16px;
  box-sizing: border-box;
  outline: none;
}

.popup-box textarea {
  height: 110px;
  resize: none;
}

.popup-box button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: #7cf03d;
  color: #111;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
}

.call-text {
  text-align: center;
  margin-top: 15px;
}


.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}