:root{--page-title-display:none;}/* Start custom CSS */.elementor-field-group select {
    color: #FFFFFF;
    background-color: #00000000!important;
}
.elementor-field-group select:invalid {
    color: #FFFFFF !important;
}
/* Label text white */
.elementor-field-subgroup label {
  color: #ffffff !important;
}
/* Light grey border on all input fields */
.elementor-field-group .elementor-field {
  border: 1px solid #FFFFFF !important;
  outline: none;
  border-radius: 6px !important;
  height: auto !important;
  padding: auto !important;
  font-size: 14px !important;
  line-height: 1.9 !important;
  box-sizing: border-box !important;
  color: #999999 !important;
  background-color: #00000000!important;
}
/* White text while typing */
.elementor-field-group .elementor-field:focus {
  border: 1px solid #FFFFFF !important;
  outline: none;
  color: #FFFFFF !important;
}
/* White text when field is filled */
.elementor-field-group .elementor-field:not(:placeholder-shown) {
  color: #FFFFFF !important;
}
/* Select wrapper — position relative + hide default arrow via background trick */
.elementor-field-group .elementor-select-wrapper {
  border: 1px solid #d3d3d3 !important;
  border-radius: 6px !important;
  position: relative !important;
  overflow: hidden;
}
/* Remove double border + hide default browser arrow */
.elementor-field-group .elementor-select-wrapper .elementor-field {
  border: none !important;
  border-radius: 6px !important;
  background: transparent !important;
  height: auto !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  padding-right: 40px !important;
  width: 100% !important;
  cursor: pointer;
}
/* Focus state for select wrapper */
.elementor-field-group .elementor-select-wrapper:focus-within {
  border: 1px solid #FFFFFF !important;
  outline: none;
}
/* Hide the old SVG wrapper */
.select-caret-down-wrapper {
  display: none !important;
}
/* Modern CSS chevron arrow using ::after pseudo-element */
.elementor-field-group .elementor-select-wrapper::after {
  content: '';
  position: absolute !important;
  right: 14px !important;
  top: 50% !important;
  transform: translateY(-60%) rotate(45deg) !important;
  width: 7px !important;
  height: 7px !important;
  border-right: 2px solid #FFFFFF !important;
  border-bottom: 2px solid #FFFFFF !important;
  pointer-events: none !important;
  transition: border-color 0.2s ease, transform 0.2s ease !important;
  z-index: 9 !important;
}
/* Arrow stays white on focus */
.elementor-field-group .elementor-select-wrapper:focus-within::after {
  border-color: #FFFFFF !important;
}
/* Override autofill — transparent background, white text */
.elementor-field-group .elementor-field:-webkit-autofill,
.elementor-field-group .elementor-field:-webkit-autofill:hover,
.elementor-field-group .elementor-field:-webkit-autofill:focus,
.elementor-field-group .elementor-field:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  -webkit-text-fill-color: #FFFFFF !important;
  box-shadow: 0 0 0px 1000px transparent inset !important;
  transition: background-color 5000s ease-in-out 0s;
  background-color: transparent !important;
}
/* Black text + white bg for native dropdown options (readable when open) */
.elementor-field-group select option {
  color: #000000 !important;
  background-color: #ffffff !important;
}
/* White text on the select field after a valid option is selected */
.elementor-field-group select:valid {
  color: #ffffff !important;
}/* End custom CSS */