/* ==================================================
   FAST-LOCATION
   SERVICES PAGE
================================================== */

:root{
    --primary:#0F3D5E;
    --secondary:#102331;
    --gold:#D4B15A;
    --success:#4A9B7A;
    --light:#F7F9FC;
    --text:#555;
}

.services-hero{
    background:
    linear-gradient(
        rgba(15,61,94,.90),
        rgba(16,35,49,.92)
    );
    min-height:550px;
    display:flex;
    align-items:center;
    color:#fff;
}

.services-hero h1{
    font-size:4rem;
    font-weight:800;
    margin-bottom:20px;
}

.services-hero p{
    font-size:1.2rem;
    max-width:750px;
    opacity:.95;
}

.hero-image{
    height:450px;
    background:#d8dde4;
    border-radius:25px;
}

.services-section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    color:var(--primary);
    font-size:2.8rem;
    font-weight:800;
}

.section-title p{
    color:var(--text);
    max-width:700px;
    margin:auto;
}

.service-card{
    background:#fff;
    border-radius:25px;
    padding:35px;
    height:100%;

    box-shadow:
    0 15px 35px rgba(0,0,0,.06);

    transition:.35s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-icon{
    width:85px;
    height:85px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        var(--gold),
        #e6c97a
    );

    margin-bottom:25px;
}

.service-icon i{
    font-size:38px;
    color:#fff;
}

.service-card h4{
    color:var(--primary);
    font-weight:700;
    margin-bottom:15px;
}

.service-card p{
    color:var(--text);
    line-height:1.8;
}

.service-card .btn{
    margin-top:15px;
}

.process-section{
    background:var(--light);
    padding:100px 0;
}

.process-card{
    text-align:center;
    background:#fff;
    padding:35px;
    border-radius:20px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.process-number{
    width:70px;
    height:70px;

    margin:auto;
    margin-bottom:20px;

    border-radius:50%;
    background:var(--primary);

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:26px;
    font-weight:700;
}

.advantage-section{
    padding:100px 0;
}

.advantage-image{
    height:500px;
    background:#d8dde4;
    border-radius:25px;
}

.advantage-content h2{
    color:var(--primary);
    font-weight:800;
    margin-bottom:25px;
}

.advantage-list{
    list-style:none;
    padding:0;
}

.advantage-list li{
    margin-bottom:15px;
    font-size:17px;
}

.advantage-list i{
    color:var(--success);
    margin-right:10px;
}

.cta-services{
    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;
    text-align:center;
    padding:120px 0;
}

.cta-services h2{
    font-size:3rem;
    font-weight:800;
}

.cta-services p{
    max-width:800px;
    margin:20px auto;
}

@media(max-width:991px){

    .services-hero{
        min-height:auto;
        padding:120px 0;
    }

    .services-hero h1{
        font-size:2.8rem;
    }

    .hero-image{
        margin-top:40px;
    }

    .cta-services h2{
        font-size:2rem;
    }

}