/* Contact Form Select Styling */
.contact-form select {
    width: 100%;
    height: 55px;
    padding: 0 18px;
    border: 1px solid rgba(87, 92, 49, 0.22);
    border-radius: 6px;
    background: #ffffff;
    color: #303030;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.3s ease;
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, #575c31 50%),
        linear-gradient(135deg, #575c31 50%, transparent 50%);
    background-position: calc(100% - 22px) 23px, calc(100% - 16px) 23px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.contact-form select:focus {
    border-color: #575c31;
    box-shadow: 0 0 0 4px rgba(87, 92, 49, 0.12);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #575c31;
    box-shadow: 0 0 0 4px rgba(87, 92, 49, 0.12);
}