/* assets/services.css */

/* ==========================================================================
   1. IDENTITÉ VISUELLE DES MARQUES (LOOK & FEEL ENCADRÉ)
   ========================================================================== */

/* Sur les pages dédiées (Le grand titre H1 encadré avec effet de relief) */
.service-main-title {
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #1a1a1a;
    padding: 20px 50px;
    margin-bottom: 35px;
    border: 3px solid #1a1a1a;
    border-radius: 2px;
    background-color: #fff;
    /* Ombre nette et décalée pour un style "bloc" très moderne */
    box-shadow: 6px 6px 0px rgba(26, 26, 26, 0.1); 
}

/* Sur la page d'accueil (Le badge au-dessus des icônes) */
.service-brand {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a1a;
    padding: 10px 22px;
    margin-bottom: 25px;
    border: 2px solid #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
    background-color: transparent;
}

/* Petit effet premium : le cadre s'inverse au survol de la prestation sur l'accueil */
.service-item:hover .service-brand {
    background-color: #1a1a1a;
    color: #fff;
}


/* ==========================================================================
   2. STRUCTURE GLOBALE DES PAGES DÉDIÉES
   ========================================================================== */

.service-page-container {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
    color: #333;
}

.service-page-header {
    text-align: center;
    margin-bottom: 80px;
}

.service-main-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    max-width: 850px;
    margin: 0 auto;
}

.accent-color {
    color: #1a1a1a;
}

/* ==========================================================================
   3. GRILLE DES LIGNES DE SERVICES (IMAGE + TEXTE)
   ========================================================================== */

.service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-text p {
    line-height: 1.8;
    color: #444;
    font-size: 1.05rem;
}

.service-text h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.service-text h2 i {
    color: #888;
    margin-right: 10px;
}

.service-image {
    flex: 1;
    text-align: center;
}

.service-image img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
}

/* ==========================================================================
   4. PIED DE PAGE DES SERVICES (CALL TO ACTION)
   ========================================================================== */

.service-page-footer {
    text-align: center;
    padding: 50px 0;
    border-top: 1px solid #eee;
    margin-top: 60px;
}

.service-page-footer h3 {
    font-size: 1.6rem;
    margin-bottom: 35px;
    font-weight: 300;
    color: #1a1a1a;
}

.btn-cta-large {
    font-size: 1.1rem;
    padding: 20px 45px;
    border-radius: 4px;
}

/* ==========================================================================
   5. RESPONSIVE DESIGN (MOBILES & TABLETTES)
   ========================================================================== */

@media (max-width: 768px) {
    .service-row, .service-row.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .service-image {
        order: -1;
    }

    .service-main-title {
        font-size: 1.5rem;
        padding: 15px 25px;
        letter-spacing: 2px;
    }
}