.contact_popup{
  position: fixed;
  inset: 0;
  background: rgba(7, 25, 35, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 3000;
}

.contact_popup.show{
  opacity: 1;
  pointer-events: auto;
}

.contact_popup_box{
  width: min(100%, 460px);
  border: 2px solid var(--primary);
  border-radius: 32px;
  background: rgba(18, 34, 42, 0.96);
  color: #f6e7cf;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.contact_popup_title{
  margin: 0 0 14px;
  color: var(--primary);
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.1;
}

.contact_popup_text{
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.5;
}

.contact_popup_button{
  min-width: 132px;
  height: 48px;
  border-radius: 30px;
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background 125ms ease, border-color 125ms ease;
}

.contact_popup_button:hover{
  background: rgba(248, 245, 236, 0.12);
  border-color: rgba(248, 245, 236, 0.7);
}