.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
  }
  
  .popup.hidden {
    opacity: 0;
    pointer-events: none;
  }
  
  .popup-content {
    background: #fff;
    padding: 2rem 3rem;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 400px;
  }
  
  #popup-message {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  #popup-close {
    padding: 0.6rem 1.2rem;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
  }
  /* Popup */
.contact-popup {
  display: none;
  position: fixed; z-index: 2100; inset: 0;
  font-family: 'TT Firs Neue', sans-serif;
}
.contact-popup.active { display: block; }
.contact-popup__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.18);
}
.contact-popup__window {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 12px 56px rgba(0,0,0,0.11);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  min-width: 320px; max-width: 95vw;
}
.contact-popup__close {
  position: absolute; right: 1.1rem; top: 1.1rem;
  border: none; background: none; font-size: 2rem;
  color: #111; cursor: pointer;
}
.contact-popup__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.contact-popup__form input,
.contact-popup__form select {
  width: 100%;
  margin-bottom: 1.1rem;
  padding: 1rem 1.1rem;
  border: 1.5px solid #e5e5e5;
  border-radius: 12px;
  font-size: 1.05rem;
  background: #fafafa;
}
#contactPopupMsg {
  margin-bottom: 1rem; min-height: 1.8rem; text-align: center; color: #007aff;
  font-size: 1rem;
}
.contact-popup__form textarea {
  width: 100%;
  min-height: 82px;
  max-height: 220px;
  margin-bottom: 1.1rem;
  padding: 1rem 1.1rem;
  border: 1.5px solid #e5e5e5;
  border-radius: 12px;
  font-size: 1.05rem;
  background: #fafafa;
  resize: vertical;
  font-family: 'TT Firs Neue', Arial, sans-serif;
  transition: border 0.2s, box-shadow 0.18s;
  color: #111;
  line-height: 1.45;
  box-sizing: border-box;
}
.contact-popup__form textarea:focus {
  outline: none;
  border-color: #007aff;
  box-shadow: 0 0 0 2px #007aff21;
}
