/* =========================================   CUSTOM SELECT   ========================================= */.custom-select{    position:relative;    width:100%;}.custom-select-trigger{    width:100%;    min-height:42px;    padding:8px 16px;    border:1px solid #000;    border-radius:10px;    background:#fff;    color:#000;    font-size:1rem;    font-weight:400;    box-sizing:border-box;    display:flex;    align-items:center;    justify-content:space-between;    cursor:pointer;}.custom-select-arrow{    width:12px;    height:6.5px;    margin-left:12px;    flex-shrink:0;    border-left:6px solid transparent;    border-right:6px solid transparent;    border-top:6.5px solid #000;    transition:transform .15s ease;}.custom-select.open .custom-select-arrow{    transform:rotate(180deg);}.custom-select-options{    display:none;    width:100%;    margin-top:4px;    border:1px solid #000;    border-radius:10px;    background:#fff;    color:#000;    box-sizing:border-box;}.custom-select.open .custom-select-options{    display:block;}.custom-select-options div{    padding:8px 16px;    font-size:1rem;    font-weight:400;    line-height:1.4;    cursor:pointer;}.custom-select-options div:hover{    background:#9edfff;    color:#000;}.contact-select{    display:none;}