.location-section{
    padding:100px 0;
    background:#f7f9fc;
}

.location-section .container{
    width:100%;
    max-width:1450px;
    margin:auto;
    padding:0 20px;
}

.location-section .section-title{
    text-align:center;
    margin-bottom:60px;
}

.location-section .section-title span{
    display:inline-block;
    color:#0D4AAE;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.location-section .section-title h2{
    font-size:42px;
    color:#16223b;
    margin:0 0 18px;
}

.location-section .section-title p{
    max-width:650px;
    margin:auto;
    color:#6b7280;
    line-height:1.8;
}

.location-wrapper{
    width:100%;
    display:grid;
    grid-template-columns:380px minmax(0,1fr);
    min-height:520px;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 55px rgba(0,0,0,.08);
}

.location-info{
    padding:45px 40px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    background:#fff;
}

.location-badge{
    width:58px;
    height:58px;
    border-radius:16px;
    background:#0D4AAE;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:23px;
    margin-bottom:25px;
    box-shadow:0 10px 25px rgba(13,74,174,.25);
}

.location-label{
    color:#0D4AAE;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:10px;
}

.location-info h3{
    font-size:28px;
    color:#16223b;
    margin:0 0 14px;
}

.location-info > p{
    color:#6b7280;
    line-height:1.7;
    margin:0 0 28px;
}

.location-detail{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:30px;
}

.location-detail-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
}

.location-detail-item > i{
    width:38px;
    height:38px;
    min-width:38px;
    border-radius:11px;
    background:#eaf2ff;
    color:#0D4AAE;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:14px;
}

.location-detail-item div{
    display:flex;
    flex-direction:column;
    gap:3px;
}

.location-detail-item strong{
    color:#16223b;
    font-size:14px;
}

.location-detail-item span{
    color:#737b87;
    font-size:13px;
    line-height:1.5;
}

.location-button{
    width:max-content;
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:13px 20px;
    border-radius:10px;
    background:#0D4AAE;
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    transition:.3s;
}

.location-button:hover{
    background:#083578;
    color:#fff;
    transform:translateY(-2px);
}

.location-map{
    position:relative;
    width:100%;
    min-height:520px;
    overflow:hidden;
    background:#e9edf3;
}

.location-map iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    min-height:520px;
    border:0;
    display:block;
}

.map-overlay{
    position:absolute;
    left:25px;
    bottom:25px;
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 17px;
    border-radius:12px;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    color:#16223b;
    font-size:13px;
    font-weight:600;
}

.map-overlay > div:last-child{
    display:flex;
    flex-direction:column;
    gap:2px;
}

.map-overlay span{
    color:#737b87;
    font-size:11px;
    font-weight:500;
}

.map-pin{
    width:34px;
    height:34px;
    min-width:34px;
    border-radius:10px;
    background:#0D4AAE;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
}

@media(max-width:1200px){

    .location-section{
        padding:90px 0;
    }

    .location-section .container{
        max-width:1100px;
    }

    .location-wrapper{
        grid-template-columns:350px minmax(0,1fr);
    }

}

@media(max-width:991px){

    .location-section{
        padding:80px 0;
    }

    .location-section .container{
        max-width:820px;
    }

    .location-wrapper{
        grid-template-columns:1fr;
    }

    .location-info{
        padding:40px;
    }

    .location-map{
        min-height:450px;
    }

    .location-map iframe{
        min-height:450px;
    }

    .location-section .section-title h2{
        font-size:36px;
    }

}

@media(max-width:576px){

    .location-section{
        padding:70px 0;
    }

    .location-section .container{
        padding:0 16px;
    }

    .location-section .section-title{
        margin-bottom:40px;
    }

    .location-section .section-title h2{
        font-size:30px;
    }

    .location-wrapper{
        border-radius:18px;
    }

    .location-info{
        padding:30px 25px;
    }

    .location-info h3{
        font-size:24px;
    }

    .location-map{
        min-height:350px;
    }

    .location-map iframe{
        min-height:350px;
    }

    .map-overlay{
        left:15px;
        bottom:15px;
    }

}