/* Accessibility overrides: placeholders, form states, link focus/hover */
/* Placeholder contrast */
::placeholder { color: #666 !important; opacity: 1 !important; }
::-webkit-input-placeholder { color: #666 !important; opacity: 1 !important; }
:-ms-input-placeholder { color: #666 !important; }
::-ms-input-placeholder { color: #666 !important; }

/* Disabled input/read-only contrast */
.w-input[disabled], .w-select[disabled], .w-input[readonly], .w-select[readonly], fieldset[disabled] .w-input, fieldset[disabled] .w-select {
  background-color: #f5f5f5 !important;
  color: #555 !important;
  border-color: #c7c7c7 !important;
}

/* Form success/fail states with stronger contrast */
.w-form-done { background-color: #e5f6e8 !important; color: #0b6b2e !important; }
.w-form-fail { background-color: #ffe5e5 !important; color: #a40000 !important; }

/* Footer links: underline on hover/focus for clarity */
.footer a:hover, .footer a:focus { text-decoration: underline; }

/* Primary button contrast: improve AA compliance */
/* Accessible orange buttons (white text contrast ≥ 4.5:1) */
.w-button, a.w-button, input.w-button {
  background-color: #B34700 !important; /* base orange */
  color: #fff !important;
}
.w-button:hover, a.w-button:hover, input.w-button:hover,
.w-button:focus, a.w-button:focus, input.w-button:focus {
  background-color: #8F3900 !important; /* darker hover/focus */
  color: #fff !important;
}
.w-button:active, a.w-button:active, input.w-button:active {
  background-color: #7A3100 !important; /* darkest active */
}
