/* Form container */
.wpcf7-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Labels */
.wpcf7-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

/* Inputs + textarea */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: calc(100% - 28px);
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fafafa;
  font-size: 14px;
  transition: all 0.25s ease;
  outline: none;
}

/* Focus effect */
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  /*border-color: #4f46e5;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);*/
}

/* Spacing between fields */
.wpcf7-form p {
  margin-bottom: 18px;
}

/* Checkbox group */
.wpcf7-checkbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
}

/* Custom checkbox */
.wpcf7-list-item input[type="checkbox"] {
  accent-color: #4f46e5;
  width: 16px;
  height: 16px;
}

/* Textarea */
.wpcf7-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Submit button */
.wpcf7-submit {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Button hover */
.wpcf7-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.25);
}

/* Button active */
.wpcf7-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Error messages */
.wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e11d48;
  margin-top: 4px;
}

/* Response output */
.wpcf7-response-output {
  margin-top: 16px;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
}

/* Success */
.wpcf7-mail-sent-ok {
  background: #ecfdf5;
  color: #065f46;
}

/* Error */
.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
  background: #fef2f2;
  color: #991b1b;
}