/* =====================================
   SERVICES SECTION
===================================== */

.services-section{
    max-width:1200px;
    margin:60px auto;
    padding:0 20px;
    text-align:center;
}

.services-section .section-title{
    font-size:34px;
    color:#800020;
    font-weight:700;
    margin-bottom:10px;
    font-family:'Poppins', sans-serif;
}

.services-subtitle{
    color:#666;
    font-size:16px;
    margin-bottom:35px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:22px;
}

.service-item{
    background:#ffffff;
    border-radius:18px;
    padding:24px 20px;
    box-shadow:0 10px 28px rgba(0,0,0,0.08);
    border:1px solid #ececec;
    transition:all .35s ease;
}

.service-item:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(128,0,32,0.15);
    border-color:#D4AF37;
}

.service-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#f7e8ec;
    font-size:28px;
    margin-bottom:18px;
}

.service-item p{
    margin:0;
    color:#444;
    font-size:15px;
    line-height:1.7;
}

@media (max-width:768px){

    .services-section .section-title{
        font-size:28px;
    }

    .services-subtitle{
        font-size:15px;
        margin-bottom:28px;
    }

    .services-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .service-item{
        padding:22px 18px;
    }

    .service-icon{
        width:58px;
        height:58px;
        font-size:24px;
    }

    .service-item p{
        font-size:14px;
    }
}