/* ================================
   ARCHIVE SERVICES - DIRECTRAVAUX
================================ */

/* Conteneur principal */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 60px;
}

/* Carte service */
.service-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

/* Effet hover */
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

/* Image */
.service-thumb img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Titre */
.service-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.service-title a {
    text-decoration: none;
    color: #1e2a38;
    transition: color 0.3s ease;
}

.service-title a:hover {
    color: #0073e6;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        gap: 25px;
    }

    .service-card {
        padding: 20px;
    }
}
/* HERO SERVICE */
.service-hero {
    text-align: center;
    padding: 60px 20px 30px;
}

.service-hero h1 {
    font-size: 42px;
    font-weight: 600;
}

/* CONTENU */
.service-content {
    max-width: 1100px;
    margin: 0 auto 80px;
    padding: 20px;
}

.service-image {
    margin-bottom: 40px;
}

.service-image img {
    width: 100%;
    border-radius: 14px;
}

.service-text {
    font-size: 18px;
    line-height: 1.7;
}


