.popup-form-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 999999;
  padding: 20px;
  box-sizing: border-box;
}

/* Show popup when targeted */
.popup-form-overlay:target {
  display: flex;
}

/* Popup Box */
.popup-form-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  box-sizing: border-box;
}

.ltn__comment-reply-area {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ltn__form-box {
    width: 100%;
    box-sizing: border-box;
}

/* Close Button */
.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  text-decoration: none;
  color: #000;
  cursor:pointer;
}

/* Form Inputs */
.popup-form-content .input-item input,
.popup-form-content .input-item button,
.popup-form-content select{
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* --------------------------------
   Responsive Breakpoints
---------------------------------- */

/* ≤480px: Small Phones */
@media (max-width: 480px) {
  .popup-form-content {
    padding: 20px 15px;
    font-size: 14px;
  }

  .close-popup {
    font-size: 20px;
  }

  .enquire-now-btn {
    padding: 8px 15px;
    font-size: 12px;
  }
}

/* 481px–767px: Large Phones / Small Tablets */
@media (min-width: 481px) and (max-width: 767px) {
  .popup-form-content {
    padding: 25px 20px;
    font-size: 15px;
  }

  .enquire-now-btn {
    padding: 9px 18px;
    font-size: 13px;
  }
}

/* 768px–991px: Tablets */
@media (min-width: 768px) and (max-width: 991px) {
  .popup-form-content {
    padding: 30px 25px;
    font-size: 16px;
  }

  .enquire-now-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
