.contact-fullscreen {
  position: fixed;
  inset: 0;
  background: #fff;

  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;

  z-index: 9999;

  overflow-y: auto;
  display: block;
  padding: 20px;
}

.contact-fullscreen.active {
  opacity: 1;
  visibility: visible;
}

/* CONTENT */
.contact-inner {
  max-width: 600px;
  width: 100%;

  margin: 80px auto;
  padding: 40px 10px;

  transform: translateY(20px);
  transition: 0.35s ease;
}

.contact-fullscreen.active .contact-inner {
  transform: translateY(0);
}

/* CLOSE */
.close {
  position: fixed;
  top: 10px;
  right: 10px;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);

  border-radius: 50%;
  border: none;

  font-size: 24px;
  cursor: pointer;

  z-index: 10001;
}

body.modal-open {
  overflow: hidden;
}

/* CF7 */
.wpcf7 input,
.wpcf7 textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 14px 0;
  margin-bottom: 18px;
  background: transparent;
  font-size: 16px;
}

.wpcf7 textarea {
  min-height: 120px;
}

.wpcf7 input[type="submit"] {
  width: 100%;
  border: 1px solid #111;
  color: #111;
  padding: 14px 20px;
  background: transparent;
  cursor: pointer;
  margin-top: 20px;
}

/* STEPS */
.step {
  display: none;
  animation: fade 0.3s ease;
}

.step.active {
  display: block;
}

@keyframes fade {
  from { opacity: 0; transform: translateY(10px);}
  to { opacity: 1; transform: translateY(0);}
}

.next, .prev {
  margin-top: 20px;
  margin-right: 10px;
  padding: 12px 18px;
  border: 1px solid #111;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 480px) {
  .contact-inner {
    margin: 60px auto;
  }
}

/* SCROLLBAR */
.contact-fullscreen::-webkit-scrollbar {
  width: 6px;
}

.contact-fullscreen::-webkit-scrollbar-thumb {
  background: #ccc;
}

.contact-fullscreen {
  scrollbar-width: thin;
}
