.pro-service-form {
  padding: 6px 0 28px;
}

.pro-service-form-card {
  background: #fff;
  border: 1px solid #e3edf7;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 18px 42px rgba(16,42,67,.08);
}

.pro-service-form-head {
  margin-bottom: 22px;
}

.pro-service-form h2 {
  margin: 0 0 8px;
  color: #102a43;
  font-size: 30px;
  line-height: 1.18;
}

.pro-service-form p {
  margin: 0;
  color: #5f7183;
  line-height: 1.65;
}

.pro-form-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 16px;
}

.pro-form-field {
  display: grid;
  gap: 7px;
}

.pro-form-field.full {
  grid-column: 1 / -1;
}

.pro-form-field label {
  color: #102a43;
  font-size: 14px;
  font-weight: 900;
}

.pro-form-field input,
.pro-form-field select,
.pro-form-field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #d8e7f4;
  border-radius: 16px;
  background: #f8fbff;
  color: #102a43;
  font: inherit;
  padding: 0 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  box-sizing: border-box;
}

.pro-form-field textarea {
  min-height: 118px;
  resize: vertical;
  padding-top: 13px;
}

.pro-form-field input:focus,
.pro-form-field select:focus,
.pro-form-field textarea:focus {
  border-color: #0F4CFF;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(15,76,255,.1);
}

.pro-form-error {
  min-height: 18px;
  color: #d93025;
  font-size: 12px;
  font-weight: 800;
}

.pro-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
}

.pro-form-note {
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

.pro-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg,#0F4CFF,#0f4c81);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(15,76,255,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}

.pro-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15,76,255,.28);
}

@media (max-width: 760px) {
  .pro-service-form-card {
    padding: 22px;
    border-radius: 20px;
  }

  .pro-service-form h2 {
    font-size: 25px;
  }

  .pro-form-grid {
    grid-template-columns: 1fr;
  }

  .pro-form-actions {
    display: grid;
  }

  .pro-form-submit {
    width: 100%;
  }
}
