/* =========================================
   HERO
========================================= */

.services-hero{

    position: relative;

    padding: 220px 0 140px;

    overflow: hidden;

    background:
    linear-gradient(
        135deg,
        rgba(20,30,48,0.96),
        rgba(36,59,85,0.92)
    ),
    #d9d9d9;

}

.services-overlay{

    position: absolute;
    inset: 0;

    background:
    radial-gradient(
        circle at top right,
        rgba(247,232,139,0.25),
        transparent 30%
    );

}

.page-badge{

    display: inline-block;

    padding: 12px 25px;

    border-radius: 60px;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.1);

    color: #fff;

    margin-bottom: 30px;

}

.page-title{

    font-size: 72px;
    font-weight: 800;

    color: #fff;

    line-height: 1.1;

    margin-bottom: 30px;

}

.page-description{

    font-size: 18px;
    line-height: 1.9;

    color: rgba(255,255,255,0.8);

}

/* =========================================
   SERVICES
========================================= */

.services-main{

    padding: 120px 0;

    background: #f8f9fa;

}

.premium-service-card{

    position: relative;

    background: #fff;

    border-radius: 35px;

    overflow: hidden;

    transition: 0.5s ease;

    box-shadow: 0 15px 60px rgba(0,0,0,0.08);

    height: 100%;

}

.premium-service-card:hover{

    transform: translateY(-15px);

    box-shadow: 0 25px 80px rgba(0,0,0,0.12);

}

.service-image{

    height: 260px;

    background: #d9d9d9;

}

.service-content{

    padding: 40px;

}

.service-icon{

    width: 75px;
    height: 75px;

    border-radius: 22px;

    background:
    linear-gradient(
        135deg,
        rgba(247,232,139,0.2),
        rgba(29,53,87,0.15)
    );

    margin-bottom: 30px;

}

.service-content h3{

    font-size: 32px;
    font-weight: 800;

    color: #1D3557;

    margin-bottom: 20px;

}

.service-content p{

    color: #6c757d;

    line-height: 1.9;

    margin-bottom: 30px;

}

.service-features{

    margin-bottom: 35px;

}

.service-features li{

    position: relative;

    padding-left: 30px;

    margin-bottom: 14px;

    color: #495057;

}

.service-features li::before{

    content: '';

    position: absolute;

    left: 0;
    top: 8px;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #F7E887;

}

.btn-service{

    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 58px;

    padding: 0 30px;

    border-radius: 60px;

    background:
    linear-gradient(
        135deg,
        #F7E887,
        #1D3557
    );

    color: #fff;

    font-weight: 700;

    transition: 0.4s ease;

}

.btn-service:hover{

    color: #fff;

    transform: translateY(-5px);

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .page-title{
        font-size: 52px;
    }

}

@media(max-width:768px){

    .page-title{
        font-size: 42px;
    }

    .service-content{
        padding: 30px;
    }

}