/* contact.css */

/* Style the contact button */
#openContactForm {
    background-color: #0073aa;
    border: none;
    color: #fff;
    padding: 10px 16px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  #openContactForm:hover {
    background-color: #005f8d;
  }
  
  /* Overlay to focus user on popup */
  #contactPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Popup container */
  #contactPopup .popup-inner {
    background: #fff;
    padding: 24px;
    max-width: 480px;
    width: 90%;
    border-radius: 6px;
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  }
  
  /* Close button */
  #contactPopup .close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 1.4rem;
    color: #333;
    cursor: pointer;
  }
  
  /* Step forms spacing */
  #contactPopup form {
    margin-top: 16px;
  }
  #contactPopup form p {
    margin-bottom: 8px;
  }
  
  /* Inputs and buttons inside popup */
  #contactPopup input[type="email"],
  #contactPopup input[type="text"],
  #contactPopup textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.9rem;
    box-sizing: border-box;
  }
  
  #contactPopup button {
    background-color: #0073aa;
    color: white;
    padding: 8px 14px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
  }
  #contactPopup button:hover {
    background-color: #005f8d;
  }
  
  /* Feedback messages */
  #step1_msg,
  #step2_msg,
  #step3_msg {
    margin-top: 8px;
    font-size: 0.9rem;
  }
  #step1_msg { color: #333; }
  #step2_msg { color: #333; }
  #step3_msg { color: green; }
  
  .success-close {
    margin-top: 1em;
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
  }
  .success-close:hover {
    background: #005f8d;
  }