/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Apr 14 2026 | 11:43:42 */
.taxik-form-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
  background:
    radial-gradient(circle at left top, rgba(109,220,255,0.08), transparent 26%),
    radial-gradient(circle at right bottom, rgba(255,212,92,0.08), transparent 24%),
    linear-gradient(180deg, #050816 0%, #07101d 100%);
}

.taxik-form-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.taxik-form-shell {
  position: relative;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.20);
  padding: 34px;
  overflow: hidden;
}

.taxik-form-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 45%);
}

.taxik-form-wrap {
  position: relative;
  z-index: 2;
}

.taxik-form-head {
  margin-bottom: 30px;
}

.taxik-form-head h3 {
  margin: 18px 0 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: #fff;
}

.taxik-form-head p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(230,238,248,0.76);
  font-size: 17px;
  line-height: 1.8;
}

.taxik-form-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  color: #d7f3ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.taxik-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.taxik-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.taxik-field-full {
  grid-column: 1 / -1;
}

.taxik-field label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.84);
  letter-spacing: 0.02em;
}

.taxik-form-wrap input[type="text"],
.taxik-form-wrap input[type="email"],
.taxik-form-wrap input[type="tel"],
.taxik-form-wrap input[type="date"],
.taxik-form-wrap select,
.taxik-form-wrap textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 15px;
  outline: none;
  box-shadow: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(12px);
}

.taxik-form-wrap textarea {
  min-height: 140px;
  padding: 16px 18px;
  resize: vertical;
}

.taxik-form-wrap input::placeholder,
.taxik-form-wrap textarea::placeholder {
  color: rgba(255,255,255,0.42);
}

.taxik-form-wrap input:focus,
.taxik-form-wrap select:focus,
.taxik-form-wrap textarea:focus {
  border-color: rgba(109,220,255,0.42);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 4px rgba(109,220,255,0.10);
}

.taxik-form-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.taxik-form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.taxik-form-consent {
  flex: 1 1 320px;
  color: rgba(230,238,248,0.74);
  font-size: 14px;
  line-height: 1.7;
}

.taxik-form-consent .wpcf7-list-item {
  margin: 0;
}

.taxik-form-consent input[type="checkbox"] {
  margin-right: 10px;
  transform: scale(1.1);
}

.taxik-form-submit {
  flex: 0 0 auto;
}

.taxik-form-wrap input[type="submit"] {
  min-height: 58px;
  padding: 0 34px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff 0%, #dff6ff 100%);
  color: #07101d;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  box-shadow: 0 18px 50px rgba(255,255,255,0.12);
}

.taxik-form-wrap input[type="submit"]:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 24px 70px rgba(255,255,255,0.18);
}

.taxik-form-contact-note {
  margin-top: 20px;
  color: rgba(230,238,248,0.70);
  font-size: 14px;
  line-height: 1.7;
}

.taxik-form-contact-note a {
  color: #9ae4ff;
  text-decoration: none;
}

.taxik-form-contact-note a:hover {
  text-decoration: underline;
}

.taxik-form-wrap .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #ffb4b4;
  font-size: 13px;
}

.taxik-form-wrap .wpcf7-response-output {
  margin: 22px 0 0 !important;
  padding: 14px 16px !important;
  border-radius: 18px;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10) !important;
}

.taxik-form-wrap .wpcf7-spinner {
  vertical-align: middle;
}

@media (max-width: 767px) {
  .taxik-form-section {
    padding: 85px 0 95px;
  }

  .taxik-form-container {
    padding: 0 18px;
  }

  .taxik-form-shell {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .taxik-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .taxik-field-full {
    grid-column: auto;
  }

  .taxik-form-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .taxik-form-submit,
  .taxik-form-wrap input[type="submit"] {
    width: 100%;
  }

  .taxik-form-head h3 {
    font-size: clamp(28px, 10vw, 42px);
    line-height: 1;
  }

  .taxik-form-head p {
    font-size: 16px;
    line-height: 1.75;
  }
}