/*
 * MS-GROUP AFRIQUE - Fichier main.css
 * Développé par : [INGENIEUR GC]
 * Version : 1.0.0
 * Date : 3 Avril 2026
 */

/* * MS-GROUP AFRIQUE (MSGA) - Fichier main.css
 * Thème : Business Premium (Blanc & Bleu Royal)
 * Développé par : INGENIEUR GC
 * Mise à jour : 6 Avril 2026
 */
/* * MS-GROUP AFRIQUE (MSGA) - CSS GLOBAL 
 * Version : 1.2.0 (Fusionnée & Corrigée)
 * Date : 6 Avril 2026
 */

/* --- 1. VARIABLES & RESET --- */
:root {
    --primary-blue: #0056b3;
    --dark-blue: #003d80;
    --text-dark: #1a1a1a;
    --text-muted: #555555;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
    --shadow: 0 10px 30px rgba(0,0,0,0.15);
    --overlay: rgba(0, 20, 40, 0.7); 
    --glass: rgba(255, 255, 255, 0.1);
}

/* --- RESET & BASE --- */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: 'Montserrat', sans-serif; 
    color: var(--text-dark); 
    line-height: 1.6; 
    overflow-x: hidden; 
    padding-top: 120px; /* Évite que le contenu passe sous la navbar fixe */
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 2. NAVIGATION (Correction Appbar) --- */
.top-bar {
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
    position: fixed;
    top: 0; 
    width: 100%; 
    z-index: 1001;
    height: 40px; /* Hauteur fixe pour un calcul précis */
}

.top-bar .container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

.navbar {
    position: fixed;
    top: 40px; /* Aligné sous la top-bar */
    left: 0;
    width: 100%;
    height: 80px; /* Hauteur légèrement augmentée pour plus d'air */
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

/* On s'assure que le container prend toute la hauteur pour le centrage flex */
.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%;
    height: 100%; 
    max-width: 1200px; /* Aligné avec le reste du site */
    margin: 0 auto;
    padding: 0 20px;
}

/* --- LOGO --- */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 50px; /* Taille optimale */
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    white-space: nowrap; /* Évite que le texte passe à la ligne */
}

/* --- NAVIGATION --- */
.nav-links { 
    display: flex; 
    gap: 30px; 
    align-items: center; /* Centre verticalement tous les <li> */
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%; /* Important pour que align-items fonctionne */
}

.nav-links li {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    text-transform: uppercase; /* Style plus pro/corporate */
    letter-spacing: 0.5px;
    transition: var(--transition);
}

/* Bouton Contact spécifique */
/* Bouton Contact spécifique - Version Corrigée */
.btn-nav {
    background: var(--primary-blue);
    color: white !important;
    padding: 10px 22px !important;
    border-radius: 8px;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
    
    /* Ajouts pour la stabilité */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: fit-content; /* S'adapte au texte sans déborder */
    margin-left: 10px; /* Espace supplémentaire avec les autres liens */
    transition: transform 0.2s ease, background 0.3s ease;
}

/* État au survol (Hover) */
.btn-nav:hover {
    background: #004494; /* Un bleu un peu plus foncé que votre bleu primaire */
    color: white !important; /* Force le texte à rester blanc */
    transform: translateY(-2px); /* Petit effet de levée très pro */
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.3);
    text-decoration: none; /* Évite le soulignement automatique */
}

/* État au clic (Active) */
.btn-nav:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 86, 179, 0.2);
}
/* --- 3. HERO SECTION --- */
/* --- 3. HERO SECTION (REVISITÉE) --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Aligne le contenu à gauche */
    overflow: hidden;
    /* Dégradé professionnel : Sombre à gauche vers transparent à droite */
    background: linear-gradient(to right, 
        rgba(0, 8, 20, 0.95) 0%, 
        rgba(0, 8, 20, 0.8) 40%, 
        rgba(0, 8, 20, 0) 100%), 
        url('home.jpeg') center/cover no-repeat;
    background-attachment: fixed;
}

