/* Contact Form Select Fixes */

/* Hide any unwanted check icons in select options */
.contact-form .form-select option:checked::before,
.contact-form .form-select option::before,
.contact-form .form-select option:checked::after,
.contact-form .form-select option::after {
    display: none !important;
    content: none !important;
}

/* Ensure clean select styling */
.contact-form .form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

/* Remove any font awesome icons from options */
.contact-form .form-select option i,
.contact-form .form-select option .fa,
.contact-form .form-select option .fas,
.contact-form .form-select option .far {
    display: none !important;
}

/* Clean option text styling */
.contact-form .form-select option {
    padding: 8px 12px;
    background: white;
    color: #333;
    font-weight: normal;
}

/* Selected option styling without icons */
.contact-form .form-select option:checked {
    background-color: #007bff;
    color: white;
}

/* Hover state for options */
.contact-form .form-select option:hover {
    background-color: #f8f9fa;
}

/* Focus state improvements */
.contact-form .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
    outline: 0;
}

/* Remove any pseudo-element content that might be adding check marks */
.contact-form .form-select *::before,
.contact-form .form-select *::after {
    content: none !important;
}

/* Ensure no list-style markers appear */
.contact-form .form-select,
.contact-form .form-select * {
    list-style: none !important;
    list-style-type: none !important;
}

/* Additional cleanup for any icon fonts */
.contact-form .form-select option[class*="fa-"],
.contact-form .form-select option[class*="icon-"] {
    font-family: inherit !important;
}

.contact-form .form-select option[class*="fa-"]::before,
.contact-form .form-select option[class*="icon-"]::before {
    display: none !important;
}