.chdtc-enquiry-panel {
  max-width: 960px;
  margin: 30px auto 0;
  padding: clamp(24px, 5vw, 46px);
  color: #163f58;
  background: #eff8fc;
  border: 1px solid #bdd7e4;
  border-top: 6px solid #136291;
  border-radius: 0;
  box-shadow: none;
}

.chdtc-enquiry-form,
.chdtc-enquiry-form * {
  box-sizing: border-box;
}

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

.chdtc-field {
  margin-bottom: 20px;
}

.chdtc-field.full {
  width: 100%;
}

.chdtc-field label {
  display: block;
  margin-bottom: 7px;
  color: #0b3d5b;
  font-weight: 750;
}

.chdtc-field .optional {
  color: #4e6d7f;
  font-size: 0.86em;
  font-weight: 500;
}

.chdtc-field input,
.chdtc-field select,
.chdtc-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: #163f58;
  background: #fff;
  border: 1px solid #8db5c8;
  border-radius: 3px;
  font: inherit;
  line-height: 1.4;
}

.chdtc-field textarea {
  min-height: 118px;
  resize: vertical;
}

.chdtc-field input:focus,
.chdtc-field select:focus,
.chdtc-field textarea:focus {
  outline: 3px solid rgba(25, 152, 207, 0.25);
  border-color: #136291;
}

.chdtc-field.has-error input,
.chdtc-field.has-error select,
.chdtc-field.has-error textarea,
.chdtc-field input[aria-invalid="true"] {
  border-color: #b42318;
}

.chdtc-field small {
  display: block;
  margin-top: 6px;
  color: #4e6d7f;
}

.chdtc-topic-chip {
  display: inline-block;
  margin: 0 0 24px;
  padding: 8px 12px;
  color: #0b3d5b;
  background: #fff4d0;
  border-radius: 3px;
}

.chdtc-topic-chip::before {
  content: "🐾";
  margin-right: 0.45em;
}

.chdtc-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0 12px;
  padding: 18px;
  background: #fff;
  border: 1px solid #bdd7e4;
  border-left: 4px solid #eaa90f;
  border-radius: 0;
  cursor: pointer;
}

.chdtc-consent input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.chdtc-consent strong {
  color: #4e6d7f;
  font-size: 0.8em;
  text-transform: uppercase;
}

.chdtc-form-privacy {
  margin: 12px 0 22px;
  color: #4e6d7f;
  font-size: 0.88rem;
}

.chdtc-submit {
  min-height: 50px;
  padding: 12px 24px;
  border: 0;
  cursor: pointer;
}

.chdtc-form-notice {
  display: grid;
  gap: 4px;
  margin-bottom: 24px;
  padding: 17px 19px;
  background: #fff;
  border-left: 5px solid #136291;
  border-radius: 0;
}

.chdtc-form-notice.error {
  border-left-color: #b42318;
}

.chdtc-form-notice ul {
  margin: 7px 0 0;
}

.chdtc-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 700px) {
  .chdtc-enquiry-panel {
    margin-top: 22px;
    padding: 24px 18px;
    border-radius: 0;
  }

  .chdtc-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .chdtc-field input,
  .chdtc-field select,
  .chdtc-field textarea {
    font-size: 16px;
  }

  .chdtc-submit {
    width: 100%;
  }
}
