#popup-seap {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-seap-content {
  background: #fff;
  max-width: 480px;
  width: 90%;
  padding: 30px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

#close-seap {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 26px;
  cursor: pointer;
  color: #888;
}

#close-seap:hover {
  color: #000;
}

#popup-seap .wpcf7-form label {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

#popup-seap input[type="text"],
#popup-seap input[type="email"],
#popup-seap textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 15px;
}

#popup-seap input[readonly] {
  background: #f8f8f8;
  color: #666;
}

#popup-seap input[type="submit"] {
  background: #0073aa;
  border: none;
  color: #fff;
  padding: 10px 25px;
  border-radius: 6px;
  cursor: pointer;
}

#popup-seap input[type="submit"]:hover {
  background: #005f8a;
}
