/* ===============================
        SERVICES PAGE
=============================== */

.hero-services{
    height:350px;
    background-image:url("../images/home/hero_services.webp");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    position:relative;
}

.hero-services::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.35);
}

.hero-services h1{
    font-size:60px;
    font-weight:700;
    position:relative;
    z-index:1;
}

.services-intro{
    padding:80px 20px;
    background:#fff;
}

.services-container{
    max-width:1100px;
    margin:0 auto;
}

.services-intro p{
    margin:0 0 28px;
    color:#444;
    font-size:17px;
    line-height:1.8;
}

.services-intro p:last-child{
    margin-bottom:0;
}

.services-closing{
    padding:70px 20px 90px;
    background:#fff;
}

.services-closing p{
    max-width:1050px;
    margin:0 auto;
    color:#444;
    font-size:17px;
    line-height:1.8;
    text-align:center;
}

.services-list{
    max-width:1100px;
    margin:60px auto;
    padding:0 20px;
    display:flex;
    flex-direction:column;
    gap:40px;
}

.service-row{
    display:flex;
    align-items:center;
    gap:25px;
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
    transition:all .3s ease;
}

.service-row:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

a.service-row {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

a.service-row:hover {
    transform: translateY(-3px);
}

.service-link{
    text-decoration:none !important;
    color:inherit !important;
    display:block !important;
}

.service-photo{
    width:260px;
    height:180px;
    object-fit:cover;
    border-radius:8px;
    flex-shrink:0;
}

.service-divider{
    width:4px;
    height:120px;
    background:#ec252f;
    flex-shrink:0;
}

.service-row-logo{
    width:120px;
    height:auto;
    flex-shrink:0;
    display:block;
}

.service-text{
    flex:1;
}

.service-text p{
    font-size:17px;
    line-height:1.7;
    color:#555;
    margin:0;
}

.services-list .btn-black{
    align-self:center;
    margin-top:30px;
}

@media (max-width:768px){

    .hero-services{
        height:300px;
        padding:20px;
    }

    .hero-services h1{
        font-size:34px;
        line-height:1.2;
        padding:0 20px;
    }

    .services-list{
        padding:0 15px;
        gap:25px;
    }

    .service-row{
        flex-direction:column;
        align-items:center;
        text-align:center;
        padding:20px;
    }

    .service-photo{
        width:100%;
        max-width:280px;
        height:180px;
        object-fit:cover;
    }

    .service-divider{
        width:60px;
        height:4px;
    }

    .service-row-logo{
        width:110px;
    }

    .service-text{
        width:100%;
    }

    .service-text p{
        font-size:15px;
        line-height:1.6;
    }
}