/* === POPUP OVERLAY === */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: none;
}

/* === POPUP FORM === */
.popup-form {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: none;
}

/* === CLOSE BUTTON === */
.popup-form .close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

/* === FORM CONTENT === */
.form-content {
  display: flex;
  flex-direction: column;
}

/* === FORM ROW === */
.popup-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
}

/* === INPUT FIELDS === */
.popup-row input,
.popup-row select,
.popup-row textarea {
  font-size: 16px;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* === DATE & TRAVELLER FIELDS SIDE BY SIDE === */
.popup-row.row-4 {
  flex-direction: row;
  gap: 10px;
}
.popup-row.row-4 input {
  width: 100%;
}

/* === PHONE FIELD GROUP === */
.popup-row.row-3 {
  flex-direction: row;
  gap: 10px;
}
.popup-row.row-3 select {
  width: 30%;
}
.popup-row.row-3 input {
  width: 70%;
}

/* === TEXTAREA === */
.popup-row textarea {
  resize: vertical;
  min-height: 80px;
}

.popup-row span{
    display:block;
}

/* === SUBMIT BUTTON === */
.popup-row button {
  padding: 10px 20px;
  background-color: #1e73be;
  color: white;
  border: none;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}
.popup-row button:hover {
  background-color: #155d94;
}

/* === ERROR MESSAGE === */
.error-message {
  font-size: 14px;
  color: red;
  margin-top: 5px;
  display: block;
}
