/*======================================================
LOCATION SECTION
======================================================*/

.map-section{
    padding:110px 0;
    background:#fff;
}

.location-wrapper{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:45px;
    align-items:stretch;
    margin-top:60px;
}

.location-card{
    background:#0b1f3a;
    color:#fff;
    padding:40px;
    border-radius:24px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    box-shadow:0 20px 50px rgba(11,31,58,.18);
}

.location-item{
    display:flex;
    gap:18px;
    margin-bottom:28px;
}

.location-icon{
    width:58px;
    height:58px;
    border-radius:16px;
    background:rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    flex-shrink:0;
}

.location-item h4{
    margin-bottom:6px;
    color:#fff;
}

.location-item p{
    color:rgba(255,255,255,.85);
    line-height:1.7;
}

.location-btn{
    margin-top:20px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:#e60000;
    color:#fff;
    text-decoration:none;
    padding:16px 25px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.location-btn:hover{
    background:#fff;
    color:#0b1f3a;
}

.map-container{
    border-radius:24px;
    overflow:hidden;
    min-height:520px;
    box-shadow:0 20px 50px rgba(0,0,0,.10);
}

.map-container iframe{
    width:100%;
    height:100%;
    min-height:520px;
    border:0;
}

@media(max-width:992px){

.location-wrapper{
    grid-template-columns:1fr;
}

.location-card{
    padding:35px;
}

.map-container{
    min-height:420px;
}

.map-container iframe{
    min-height:420px;
}

}

@media(max-width:768px){

.map-section{
    padding:80px 0;
}

.location-card{
    padding:28px;
}

.location-item{
    gap:15px;
}

.location-icon{
    width:50px;
    height:50px;
    font-size:18px;
}

}