.serviceDetail{
    background:#fff;
}

.serviceRow{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    margin-bottom:120px;
}

.serviceRow:last-child{
    margin-bottom:0;
}

.serviceRow.reverse .serviceImg{
    order:2;
}

.serviceRow.reverse .serviceTxt{
    order:1;
}

.serviceImg img{
    width:100%;
    border-radius:30px;
    display:block;
}

.serviceTxt span{
    color:#c9a45c;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.serviceTxt h2{
    font-size:42px;
    margin:10px 0 25px;
}

.serviceTxt p{
    color:#555;
    margin-bottom:25px;
}

.serviceTxt ul{
    margin:0;
    padding:0;
    list-style:none;
}

.serviceTxt li{
    padding:12px 0;
    border-bottom:1px solid #eee;
}

.serviceTxt li:before{
    content:"✓";
    color:#c9a45c;
    font-weight:bold;
    margin-right:10px;
}

.serviceFeature{
    background:#111827;
}

.serviceFeature .titleBox h2{
    color:#fff;
}

.featureGrid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.featureItem{
    background:rgba(255,255,255,.05);
    padding:40px 30px;
    border-radius:25px;
    text-align:center;
}

.featureItem h3{
    color:#fff;
    margin-bottom:15px;
}

.featureItem p{
    color:#cbd5e1;
}

.serviceCta{
    padding:120px 0;
    background:
    linear-gradient(rgba(7,11,18,.85),rgba(7,11,18,.85)),
    url(../images/cta.jpg) center/cover;
}

@media(max-width:768px){

    .serviceRow{
        grid-template-columns:1fr;
        gap:40px;
        margin-bottom:80px;
    }

    .serviceRow.reverse .serviceImg,
    .serviceRow.reverse .serviceTxt{
        order:unset;
    }

    .serviceTxt h2{
        font-size:32px;
    }

    .featureGrid{
        grid-template-columns:1fr;
    }

}


.moreBtn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:28px;
    padding:13px 30px;
    border-radius:50px;
    background:#c9a45c;
    color:#fff;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.moreBtn:hover{
    background:#111827;
    color:#fff;
    transform:translateY(-2px);
}