/* --- Styles Spécifiques aux Pages de Service --- */

.hero-service-specific {
    background-size: cover;
    background-position: center;
    height: 70vh; /* Moins haut que la page d'accueil pour le service */
    filter: brightness(0.6); /* Assombrir l'image de fond */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--color-white);
    text-align: center;
}

.hero-service-specific::before { /* Pour l'overlay sombre sur l'image de fond */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Assombrir davantage */
    z-index: 0;
}

.hero-service-specific .hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.hero-service-specific h1 {
    font-size: 3.2em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-service-specific p {
    font-size: 1.3em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Section Processus */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
    text-align: center;
}

.process-step {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.process-icon {
    font-size: 3em;
    color: var(--color-blue);
    margin-bottom: 20px;
}

.process-step h3 {
    color: var(--color-black);
    margin-bottom: 15px;
}

.process-step p {
    color: var(--color-dark-grey);
}

/* Section CTA Banner */
.cta-banner {
    background-color: var(--color-blue);
    color: var(--color-blue);
    padding: 60px 20px;
    text-align: center;
}
.cta-banner2 {
    background-color: var(--color-blue);
    padding: 60px 20px;
    text-align: center;
}
.cta-banne2r h2 {
    color: var(--color-black);
    font-size: 2.8em;
    margin-bottom: 25px;
}

.cta-banner h2 {
    color: var(--color-white);
    font-size: 2.8em;
    margin-bottom: 25px;
}

.cta-banner h2::after {
    background-color: var(--color-white); /* Ligne blanche sur fond bleu */
}

.cta-banner p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.cta-banner .btn-cta {
    background-color: var(--color-white);
    color: var(--color-blue);
    border: 2px solid var(--color-white);
}

.cta-banner .btn-cta:hover {
    background-color: transparent;
    color: var(--color-white);
}

/* Active Nav Link (pour indiquer la page actuelle) */
.main-nav ul li a.active {
    color: var(--color-blue);
    font-weight: 700;
}


/* Responsive pour les pages de service */
@media (max-width: 992px) {
    .hero-service-specific h1 {
        font-size: 2.5em;
    }
    .hero-service-specific p {
        font-size: 1.1em;
    }
    .cta-banner h2 {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .hero-service-specific h1 {
        font-size: 2em;
    }
    .hero-service-specific p {
        font-size: 1em;
    }
    .cta-banner h2 {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .hero-service-specific h1 {
        font-size: 1.8em;
    }
    .hero-service-specific p {
        font-size: 0.9em;
    }
    .cta-banner h2 {
        font-size: 1.5em;
    }
    .process-grid {
        gap: 20px;
    }
}