/* =================================== */
/*  Styles pour la section Hard Services uniquement */
/* =================================== */

/* Section principale */
#service {
    padding: 60px 0 30px;
    background: #ffffff;
}

/* Container et Grid */
#service .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

#service .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

#service [class*="col-"] {
    padding: 0 15px;
    margin-bottom: 30px;
}

/* Carte de service */
#service .service-item {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#service .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

/* Icône de service */
#service .service-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
    padding: 30px;
    transition: all 0.3s ease;
}

#service .service-item:hover .service-icon {
    transform: scale(1.05);
}

#service .service-icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Titre du service */
#service .service-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px;
    text-transform: uppercase;
    line-height: 1.4;
}

/* Description du service */
#service .service-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Titre de section */
#service .sec-title {
    margin-bottom: 50px;
    text-align: center;
}

#service .sec-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

#service .sec-title h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: #e94560;
}

#service .sec-title p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* =================================== */
/*  Responsive Design */
/* =================================== */

@media (max-width: 991px) {
    #service .service-item {
        padding: 30px 20px;
    }
    
    #service .service-icon {
        width: 100px;
        height: 100px;
        padding: 25px;
    }
    
    #service .service-item h3 {
        font-size: 16px;
    }
    
    #service .service-item p {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    #service [class*="col-"] {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    
    #service .service-item {
        padding: 35px 25px;
        margin-bottom: 20px;
    }
    
    #service .sec-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    #service .service-icon {
        width: 90px;
        height: 90px;
        padding: 20px;
    }
    
    #service .service-item h3 {
        font-size: 15px;
    }
    
    #service .service-item p {
        font-size: 13px;
    }
}
/* Section Header - Centrage complet */
#service {
    padding: 100px 0 60px;
    background: #f9f9f9;
    width: 100%;
}

#service .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

#service .row {
    display: flex;
    justify-content: center;
    width: 100%;
}

#service .sec-title {
    margin-bottom: 50px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#service .sec-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
}

#service .sec-title h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: #e94560;
}

#service .sec-title p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

/* Responsive */
@media (max-width: 767px) {
    #service {
        padding: 80px 0 40px;
    }
    
    #service .sec-title h2 {
        font-size: 28px;
    }
    
    #service .sec-title p {
        font-size: 14px;
        padding: 0 15px;
    }
}