.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px; /* Largeur max pour éviter que le texte touche les bords */
    margin: 0 auto;
    padding: 0 5%;
}

.hero-content {
    max-width: 700px; /* On limite la largeur du texte pour la lisibilité */
    text-align: left; /* Alignement texte à gauche */
    backdrop-filter: none; /* On enlève le flou global pour rester clean */
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem); /* Ajusté pour ne pas être trop massif */
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 25px;
    color: var(--white);
}

.hero h1 span {
    background: linear-gradient(135deg, var(--gold) 0%, #FFF5D1 50%, var(--gold) 100%);
    -webkit-text-fill-color: blue;
    display: inline-block;
    filter: drop-shadow(0 0 15px var(--gold-glow));
}

.hero p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    max-width: 550px;
    margin: 0 0 40px 0; /* Pas de auto pour rester à gauche */
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    line-height: 1.6;
    border-left: 4px solid var(--gold);
    padding-left: 20px;
}

/* Boutons Alignés à Gauche */
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: flex-start; /* Important : aligné à gauche */
    flex-wrap: wrap;
}

.btn-gold {
    background: var(--gold);
    color: blue;
    padding: 18px 45px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%); /* Forme dynamique */
    transition: var(--transition);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    filter: brightness(1.1);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 16px 35px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--white);
    color: #000;
}



/* --- 4. SERVICES --- */
.services { padding: 100px 0; background: var(--white); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-title { font-size: 2.5rem; margin-bottom: 15px; }
.section-title span { color: var(--primary-blue); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    padding: 40px;
    border-radius: 15px;
    background: var(--bg-light);
    transition: var(--transition);
    border: 1px solid transparent;
}
.service-card:hover { transform: translateY(-10px); border-color: var(--primary-blue); background: white; box-shadow: var(--shadow); }
.icon-box { font-size: 2.5rem; color: var(--primary-blue); margin-bottom: 20px; }

.about-flex { 
    display: flex; 
    align-items: center; 
    gap: 50px; 
}

.about-img { 
    position: relative; 
    /* On réduit l'importance de l'image (40% de l'espace au lieu de 50%) */
    flex: 0 0 40%; 
}

.about-img img { 
    width: 100%;       /* L'image prend toute la place du conteneur .about-img */
    height: auto;      /* Garde les proportions */
    max-height: 450px; /* Limite la hauteur pour éviter que la section soit trop longue */
    object-fit: cover; /* Recadre proprement si max-height est atteint */
    border-radius: 20px; 
    display: block;
}

.about-text { 
    flex: 1; /* Le texte prend tout le reste de l'espace disponible */
}

/* Ajustement pour mobile */
@media (max-width: 768px) {
    .about-flex { flex-direction: column; }
    .about-img { flex: 0 0 100%; width: 100%; }
    .experience-badge { right: 10px; bottom: 10px; }
}

/* --- 5. WHY US --- */
.why-us { padding: 100px 0; }
.about-flex { display: flex; align-items: center; gap: 50px; }
.about-img { position: relative; flex: 1; }
.about-img img { border-radius: 20px; }
.about-text { flex: 1; }

.experience-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--primary-blue);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

