/* ========================= FORM ========================= */
.wpcf7 form {
  background: linear-gradient(135deg, #0b1220, #070d18);
  padding: 26px;
  border-radius: 14px;
  max-width: 580px;
  margin: 30px auto;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  /* glow */
}
.wpcf7 form::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25), transparent 70%);
  top: -120px;
  right: -120px;
  filter: blur(25px);
}
.wpcf7 form::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.18), transparent 70%);
  bottom: -120px;
  left: -120px;
  filter: blur(25px);
  /* ========================= FIELD SPACING ========================= */
}
.wpcf7 form p {
  margin-bottom: 12px;
  /* ========================= LABEL ========================= */
}
.wpcf7 label {
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
  /* ========================= INPUT ========================= */
}
.wpcf7 input:not([type="submit"]), .wpcf7 textarea, .wpcf7 select {
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  background: #fff;
  color: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  transition: all 0.25s ease;
  /* hover */
}
.wpcf7 input:hover, .wpcf7 textarea:hover, .wpcf7 select:hover {
  transform: translateY(-1px);
  /* focus glow */
}
.wpcf7 input:focus, .wpcf7 textarea:focus, .wpcf7 select:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25), 0 10px 25px rgba(56, 189, 248, 0.15);
  outline: none;
  /* textarea */
}
.wpcf7 textarea {
  min-height: 120px;
  /* select option */
}
.wpcf7 select option {
  background: #fff;
  color: #111827;
  /* ========================= BUTTON ========================= */
}
.wpcf7 input[type="submit"] {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 8px;
}
.wpcf7 input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
  /* ========================= ERROR ========================= */
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #f87171;
  font-size: 12px;
  /* ========================= RESPONSE ========================= */
}
.wpcf7 .wpcf7-response-output {
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 10px;
  /* ========================= MOBILE ========================= */
}
@media (max-width: 480px) {
  .wpcf7 form {
    padding: 20px 16px;
    margin: 20px 12px;
  }
  .wpcf7 input:not([type="submit"]), .wpcf7 textarea, .wpcf7 select {
    /* iOS zoom fix */
    font-size: 16px;
  }
}
