/* Form Wrapper */
#getInTouchForm {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#getInTouchForm:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Input Fields */
#getInTouchForm .form-control {
  width: 100%;
  border: 1px solid #e4e4e4;
  border-radius: 30px;
  padding: 12px 18px;
  font-size: 15px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.03);
}

#getInTouchForm .form-control:focus {
  border-color: #1dc8cd;
  box-shadow: 0 0 8px rgba(29, 200, 205, 0.3);
  outline: none;
  background: #fff;
}

/* Textarea */
#getInTouchForm textarea.form-control {
  border-radius: 20px;
  resize: none;
  min-height: 140px;
}

/* Submit Button */
#getInTouchForm button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(45deg, #1de099, #1dc8cd);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(29,200,205,0.3);
}

#getInTouchForm button:hover {
  background: linear-gradient(45deg, #1dc8cd, #1de099);
  box-shadow: 0 6px 14px rgba(29,200,205,0.4);
}

.popup-box {
  display: none;            /* default hidden */
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-content {
  background: #fff;
  padding: 22px;
  border-radius: 12px;
  max-width: 420px;
  width: 90%;
  text-align: center;
}
#popupClose {
  margin-top: 12px;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: linear-gradient(45deg, #1de099, #1dc8cd);
  color: #fff;
  font-weight: 600;
}


/* Animation */
@keyframes fadeInScale {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