/* --- 6. FOOTER --- */
.main-footer { background: #1a1a1a; color: #eee; padding: 80px 0 20px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.footer-col h4 { color: white; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background: var(--primary-blue); }
.footer-links li { margin-bottom: 12px; }
.footer-links a:hover { color: var(--primary-blue); padding-left: 5px; }

.status-dot {
    width: 10px; height: 10px; background: #25d366;
    border-radius: 50%; display: inline-block; margin-right: 8px;
    box-shadow: 0 0 10px #25d366;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.footer-bottom { border-top: 1px solid #333; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; }

/* --- 7. RESPONSIVE --- */
@media (max-width: 992px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .about-flex { flex-direction: column; }
    .hero h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .navbar { top: 0; }
    .nav-links { display: none; } /* À gérer avec le JS du burger */
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
}

/* * MS-GROUP AFRIQUE (MSGA) - CSS Page À Propos
 * Thème : Business Premium (Blanc & Bleu Royal)
 * Mise à jour : 6 Avril 2026
 */

/* --- 1. GRILLE À PROPOS (PRÉSENTATION) --- */
/* --- 1. CONFIGURATION DU HERO (PAGE À PROPOS) --- */
.page-hero-about {
    height: 60vh;
    min-height: 450px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 86, 179, 0.6)), 
                url('../assets/hero-bg.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 100px;
}

.hero-tag {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

/* --- 2. GRID À PROPOS (VISION) --- */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    padding: 100px 0;
    background-color: var(--white);
}

.image-wrapper {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 40px 0 40px 0; /* Design asymétrique moderne */
    border: 1px solid rgba(0, 86, 179, 0.1);
    box-shadow: 0 25px 50px rgba(0, 86, 179, 0.1);
    transition: var(--transition);
}

.floating-card {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
    animation: floating 3s ease-in-out infinite;
}

.floating-card .number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.floating-card .text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 800;
}

.about-content .subtitle {
    color: var(--primary-blue);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* --- 3. SECTION STATISTIQUES --- */
.stats {
    background-color: #0f172a; /* Fond bleu nuit très sombre pour contraste */
    padding: 100px 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 4.2rem;
    font-weight: 800;
    color: var(--primary-blue); /* Tu peux changer pour Gold si besoin */
    margin-bottom: 5px;
    letter-spacing: -2px;
}

.stat-item p {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    opacity: 0.8;
    color: var(--primary-blue);
}

/* --- 4. SECTION VALEURS --- */
.values {
    padding: 120px 0;
    background-color: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 60px 45px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 86, 179, 0.12);
    border-color: var(--primary-blue);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 86, 179, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin: 0 auto 30px;
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* --- 5. ANIMATIONS --- */
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* --- 6. RESPONSIVE --- */
@media (max-width: 992px) {
    .about-grid { 
        gap: 40px; 
        padding: 70px 0; 
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-grid {
        text-align: center;
    }
    
    .about-image {
        order: 2; /* L'image passe sous le texte */
        margin-top: 50px;
    }
    
    .floating-card {
        right: 10px;
        bottom: -10px;
        padding: 15px;
    }

    .stat-item h3 { 
        font-size: 3.2rem; 
    }
    
    .value-card {
        padding: 40px 30px;
    }
}
/* * MS-GROUP AFRIQUE (MSGA) - CSS Page Contact
 * Thème : Business Premium (Blanc & Bleu Royal)
 * Mise à jour : 6 Avril 2026
 */

/* --- 1. SECTION CONTACT & GRILLE --- */
/* --- HERO CONTACT --- */
.page-hero-contact {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #0f172a 0%, #0056b3 100%);
    color: white;
    text-align: center;
}

/* --- CONTACT SECTION --- */
.contact-section {
    padding: 100px 0;
    margin-top: -60px; /* Chevauchement sur le hero pour le style */
    position: relative;
    z-index: 5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: start;
}

/* INFO CARDS */
.info-card-list {
    margin: 30px 0;
}

.info-item-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.info-item-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 86, 179, 0.1);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(0, 86, 179, 0.1);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

/* FORM CONTAINER */
.contact-form-container {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.form-header { margin-bottom: 35px; }
.form-header h3 { font-size: 1.8rem; font-weight: 800; color: var(--text-dark); }

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: #f9f9f9;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.05);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.3);
}

/* SOCIAL PILLS */
.social-pills { display: flex; gap: 15px; margin-top: 20px; }
.social-pills a {
    padding: 10px 20px;
    background: #f0f4f8;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
.social-pills a.wa-pill { background: #25D366; color: white; }
.social-pills a:hover { opacity: 0.8; transform: scale(1.05); }

/* MAP */
.map-section { padding-bottom: 100px; }
.map-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    filter: grayscale(0.2);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-container { padding: 30px; }
}
/*PAGE SERVICES */
/* --- HERO SERVICES --- */
.page-hero-services {
    height: 60vh;
    background: url('acceuil.jpeg') center/cover no-repeat;
    display: flex; 
    align-items: center; 
    justify-content: center;
    text-align: center; 
    color: white; 
    padding-top: 80px;
}

/* --- SERVICE BLOCKS --- */
.services-detail { padding: 100px 0; background: #fff; }

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-bottom: 150px;
}

.service-block.reverse { direction: rtl; }
.service-block.reverse .service-info { direction: ltr; }

.service-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0, 86, 179, 0.05);
    line-height: 1;
    position: absolute;
    top: -40px; left: -20px;
    z-index: -1;
}

