/*==============================================================
DEALER LOCATOR
==============================================================*/

.dealer-section{
    background:#f8f9fb;
}

.dealer-wrapper{
    background:#fff;
    border-radius:30px;
    padding:70px;
    box-shadow:0 20px 60px rgba(0,0,0,.06);
}

.dealer-features{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.dealer-feature{
    display:flex;
    align-items:flex-start;
}

.dealer-feature i{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#fff3ea;
    color:#f58220;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-right:18px;
    flex-shrink:0;
}

.dealer-feature h6{
    font-size:18px;
    font-weight:700;
    margin-bottom:6px;
}

.dealer-feature p{
    color:#777;
    margin:0;
}

.dealer-map{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    height:560px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.dealer-map iframe{
    width:100%;
    height:100%;
    border:0;
}

.dealer-card{
    position:absolute;
    left:30px;
    bottom:30px;
    background:#fff;
    padding:25px;
    border-radius:18px;
    width:300px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.dealer-card h5{
    font-weight:700;
    margin-bottom:10px;
}

.dealer-card p{
    color:#666;
    margin-bottom:10px;
}

.dealer-card span{
    display:inline-block;
    padding:6px 15px;
    background:#fff3ea;
    color:#f58220;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

@media(max-width:991px){

    .dealer-wrapper{
        padding:35px;
    }

    .dealer-map{
        height:420px;
    }

    .dealer-card{
        position:relative;
        left:auto;
        bottom:auto;
        width:100%;
        margin:20px;
    }

}