/* ==========================================================================
   GRENNA PRODUCTION - THEME CSS PRINCIPAL
   Design : Mix Libellule Productions x JumpStart Studio
   ========================================================================== */

/* --- 1. VARIABLES GLOBALES --- */
:root {
    /* Couleurs (Unies, sans dégradé) */
    --color-white: #ffffff;
    --color-light-blue: #e0f1ff;
    --color-primary-blue: #210B53;
    --color-accent-blue: #00c9a7;
    --color-gold: #daa21b;
    --color-text-dark: #1f2937; /* Gris très foncé pour une lecture douce */
    
    /* Typographie */
    --font-title: 'Futura LT W01 Book', 'Jost', sans-serif;
    --font-body: 'Nunito', 'Helvetica Neue', sans-serif;
    
    /* Formes Asymétriques (Style JumpStart) */
    --shape-jumpstart: 40px 8px 40px 8px;
    --shape-jumpstart-reverse: 8px 40px 8px 40px;
}

/* Classe utilitaire Font (sortie du :root pour corriger l'erreur de syntaxe) */
.jost-font {
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

/* --- 2. RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-white);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden; /* Empêche le scroll horizontal */
    -webkit-font-smoothing: antialiased;
 
}
html, body {
    max-width: 100%;
    overflow-x: hidden; /* Coupe tout ce qui dépasse horizontalement */
    position: relative; /* Aide pour le positionnement mobile */
}


h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 800;
    text-transform: uppercase;
}

@media screen and (max-width: 969px) {
    h1 {font-size:1.8rem;}
    h2{font-size:1.7;}
    h3{font-size:1.6;}

}
    

a {
    color: var(--color-primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-gold);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 3. HEADER & NAVIGATION (VERSION CORRIGÉE) --- */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.site-header.scrolled {
    padding: 8px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    transition: height 0.3s ease;
}
.site-header.scrolled .logo img { height: 50px; }

/* Navigation Desktop */
.main-nav #navLinks {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--color-text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.main-nav a:hover { color: var(--color-gold); }

/* Bouton Contact Header */
.btn-header {
    padding: 10px 25px !important;
    background-color: var(--color-primary-blue);
    color: #fff !important;
    border-radius: 50px;
}
.btn-header:hover { background-color: var(--color-gold); }

/* SOUS-MENU (DESKTOP) */
.dropdown-item { position: relative; padding: 10px 0; }

.submenu {
    list-style:none;
    display: none; /* CACHÉ PAR DÉFAUT */
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 10px 0;
    flex-direction: column;
    z-index: 1001;
}

/* Affichage au survol UNIQUEMENT sur Desktop (> 968px) */
@media screen and (min-width: 969px) {
    .dropdown-item:hover .submenu {
        display: flex; /* Visible au survol */
        animation: fadeUp 0.3s ease forwards;
    }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translate(-50%, 10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

.submenu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--color-text-dark);
    white-space: nowrap;
}
.submenu a:hover {
    background-color: var(--color-light-blue);
    color: var(--color-primary-blue);
}

/* MENU MOBILE (< 968px) */
.burger-menu { display: none; cursor: pointer; z-index: 2000; }
.burger-menu div {
    width: 25px; height: 3px; background-color: var(--color-primary-blue);
    margin: 5px; transition: all 0.3s ease; border-radius: 2px;
}

@media screen and (max-width: 968px) {
    .burger-menu { display: block; }

    /* Menu Mobile Plein Écran */
    .main-nav #navLinks {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw; /* FORCE LA LARGEUR TOTALE */
        height: 100vh; /* FORCE LA HAUTEUR TOTALE */
        background-color: var(--color-primary-blue);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%); /* Caché à droite */
        transition: transform 0.4s ease-in-out;
        z-index: 1500;
        padding-top: 40px;
    }

    /* Classe active (Menu Ouvert) */
    .nav-active { transform: translateX(0%) !important; }

    /* Liens Mobile */
    .main-nav li {
        margin: 15px 0;
        text-align: center;
        width: 100%;
        opacity: 1; 
    }

    .main-nav a {
        font-size: 1.4rem;
        color: #fff;
        display: block;
        padding: 5px 0;
    }

    /* Sous-menu Mobile (Accordéon) */
    .submenu {
        position: static;
        transform: none;
        box-shadow: none;
        background-color: rgba(0,0,0,0.1);
        width: 100%;
        display: none; /* Caché par défaut */
        animation: none;
        margin-top: 10px;
    }
    
    /* Classe utilitaire JS pour ouvrir l'accordéon */
    .submenu.open { display: block; }
    
    .submenu a { color: rgba(255,255,255,0.8); font-size: 1.1rem; }
    .submenu a:hover { color: var(--color-gold); background: none; }

    /* Animation Croix Burger */
    .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); background: #fff; }
    .toggle .line2 { opacity: 0; }
    .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); background: #fff; }
    
    body.no-scroll { overflow: hidden; }
}