.service-info { position: relative; }

.service-icon-box {
    width: 70px; height: 70px;
    background: var(--primary-blue);
    color: white;
    border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
}

.service-info h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; color: #1a1a1a; }
.service-info h2 span { color: var(--primary-blue); }

.service-list { margin: 25px 0; }
.service-list li { 
    display: flex; align-items: center; gap: 12px; 
    margin-bottom: 12px; font-weight: 600; color: #444;
}
.service-list li i { color: var(--primary-blue); font-size: 0.9rem; }

/* IMAGE FRAME EFFECT */
.service-block {
    display: flex;
    align-items: center;
    gap: 60px; /* Espace entre le texte et l'image */
    margin-bottom: 80px;
}

.service-info {
    flex: 1;
}

.service-image {
    flex: 1;
    display: flex;
    justify-content: center; /* Centre l'image dans sa colonne */
}

.service-image .img-frame {
    position: relative;
    max-width: 500px; /* Empêche l'image de devenir trop grande sur grand écran */
    width: 100%;
    transition: var(--transition);
}

.service-image img {
    width: 100%; /* L'image remplit le cadre */
    height: auto; /* Garde le ratio */
    display: block;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.service-image .img-frame::after {
    content: '';
    position: absolute;
    top: 20px; right: -20px;
    width: 100%; height: 100%;
    border: 2px solid var(--primary-blue);
    border-radius: 30px;
    z-index: -1;
    transition: var(--transition);
}

/* Animation au survol */
.service-block:hover .img-frame { transform: translate(-10px, -10px); }
.service-block:hover .img-frame::after { transform: translate(20px, 20px); }

@media (max-width: 992px) {
    .service-block {
        flex-direction: column; /* On empile texte et image */
        text-align: center;
        gap: 40px;
    }

    .service-image {
        width: 85%; /* On réduit un peu pour laisser de la place au cadre ::after */
        margin: 0 auto;
    }
    
    .service-list {
        text-align: left; /* On garde la liste alignée à gauche pour la lisibilité */
        display: inline-block;
    }
}

/* BUTTON SERVICE */
.btn-service {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px;
    background: #f8f9fa;
    color: var(--primary-blue);
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}
.btn-service:hover { background: var(--primary-blue); color: white; }

/* FINAL CTA CARD */
.final-cta { padding: 100px 0; background: #f4f7fa; }
.cta-card {
    background: #0f172a;
    padding: 80px 50px;
    border-radius: 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.cta-card h2 { font-size: 2.8rem; margin-bottom: 15px; }
.cta-card h2 span { color: var(--primary-blue); }
.cta-btns { display: flex; justify-content: center; gap: 20px; margin-top: 40px; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .service-block { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .service-block.reverse { direction: ltr; }
    .service-icon-box { margin: 0 auto 25px; }
    .service-list li { justify-content: center; }
    .service-number { left: 50%; transform: translateX(-50%); }
    .cta-btns { flex-direction: column; }
}