﻿      /* Popup*/
      /* Floating Button */
.help-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #051054; /* WhatsApp green */
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 9999;
}

/* Popup Form */
.help-popup {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 400px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  padding: 0;
  display: none;
  z-index: 99999;
  animation: slideUp 0.25s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.popup-header {
  background: #051054;
  color: white;
  padding: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-btn {
  background: none;
  border: none;
  font-size: 22px;
  color: white;
  cursor: pointer;
}

.popup-body {
  padding: 15px;
}

.form-input {
  width: 100%;
  padding: 8px;
  margin-bottom: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.send-btn {
  width: 100%;
  background: #d67491;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}
@media (max-width: 768px) {

  /* Floating Button */
  .help-btn {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  /* Popup */
  .help-popup {
    width: calc(100% - 20px);
    right: 10px;
    left: 10px;
    bottom: 80px;
    border-radius: 12px;
  }

  .popup-header {
    padding: 12px;
    font-size: 16px;
  }

  .popup-body {
    padding: 12px;
  }

  .form-input {
    font-size: 16px; /* avoids zoom on mobile */
  }

  .send-btn {
    font-size: 16px;
    padding: 12px;
  }
}

