.vok-contact {
  padding: 80px 0;
}

.vok-contact__title {
  font-family: "Luckiest Guy", cursive;
  font-size: 40px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin: 0 0 48px;
}

.vok-contact__card {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  background: var(--vok-bg-2);
  border: 1px solid var(--vok-border);
  border-radius: 24px;
  padding: 40px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.vok-contact__card::before,
.vok-contact__card::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(0, 255, 90, 0.18);
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
}

.vok-contact__card::before {
  top: -60px;
  right: 80px;
}

.vok-contact__card::after {
  bottom: -60px;
  left: -40px;
}

.vok-contact__form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.vok-contact__form[hidden],
.vok-contact__thanks[hidden] {
  display: none !important;
}

.vok-contact__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vok-contact__field label {
  font-family: "Luckiest Guy", cursive;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.vok-contact__field input,
.vok-contact__field textarea {
  background: var(--vok-bg);
  border: 2px solid var(--vok-border);
  border-radius: 12px;
  padding: 16px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.vok-contact__field input::placeholder,
.vok-contact__field textarea::placeholder {
  color: var(--vok-input-placeholder);
}

.vok-contact__field input:focus,
.vok-contact__field textarea:focus {
  border-color: var(--vok-green);
}

.vok-contact__field.has-error input,
.vok-contact__field.has-error textarea {
  border-color: #ff4d4d;
}

.vok-contact__field textarea {
  resize: vertical;
  min-height: 140px;
  font-family: "Inter", sans-serif;
}

.vok-contact__submit {
  width: 100%;
  margin-top: 8px;
}

.vok-contact__thanks {
  position: relative;
  text-align: center;
  padding: 32px 0;
}

.vok-contact__thanks h3 {
  font-family: "Luckiest Guy", cursive;
  font-size: 32px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--vok-green);
  margin: 0 0 12px;
}

.vok-contact__thanks p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--vok-text-soft);
  margin: 0;
}

@media (max-width: 600px) {
  .vok-contact {
    padding: 50px 0;
  }

  .vok-contact__title {
    font-size: 30px;
    margin-bottom: 28px;
  }

  .vok-contact__card {
    padding: 24px;
    border-radius: 18px;
  }
}
