
.location-section{
    padding:0px;
    background:#FFFFFF;
    position:relative;
    overflow:hidden;
}

.location-heading h2 {
    font-size: 30px;
    color: rgb(255, 255, 255);
    margin-bottom: 15px;
}
.location-container{
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

.location-heading{
    text-align:center;
    margin-bottom:20px;
}

.location-heading span{
    display:inline-block;
    background:#1a73e8;
    color:#fff;
    padding:8px 20px;
    border-radius:50px;
    font-size:14px;
    margin-bottom:20px;
}

.location-heading h2{
    font-size:35px;
    color:#000000; font-weight:bold;
    margin-bottom:15px;
}

.location-heading p{
    font-size:18px;
    color:#bbb;
    max-width:750px;
    margin:auto;
    line-height:1.8;
}

/* GRID */

.location-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.location-card{
    background:#111;
    border:1px solid rgba(255,255,255,0.08);
    padding:35px 28px;
    border-radius:22px;
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.location-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#1a73e8;
}

.location-card:hover{
    transform:translateY(-8px);
    border-color:#1a73e8;
}

.location-icon{
    width:65px;
    height:65px;
    background:#1a73e8;
    color:#fff;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:25px;
}

.location-card h3{
    font-size:18px;
    color:#fff;
    margin-bottom:18px;
    line-height:1.5;
}

.location-card p{
    color:#cfcfcf;
    line-height:1.9;
    font-size:16px;
}

/* CONTACT */

.location-contact-box{
    margin-top:60px;
    background:#111;
    border:1px solid rgba(255,255,255,0.08);
    padding:50px 30px;
    border-radius:25px;
    text-align:center;
}

.location-contact-box h3{
    font-size:42px;
    color:#fff;
    margin-bottom:25px;
}

.call-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#1a73e8;
    color:#fff;
    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
    font-size:20px;
    font-weight:700;
    margin-bottom:20px;
    transition:.4s;
}

.call-btn:hover{
    background:#fff;
    color:#1a73e8;
}

.website-btn{
    display:block;
    color:#bbb;
    text-decoration:none;
    font-size:19px;
    margin-top:10px;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .location-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .location-grid{
        grid-template-columns:1fr;
    }

    .location-heading h2{
        font-size:34px;
    }

    .location-contact-box h3{
        font-size:30px;
    }

    .call-btn{
        font-size:17px;
        padding:14px 24px;
    }

}