/* --- 4. BOUTONS STYLE "PILULE" --- */
.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 6px 25px 6px 6px;
    background-color: var(--color-primary-blue);
    color: var(--color-white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-pill .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    color: var(--color-primary-blue);
    border-radius: 50%;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-pill .text { padding-right: 5px; }

.btn-pill:hover {
    background-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(207, 170, 94, 0.4);
    color: var(--color-white);
}

.btn-pill:hover .icon-circle {
    color: var(--color-gold);
    transform: rotate(15deg) scale(1.1);
}

/* --- 5. TITRE ANIMÉ & HERO --- */
.title-animated {
    line-height: 1.2;
    color: var(--color-primary-blue);
}

.title-animated .highlight {
    display: inline-block;
    animation: colorSwap 3s infinite alternate;
}
.highlight { animation: colorSwap 3s infinite alternate; }

@keyframes colorSwap {
    0% { color: var(--color-accent-blue); }
    100% { color: var(--color-gold); }
}

.hero-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-video-wrapper {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
}

.hero-video-wrapper iframe {
    width: 100vw; height: 56.25vw;
    min-height: 100vh; min-width: 177.77vh;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(30, 58, 138, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-section .container { position: relative; z-index: 2; }

.hero-section .title-animated {
    color: var(--color-white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    max-width: 700px;
    margin: 20px auto 40px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* --- 6. VAGUES --- */
.section-waves {
    position: relative;
    background-color: var(--color-light-blue);
    padding: 80px 0 80px 0;
}

.wave-top-main {
    position: absolute; top: -99px; left: 0; width: 100%; height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23f0f4f8' d='M0,100 C400,-50 1000,150 1440,20 L1440,100 L0,100 Z'/%3E%3C/svg%3E");
    background-size: cover; background-repeat: no-repeat; background-position: center bottom;
    z-index: 1;
}

.wave-top-secondary {
    position: absolute; top: -60px; left: 0; width: 100%; height: 70px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23e0f1ff' d='M0,100 C400,-30 1000,130 1440,40 L1440,100 L0,100 Z'/%3E%3C/svg%3E");
    background-size: cover; background-repeat: no-repeat; background-position: center bottom;
    z-index: 2; opacity: 0.8;
}

.wave-bottom-main {
    position: absolute; bottom: -99px; left: 0; width: 100%; height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23f0f4f8' d='M0,0 C400,150 1000,-50 1440,80 L1440,0 L0,0 Z'/%3E%3C/svg%3E");
    background-size: cover; background-repeat: no-repeat; background-position: center top;
    z-index: 1;
}

.wave-bottom-secondary {
    position: absolute; bottom: -60px; left: 0; width: 100%; height: 70px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23e0f1ff' d='M0,0 C400,130 1000,-30 1440,60 L1440,0 L0,0 Z'/%3E%3C/svg%3E");
    background-size: cover; background-repeat: no-repeat; background-position: center top;
    z-index: 2; opacity: 0.8;
}

/* --- 7. SERVICES --- */
.container-grid { max-width: 100%; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.service-card {
    background-color: var(--color-primary-blue);
    padding: 60px 40px;
    border-radius: 30px;
    position: relative;
    overflow: visible;
    box-shadow: 0 25px 50px rgba(30, 58, 138, 0.25);
    transition: transform 0.3s ease;
}

.service-card:hover { transform: translateY(-10px); }

.service-card h3 {
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
}

.btn-arrow-corner {
    position: absolute; top: -25px; right: -25px;
    width: 80px; height: 80px;
    background-color: var(--color-white);
    border-radius: 24px;
    display: flex; align-items: center; justify-content: center;
    color: var(--color-primary-blue);
    font-size: 1.8rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    z-index: 10;
}

.service-card:hover .btn-arrow-corner {
    background-color: var(--color-gold); color: var(--color-white);
    transform: translate(5px, -5px) rotate(45deg);
}

.service-icon-corner {
    position: absolute; bottom: -20px; left: 40px;
    width: 60px; height: 60px;
    background-color: var(--color-white);
    color: var(--color-primary-blue);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    z-index: 10;
}

@media screen and (max-width: 768px) {
    .btn-arrow-corner {
        right: 15px; /* On le rentre à l'intérieur */
        top: 15px;
        width: 60px; /* On les réduit un peu pour le mobile */
        height: 60px;
        font-size: 1.4rem;
    }

    .service-icon-corner {
        bottom: -25px; 
        
    }
    
    .service-card {
        padding: 40px 30px; /* Un peu moins de padding interne sur mobile */
    }
}

/* --- 8. ELEMENTS DIVERS --- */
.img-jumpstart {
    border-radius: var(--shape-jumpstart-reverse);
    width: 100%; height: auto;
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.1);
}

/* --- 9. FOOTER --- */
.site-footer {
    background-color: var(--color-primary-blue);
    color: var(--color-white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo { height: 80px; margin-bottom: 20px; }

.site-footer h3 {
    color: var(--color-gold); margin-bottom: 20px; font-size: 1.4rem;
}

.contact-info { list-style: none; }
.contact-info li { margin-bottom: 15px; display: flex; align-items: center; }
.contact-info i { color: var(--color-gold); margin-right: 15px; font-size: 1.2rem; }
.contact-info a { color: rgba(255,255,255,0.9); }
.contact-info a:hover { color: var(--color-gold); }

.social-links { display: flex; gap: 15px; }
.social-links a {
    display: flex; align-items: center; justify-content: center;
    width: 45px; height: 45px;
    background-color: rgba(255,255,255,0.1); color: var(--color-white);
    border-radius: 50%; transition: all 0.3s ease;
}
.social-links a:hover {
    background-color: var(--color-gold); transform: translateY(-3px);
}

.footer-bottom {
    text-align: center; margin-top: 60px; padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem; opacity: 0.7;
}
.footer-bottom a { color: var(--color-white); text-decoration: underline; }

/* --- 10. TRUST SECTION --- */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600&display=swap');
.trust-section {
    position: relative;
    background-color: var(--color-primary-blue);
    padding: 150px 0;
    text-align: center;
}

.trust-title {
    color: var(--color-white); 
    letter-spacing: 5px; text-transform: uppercase; margin-bottom: 5px;
}

.trust-subtitle {
    font-family: var(--font-title); color: #00c9a7;
    font-weight: normal;
    margin-bottom: 60px; transform: rotate(-2deg);
    display: inline-block;
}

.wave-top-white {
    position: absolute; top: -1px; left: 0; width: 100%; height: 150px;
    background-color: var(--color-white);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath d='M0,0 L1440,0 L1440,20 C960,120 480,120 0,20 Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath d='M0,0 L1440,0 L1440,20 C960,120 480,120 0,20 Z'/%3E%3C/svg%3E");
    -webkit-mask-size: cover; mask-size: cover;
    -webkit-mask-position: center top; mask-position: center top;
    filter: drop-shadow(0px 10px 10px rgba(0,0,0,0.15));
    z-index: 2;
}

.wave-bottom-white {
    position: absolute; bottom: -1px; left: 0; width: 100%; height: 100px;
    background-color: var(--color-light-blue);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath d='M0,100 L1440,100 L1440,80 C960,-20 480,-20 0,80 Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath d='M0,100 L1440,100 L1440,80 C960,-20 480,-20 0,80 Z'/%3E%3C/svg%3E");
    -webkit-mask-size: cover; mask-size: cover;
    -webkit-mask-position: center bottom; mask-position: center bottom;
    z-index: 2;
}

.logos-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px 30px; align-items: center; justify-items: center;
    max-width: 1000px; margin: 0 auto;
}

.logos-grid img {
    max-width: 130px; max-height: 60px; object-fit: contain;
    opacity: 0.7; transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}
.logos-grid img:hover { opacity: 1; transform: scale(1.05); }

/* --- 11. GALERIE --- */
.gallery-section {
   background-color: var(--color-white); text-align: center;
}

.gallery-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 30px; margin-top: 60px;
}

.gallery-item {
    position: relative; overflow: hidden;
    border-radius: var(--shape-jumpstart);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.1);
    transition: transform 0.4s ease, border-radius 0.4s ease;
    cursor: pointer;
}

.gallery-item:nth-child(even) { border-radius: var(--shape-jumpstart-reverse); }

.gallery-item img {
    width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3;
    transition: transform 0.6s ease; display: block;
}

.gallery-item:hover { transform: translateY(-5px); border-radius: 20px; }
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item.large-col { grid-column: span 2; }

@media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.large-col { grid-column: span 1; }
}

@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

/* --- 12. BLOG SECTION --- */
.blog-section {
    padding: 100px 0;
    background-color: var(--color-light-blue);
}

.section-header-flex {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 60px; flex-wrap: wrap; gap: 20px;
}
.section-header-flex h2 {
    color: var(--color-primary-blue); margin: 0;
}

.blog-card {
    background-color: var(--color-white);
    border-radius: var(--shape-jumpstart);
    overflow: hidden; box-shadow: 0 10px 30px rgba(30, 58, 138, 0.08);
    transition: transform 0.3s ease;
    height: 100%; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-10px); }

.blog-img-wrapper {
    position: relative; width: 100%; height: 250px;
}
.blog-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.blog-category {
    position: absolute; top: 20px; right: 20px;
    background-color: var(--color-white); color: var(--color-primary-blue);
    padding: 5px 15px; border-radius: 4px;
    font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

.blog-icon-overlay {
    position: absolute; bottom: 0; left: 50%;
    transform: translate(-50%, 50%);
    width: 70px; height: 70px;
    background-color: var(--color-accent-blue);
    border: 4px solid var(--color-white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--color-white); font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 2;
}

.blog-content {
    padding: 50px 30px 40px; text-align: center;
    flex-grow: 1; display: flex; flex-direction: column; justify-content: center;
}

.blog-title {
    font-size: 1.2rem; color: var(--color-primary-blue);
    font-weight: 700; text-transform: uppercase;
    line-height: 1.4; margin: 0;
}
.blog-title a { color: var(--color-primary-blue); }
.blog-title a:hover { color: var(--color-gold); }

.blog-separator {
    width: 40px; height: 3px;
    background-color: var(--color-text-dark); margin: 20px auto 0;
}

@media (max-width: 768px) {
    .section-header-flex { flex-direction: column; text-align: center; }
}

/* --- 14. STYLE PAGES INTERNES & FAQ --- */
.page-header {
    text-align: center;
    padding: 80px 0 90px;
    max-width: 900px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--color-primary-blue);
    margin-bottom: 20px;
}

.lead {
    font-size: 1.2rem;
    color: var(--color-text-dark);
    opacity: 0.9;
}

/* Style de la méthodologie (Liste à puces) */
.methodology-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.methodology-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.methodology-list li::before {
    content: '\f00c'; /* Code FontAwesome pour "Check" */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-gold);
    font-size: 1.2rem;
}

/* Style FAQ (Accordéon) */
details {
    background-color: var(--color-white);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(30, 58, 138, 0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

details[open] {
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    border-color: var(--color-gold);
}

summary {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-primary-blue);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker {
    display: none; /* Cache la flèche par défaut moche */
}

/* Petite flèche personnalisée */
summary::after {
    content: '\f078'; /* Chevron Down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: transform 0.3s ease;
    color: var(--color-gold);
}

details[open] summary::after {
    transform: rotate(180deg);
}

details p {
    margin-top: 15px;
    color: var(--color-text-dark);
    line-height: 1.6;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* --- LISTES DANS LES CARTES SERVICES --- */
.service-card ul {
    list-style: none;
    padding: 0;
    margin-top: 25px;
    text-align: left; /* On aligne les puces à gauche pour la lisibilité */
    border-top: 1px solid rgba(255,255,255,0.1); /* Petit séparateur subtil */
    padding-top: 20px;
}

.service-card li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.5;
}

.service-card li i {
    color: var(--color-gold);
    margin-top: 5px; /* Aligné optiquement avec le texte */
    font-size: 0.9rem;
}

/* --- 15. SECTION SEO LOCAL (VILLES) --- */
.seo-locations-section {
    padding: 80px 0;
    background-color: var(--color-white);
    border-top: 1px solid rgba(0,0,0,0.05); /* Séparation subtile */
    text-align: center;
}

.seo-locations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px; /* Espacement entre les villes */
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.city-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: var(--color-light-blue); /* Fond bleu très clair */
    color: var(--color-primary-blue);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.city-pill i {
    color: var(--color-accent-blue); /* Icône turquoise */
    transition: color 0.3s ease;
}

/* Effet au survol */
.city-pill:hover {
    background-color: var(--color-primary-blue);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.2);
}

.city-pill:hover i {
    color: var(--color-gold); /* L'icône devient or */
}