/* ====================================
   FUSION DES VARIABLES CSS
   ==================================== */
:root {
    /* Variables de base/générales */
    --base-dark: #000000;
    --base-light-gray: #000000;
    --accent-red: #1c3c6f; /* Rouge du logo/CTA/Slider */
    --base-white: #fff;
    --text-color: #000000;

    /* Variables pour les Services */
    --main-dark-blue: #1c3c6f; /* Bleu foncé de l'en-tête (services) */
    --card-title-blue: #1c3c6f;
    --card-bg-white: white;
    --card-container-bg: #f8f8f8;
    --service-accent-red: #d9534f; /* Rouge des liens "En savoir plus" */
    --border-color: #e0e0e0;

    /* Variables pour Contact/Footer */
    --contact-dark-blue: #1c2759; /* Bleu marine foncé (contact/footer) */
    --light-gray: #ccc;
    --contact-white: #ffffff;
    --line-color: rgba(255, 255, 255, 0.2);

    /* Variables pour Témoignages (tem) */
    --tem-bg-light: #f8f9fa;
    --tem-blue: #0d47a1;
    --tem-red: #0d47a1; /* Rouge/Corail (bouton essai gratuit) */
    --tem-rectangle-gray: #e9ecef;

    /* Couleurs des boutons d'en-tête */
    --button-bg-light: #f5f5f5; /* Fond léger des boutons */
    --button-border: #e0e0e0;
    --icon-purple: #8e44ad;
    --icon-orange: #f39c12;
    --icon-blue: #3498db;
}

/* ====================================
   FUSION DES STYLES DE BASE
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--base-white);
    color: var(--text-color);
}

/* --- NOUVEAUX STYLES: Barre Supérieure --- */
.top-bar {
    background-color: var(--contact-dark-blue);
    color: var(--contact-white);
    padding: 8px 50px;
    font-size: 13px;
    display: flex;
    justify-content: flex-end; /* Aligner le contenu à droite */
    flex-wrap: wrap; /* Permet aux éléments de passer à la ligne */
}

.top-bar-content {
    /* Contient tous les éléments d'information */
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* Permet aux éléments de passer à la ligne */
}

.top-bar .info-item {
    margin-left: 30px; /* Espacement entre les informations */
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.top-bar .info-item i {
    color: var(--contact-white); /* Couleur blanche pour l'icône */
    margin-right: 8px;
    font-size: 14px;
}

/* --- 1. Header et Navigation (index.html) --- */

.header {
    /* AJOUTÉ: flex-wrap pour permettre le retour à la ligne sur mobile */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    color: var(--base-dark);
    background-color: var(--base-white);
    position: relative;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    flex-wrap: wrap; /* AJOUTÉ: Essentiel pour la réactivité */
}

/* Modification pour aligner nav et buttons */
.header > .nav {
    /* MODIFIÉ pour mieux gérer le débordement sur les écrans intermédiaires */
    flex-grow: 1; 
    margin-right: 20px; 
    /* AJOUTÉ: Permet à la navigation d'être flexible */
    display: flex; 
    justify-content: flex-end; 
}
.header > .nav ul {
    justify-content: flex-end;
}

.logo { 
    font-size: 24px; 
    font-weight: bold; 
    color: var(--base-dark); 
    margin-right: 30px; 
}
.logo span { color: var(--accent-red); }
.nav ul { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
    display: flex; 
    flex-wrap: wrap; /* AJOUTÉ: Permet au menu de passer à la ligne */
}
.nav li { margin-left: 30px; position: relative; }
.nav a {
    text-decoration: none;
    color: var(--base-dark);
    font-size: 14px;
    padding-bottom: 5px;
    transition: color 0.3s, border-bottom 0.3s;
    display: block;
}
.nav a:hover, .nav a.active {
    color: var(--accent-red);
    border-bottom: 2px solid var(--accent-red);
}

/* Styles pour le menu déroulant */

.dropdown-parent {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 70px;
    background-color: var(--base-white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-top: 2px solid var(--accent-red);
    z-index: 20;
    padding: 10px 0;
}

.dropdown-parent:hover .dropdown {
    display: block;
}

.dropdown ul {
    display: block;
    padding: 0;
    margin: 0;
}

.dropdown ul li {
    margin: 0;
}

.dropdown ul li a {
    color: var(--base-dark);
    padding: 8px 15px;
    display: block;
    font-size: 14px;
    border-bottom: none;
    white-space: nowrap;
}

.dropdown ul li a:hover {
    background-color: #f5f5f5;
    color: var(--accent-red);
    border-bottom: none;
}


.header-buttons {
    display: flex;
    align-items: center;
    /* AJOUTÉ: Permet aux boutons de s'enrouler */
    flex-wrap: wrap;
    gap: 5px; /* Petit espace entre les boutons */
}

.header-button {
    text-decoration: none;
    color: var(--base-dark);
    font-size: 14px;
    font-weight: normal;
    padding: 8px 15px;
    margin-left: 10px;
    background-color: var(--button-bg-light);
    border: 1px solid var(--button-border);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.2s, box-shadow 0.2s;
}
/* AJOUTÉ: Réinitialiser margin-left sur le premier bouton pour un meilleur flex-wrap */
.header-buttons .header-button:first-child {
    margin-left: 0;
}


.header-button:hover {
    background-color: #e9e9e9;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.header-button i {
    margin-right: 8px;
    font-size: 16px;
}


.create-account i { color: var(--icon-purple); }
.client-area i { color: var(--icon-orange); }
.languages i { color: var(--icon-blue); }

/* AJOUTÉ: Styles pour l'icône du menu Hamburger */
.hamburger-menu {
    display: none; /* Cacher par défaut sur grand écran */
    background: none;
    border: none;
    font-size: 1.8em;
    cursor: pointer;
    color: var(--base-dark); /* Couleur de l'icône */
    padding: 5px 10px;
}
/* FIN AJOUT */

.hero-slider {
    position: relative;
    height: 450px;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto -65px auto;
}
.slider-container { position: relative; width: 100%; height: 100%; }
.slide {
    position: absolute; top: 0; left: 0; height: 100%;
    width: calc(100% - 150px);
    background-size: cover; background-position: center 20%; background-repeat: no-repeat;
    opacity: 0; transition: opacity 0.8s ease-in-out;
}
.slide.active-slide { opacity: 1; }
.hero-content {
    position: absolute; bottom: 50px; right: 50px;
    width: 400px; height: 400px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px; display: flex; flex-direction: column; justify-content: flex-start;
}
.hero-content h1 { font-size: 38px; font-weight: 700; color: var(--base-dark); line-height: 1.1; margin: 0 0 10px 0; }
.divider { width: 50px; height: 2px; background-color: var(--accent-red); margin-bottom: 20px; }
.hero-content p { font-size: 14px; color: var(--base-light-gray); line-height: 1.6; }
.button-container { display: flex; justify-content: flex-end; margin-top: 25px; }
.cta-button {
    display: flex; align-items: center; padding: 12px 20px;
    background-color: var(--accent-red); color: white; text-decoration: none;
    font-weight: bold; font-size: 14px; border-radius: 4px; transition: background-color 0.3s;
}
.cta-button:hover { background-color: #a30000; }

/* Navigation du Slider (Points) */
.slider-dots {
    position: absolute;
    bottom: 10px;
    left: calc((100% - 150px) / 2);
    transform: translateX(-50%);
    z-index: 15;
    text-align: center;
}
.slider-dots .dot {
    cursor: pointer; height: 10px; width: 10px; margin: 0 5px;
    background-color: #bbb; border-radius: 50%; display: inline-block;
    transition: background-color 0.6s ease;
}
.slider-dots .dot.active-dot, .slider-dots .dot:hover { background-color: var(--accent-red); }


/* ====================================
   3. Section Services (service/service.html)
   ==================================== */
.services-section { padding-bottom: 0; } /* MODIFIÉ : Réduit l'espace du bas */
.services-header {
    background-color: var(--main-dark-blue);
    color: white;
    padding: 60px 20px 100px 20px;
    text-align: center;
}
.services-header h1 { font-size: 2.5em; margin-top: 0; margin-bottom: 8px; font-weight: normal;  color: #fff;}
.services-header p { max-width: 600px; margin: 0 auto; font-size: 1em; }
.services-grid-container {
    max-width: 1000px; margin: 0 auto; padding: 0 20px;
    transform: translateY(-80px);
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
    background-color: var(--card-bg-white); padding: 20px;
    border: 1px solid var(--border-color); box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.service-card h2 { font-size: 1.2em; color: var(--card-title-blue); margin-top: 0; margin-bottom: 15px; font-weight: bold; }
.service-card p { font-size: 0.85em; line-height: 1.5; min-height: 110px; }
.service-card a {
    color: var(--service-accent-red); text-decoration: none; font-weight: bold;
    display: inline-block; margin-top: 10px; font-size: 0.9em;
}

/* ====================================
   4. Section Témoignages (tem/tem.html)
   ==================================== */
.content-wrapper { max-width: 1000px; margin: 0 auto; padding: 40px 20px; text-align: center; }
.temoignages-section { background-color: var(--tem-bg-light); padding-bottom: 0; }
.temoignages-section h2 { font-size: 1.5rem; color: var(--base-dark); margin-bottom: 30px; font-weight: normal; }
.temoignage-quote { font-size: 1.8rem; font-style: normal; font-weight: 300; color: #444; margin: 40px auto 30px; max-width: 700px; line-height: 1.4; padding: 0; border: none; }
.temoignage-auteur { color: var(--tem-red); margin-bottom: 5px; font-weight: bold; }
.temoignage-titre { color: #6c757d; font-size: 0.9rem; margin-top: 0; margin-bottom: 30px; }
.carousel-dots { text-align: center; margin-bottom: 30px; }
.carousel-dots .dot { /* Évite le conflit avec .slider-dots .dot */
    height: 8px; width: 8px; background-color: #bbb; border-radius: 50%; display: inline-block; margin: 0 4px; opacity: 0.7;
}
.carousel-dots .dot.active { background-color: #666; opacity: 1; }
.separator-bar {
    height: 10px; background-color: var(--tem-blue);
    background-image: linear-gradient(to right, var(--tem-blue), var(--tem-red));
    border-top: 2px solid var(--tem-red); width: 100%;
}

/* --- Section En Savoir Plus (Rectangle) --- */
.en-savoir-plus-section {
    background-color: var(--tem-bg-light);
    padding: 3px 0; /* MODIFIÉ : Réduit le padding supérieur */
    position: relative;
}
.inner-rectangle {
    background-color: var(--tem-rectangle-gray); max-width: 1500px; margin: 0 auto;
    padding-bottom: 10px; position: relative;
}
.en-savoir-plus-section .content-wrapper {
    /* Utilise Flexbox pour aligner le texte et l'image côte à côte */
    display: flex;
    align-items: center; /* Centre verticalement les éléments */
    justify-content: space-between; /* Espace les colonnes */
    max-width: 1200px; /* Limite la largeur du contenu pour une meilleure lisibilité */
    margin: 0 auto; /* Centre le conteneur principal */
    padding: 20px;
}
.text-container h3 { font-size: 2rem; color: var(--tem-blue); margin-bottom: 10px; font-weight: 400; }
.underline { width: 150px; height: 2px; background-color: var(--tem-blue); margin-bottom: 20px; }
.paragraph-text { max-width: 600px; font-size: 1rem; color: #555; margin-bottom: 30px; }

/* Boutons absolus */
.buttons-container-absolute {
    display: flex; position: absolute;
    bottom: 0px; right: 40px; z-index: 10;
}
.free-trial-button {
    background-color: var(--tem-red); color: white; border: none;
    padding: 10px 20px; font-size: 1rem; font-weight: bold; cursor: pointer;
    text-transform: capitalize; transition: background-color 0.3s;
    border-radius: 0 3px 3px 0; margin-left: -1px; box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.add-button {
    background-color: var(--tem-blue); color: white; height: 40px; width: 40px;
    font-size: 1.5rem; font-weight: 300; cursor: pointer; line-height: 1;
    display: flex; justify-content: center; align-items: center;
    border-radius: 3px 0 0 3px; box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
/* Style pour la section "DEMANDEZ UN DEVIS" */
.demande-devis-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.devis-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 15px;
}

.devis-text-content {
    flex: 1;
    padding-right: 40px;
}

.devis-title {
    font-size: 24px;
    font-weight: bold;
    color: #06a3da;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.devis-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.devis-divider {
    width: 80px;
    height: 3px;
    background-color: #06a3da;
    margin-bottom: 30px;
}

.info-row {
    display: flex;
    gap: 40px;
    margin-bottom: 25px;
}

.info-heading {
    font-weight: bold;
    font-size: 16px;
    color: #333;
    margin: 0;
}

.devis-paragraph {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.call-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.call-icon {
    width: 30px;
    height: 30px;
    background-color: #06a3da;
    margin-bottom: 10px;
}

.call-text {
    font-size: 14px;
    color: #333;
    margin: 0 0 5px 0;
}

.phone-number {
    font-size: 20px;
    font-weight: bold;
    color: #06a3da;
    text-decoration: none;
    transition: color 0.3s;
}

.phone-number:hover {
    color: #0d47a1;
}

/* Colonne du formulaire */
.devis-form-wrapper {
    flex: 0 0 450px; /* Largeur fixe pour le formulaire */
    background-color: #06a3da; /* Fond bleu clair */
    padding: 30px;
    border-radius: 5px;
}

.devis-form input,
.devis-form select,
.devis-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    box-sizing: border-box;
    color: #333;
}

.devis-form select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%23333"><path d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd" fill-rule="evenodd"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 15px auto;
}

.devis-form textarea {
    resize: vertical;
}

.submit-devis-button {
    width: 100%;
    background-color: #0d47a1;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 3px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

.submit-devis-button:hover {
    background-color: #0a3a7f;
}

/* Media query pour les petits écrans */
@media (max-width: 992px) {
    .devis-container {
        flex-direction: column;
        align-items: center;
    }

    .devis-text-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .devis-form-wrapper {
        width: 100%;
        flex-basis: auto;
        max-width: 550px;
    }
}
/* Ajouter ceci dans votre fichier style.css */

.en-savoir-plus-section .content-wrapper {
    /* Utilise Flexbox pour aligner le texte et l'image côte à côte */
    display: flex;
    align-items: center; /* Centre verticalement les éléments */
    justify-content: space-between; /* Espace les colonnes */
    max-width: 1200px; /* Limite la largeur du contenu pour une meilleure lisibilité */
    margin: 0 auto; /* Centre le conteneur principal */
    padding: 20px;
}

.text-and-button-container {
    /* Le conteneur pour le texte et les boutons prend environ 55% de la largeur */
    flex: 1;
    max-width: 55%;
    padding-right: 20px; /* Ajoute un espace entre le texte et l'image */
}

.image-container {
    /* Le conteneur de l'image prend environ 40% de la largeur */
    flex: 1;
    max-width: 40%;
    /* Assurez-vous que l'image ne dépasse pas son conteneur */
    display: flex;
    justify-content: center;
}

.right-aligned-image {
    /* L'image s'adaptera à la taille de son conteneur (image-container) */
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Optionnel : arrondir les coins de l'image */
}

/* Vous pourriez avoir besoin d'ajuster les styles pour les écrans plus petits */
@media (max-width: 768px) {
    .en-savoir-plus-section .content-wrapper {
        flex-direction: column; /* Empile les éléments sur les petits écrans */
    }
    .text-and-button-container, .image-container {
        max-width: 100%; /* Permet aux éléments de prendre toute la largeur */
        padding-right: 0;
        margin-bottom: 20px; /* Ajoute un espace entre les sections empilées */
    }
}
/* ====================================
   5. Section Contact (footer/footer.html)
   ==================================== */
.contact-section {
    background-color: var(--contact-dark-blue);
    padding: 80px 20px 0;
    color: var(--contact-white);
    text-align: center;
}
.contact-container { max-width: 900px; margin: 0 auto; }
.contact-container h1 { font-size: 2.5rem; font-weight: 300; margin-bottom: 50px; }
.contact-form {
    display: flex; flex-direction: column; align-items: flex-start;
    width: 100%; max-width: 620px; margin: 0 auto;
}
.form-row { display: flex; justify-content: space-between; width: 100%; margin-bottom: 5px; }
.input-group { flex: 1; margin: 0 10px; position: relative; text-align: left; padding-top: 0; }
.input-group:first-child { margin-left: 0; }
.input-group:last-child { margin-right: 0; }
.input-group.full-width { width: 100%; margin: 15px 0 30px 0; }
.input-label { position: absolute; top: -15px; left: 0; font-size: 0.9rem; color: var(--light-gray); font-weight: normal; }
input[type="text"], input[type="email"], textarea {
    width: 100%; background: none; border: none; border-bottom: 1px solid var(--line-color);
    color: var(--contact-white); padding: 10px 0; font-size: 1rem; box-sizing: border-box;
    resize: none; overflow: hidden;
}
.placeholder-text { position: absolute; bottom: 5px; left: 0; font-size: 0.8rem; color: var(--light-gray); pointer-events: none; }
.submit-separator { width: 100%; height: 1px; background-color: var(--line-color); margin: 0 0 50px 0; }
.submit-button {
    align-self: flex-start; background: none; color: var(--contact-white); border: none;
    border-bottom: 1px solid transparent; padding: 10px 0; font-size: 1.1rem; font-weight: 300;
    text-transform: uppercase; cursor: pointer; transition: color 0.3s; margin-bottom: 60px;
}
.submit-button:hover { color: var(--light-gray); }

/* --- Pied de page (footer/footer.html) --- */
.site-footer {
    background-color: var(--contact-dark-blue);
    padding: 20px 20px 10px;
    color: var(--light-gray);
    font-size: 0.8rem;
}
.footer-content { max-width: 900px; margin: 0 auto; text-align: center; }
.contact-info { padding-bottom: 15px; }
.contact-info span { display: inline-block; margin: 5px 15px; }
.legal-links { margin: 20px 0; }
.legal-links a { color: var(--light-gray); text-decoration: none; margin: 0 10px; font-size: 0.8rem; transition: color 0.3s; }
.legal-links a:hover { color: var(--contact-white); }
.copyright-and-scroll { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.copyright-and-scroll p { margin: 0; }
.scroll-top-arrow { background-color: var(--contact-white); color: var(--contact-dark-blue); border-radius: 50%; width: 25px; height: 25px; display: flex; justify-content: center; align-items: center; font-size: 1rem; font-weight: bold; text-decoration: none; }

/* ====================================
   FUSION DES MEDIA QUERIES (Responsive)
   ==================================== */

/* AJOUTÉ: Media Query pour les écrans <= 1200px (où les boutons disparaissent) */
@media (max-width: 1200px) {
    /* La nav prend toute la place disponible pour le menu complet */
    .header > .nav {
        flex-grow: 1; 
        justify-content: center;
        margin-right: 0;
    }
    .header-buttons {
        display: none;
    }
}

/* MODIFIÉ: Media Query pour les écrans <= 992px (Passage au menu empilé/hamburger) */
@media (max-width: 992px) {
    /* 1. Header (Menu principal) */
    .header {
        flex-direction: column; /* Empile les éléments */
        align-items: center;
        padding: 15px 20px; /* Réduire le padding sur les côtés */
    }

    .logo {
        margin: 0;
        width: 100%;
        text-align: center;
        order: 1;
    }

    /* 2. Menu Hamburger (Montré sur mobile) */
    .hamburger-menu {
        display: block; 
        position: absolute; /* Positionner le bouton */
        top: 25px;
        right: 20px;
        order: 1;
    }

    /* 3. Navigation (Cachée par défaut sur mobile) */
    .header > .nav {
        display: none; /* Cacher le menu par défaut */
        order: 2;
        width: 100%; 
        margin: 15px 0 0 0;
        padding-top: 10px;
        border-top: 1px solid var(--button-border);
    }
    
    /* Classe pour afficher le menu avec JavaScript */
    .header > .nav.active {
        display: block;
    }

    .nav ul {
        flex-direction: column; /* Empile les liens verticalement */
        align-items: center; /* Centre les liens */
    }

    .nav li {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    /* Styles pour le menu déroulant sur mobile */
    .dropdown {
        position: static; /* Le sous-menu s'affiche sous l'élément parent dans le flux normal */
        width: 100%;
        box-shadow: none;
        border-top: none;
        background-color: var(--button-bg-light); /* Fond léger pour le sous-menu */
        padding: 0;
        margin-top: 5px;
    }
    
    .dropdown ul li a {
        padding: 8px 30px; /* Ajouter un padding pour le distinguer */
        font-style: italic;
    }
    
    /* Le comportement au survol doit être géré par JS sur mobile (click) */
    .dropdown-parent:hover .dropdown {
        display: block; /* Laisser 'block' pour le JS */
    }

    /* NOUVEAU: Règle pour ouvrir le sous-menu au clic du JS (CORRECTION) */
    .dropdown-parent.open .dropdown {
        display: block; 
        padding-left: 20px;
    }
    
    /* 4. Top-Bar */
    .top-bar {
        justify-content: center;
        padding: 10px 20px;
    }

    .top-bar-content {
        flex-direction: column;
        align-items: center; /* Centrer les informations */
        gap: 0;
    }

    .top-bar .info-item {
        margin: 5px 0;
    }


    /* Services */
    .services-grid { grid-template-columns: repeat(2, 1fr); }

    /* Témoignages/En Savoir Plus */
    .temoignage-quote { font-size: 1.5rem; }
    .text-container h3 { font-size: 2rem; }
    .inner-rectangle { max-width: 95%; }
    .en-savoir-plus-section .content-wrapper { align-items: center; text-align: center; }
    .underline { margin: 0 auto 20px; }
    .buttons-container-absolute {
        position: static;
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 20px;
        right: auto;
        bottom: auto;
        width: 100%;
    }

    /* Contact/Footer */
    .form-row { flex-direction: column; align-items: center; }
    .contact-form { align-items: center; }
    .input-group,
    .input-group.full-width,
    .submit-separator {
        width: 100%;
        max-width: 300px;
        margin-left: 0;
        margin-right: 0;
    }
    .contact-info span,
    .legal-links a {
        display: block;
        margin: 8px 0;
    }
    .copyright-and-scroll { flex-direction: column-reverse; }
    .scroll-top-arrow { margin-bottom: 10px; }
}

@media (max-width: 480px) {
    /* Services */
    .services-grid { grid-template-columns: 1fr; }
    .services-grid-container { transform: translateY(-40px); }
}

/* Style pour la section "POURQUOI NOUS CHOISIR" */
.pourquoi-nous-choisir {
    padding: 80px 0;
    text-align: center;
}

.pourquoi-nous-choisir .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.pourquoi-nous-choisir .section-title {
    font-size: 28px;
    font-weight: bold;
    color: #06a3da; /* Couleur proche du bleu */
    margin-bottom: 10px;
    text-transform: uppercase;
}

.pourquoi-nous-choisir .section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.pourquoi-nous-choisir .divider.short-blue {
    width: 80px;
    height: 3px;
    background-color: #06a3da; /* Bleu des icônes */
    margin: 0 auto 50px auto;
}

.choix-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

.image-column {
    flex: 0 0 400px; /* Largeur fixe pour l'image */
    height: 300px;
    background-color: #f0f0f0; /* Couleur de fond temporaire ou remplacé par l'image */
    overflow: hidden;
    /* Remplacer l'URL ci-dessous par le chemin de votre image réelle */
    background-image: url('Capture d\'écran 2025-11-24 145330.jpg');
    background-size: cover;
    background-position: center;
}

.features-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: left;
    max-width: 350px; /* Limiter la largeur de la colonne de texte */
}

.feature-item {
    display: flex;
    align-items: flex-start;
}

.icon-square {
    width: 30px;
    height: 30px;
    background-color: #06a3da; /* Carré bleu */
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 5px;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

@media (max-width: 992px) {
    .choix-container {
        flex-direction: column;
        align-items: center;
    }

    .image-column {
        width: 100%;
        max-width: 500px;
        margin-bottom: 30px;
    }

    .features-column {
        width: 100%;
        max-width: 500px;
    }
}

/* --- Section des Membres de l'Équipe (Team Section) --- */

.team-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #f7f7f7;
}

.team-header {
    margin-bottom: 50px;
}

.team-header .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #17a2b8;
    margin-bottom: 10px;
}

.team-header .section-subtitle {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 20px;
}

.team-header .header-divider {
    width: 60px;
    height: 3px;
    background-color: #17a2b8;
    margin: 0 auto;
}

.team-members-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.member-card {
    flex: 0 0 300px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.member-photo {
    width: 100%;

    display: block;
    height: auto;

}

.member-details {
    padding: 20px 10px;
    background-color: #e6f7ff;
    border-top: 1px solid #d0eeff;
}

.member-name {
    font-size: 20px;
    font-weight: 600;
    color: #17a2b8;
    margin: 0 0 5px 0;
}

.member-title {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    text-transform: uppercase;
}


@media (max-width: 992px) {
    .team-members-container {
        flex-direction: column;
        align-items: center;
    }
    .member-card {
        flex: 0 0 80%;
        max-width: 400px;
    }
}

/* --- Styles pour la section Témoignages (Slider) --- */
.temoignages-section {
    background-color: #f7f7f7; /* Fond léger pour la section */
    padding: 80px 0;
    text-align: center;
}

.temoignages-section h1 {
    color: #030f27;
    margin-bottom: 20px;
}

/* Conteneur pour s'assurer que les témoignages se chevauchent */
.temoignage-slider-container {
    position: relative;
    overflow: hidden; /* Cache les témoignages non actifs */
    min-height: 250px; /* Hauteur minimale pour éviter le saut lors du changement */
    margin-bottom: 30px;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0; /* Par défaut, tous sont cachés */
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    padding: 0 15%; /* Marge sur les côtés pour centrer le texte */
}

.testimonial-item.active {
    opacity: 1; /* Le témoignage actif est visible */
    visibility: visible;
    position: relative; /* Reprend l'espace dans le flux */
}

.temoignage-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #495057;
    margin-bottom: 15px;
    line-height: 1.6;
}

.temoignage-auteur {
    font-size: 1.1rem;
    font-weight: bold;
    color: #030f27;
    margin-bottom: 5px;
}

.temoignage-titre {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Points de navigation */
.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #007bff; /* Couleur d'accent pour le point actif */
}


/* ====================================
   STYLES DU TABLEAU DE PRIX AJOUTÉS ICI
   ==================================== */

.pricing-table-container {
    padding: 40px 20px;
    background-color: #f4f7fa; /* Fond léger */
}
.pricing-table {
    display: flex;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.plan {
    flex: 1;
    padding: 30px 20px;
    background-color: #fff;
    border-right: 1px solid #eee;
    text-align: center;
}
.plan:nth-child(1), .plan:last-child {
    background-color: #f5fafd; /* Fond bleu très clair pour les extrémités */
}
.plan:last-child {
    border-right: none;
}
.plan-header h2 {
    font-size: 18px;
    color: #007bff;
    margin-bottom: 5px;
    font-weight: 600;
}
.plan-header p {
    font-size: 13px;
    color: #777;
    margin-top: 0;
    text-transform: uppercase;
}

/* Prix */
.price {
    font-size: 40px;
    font-weight: 300;
    color: #333;
    margin: 20px 0;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: baseline;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}
.price .currency {
    font-size: 0.6em;
    align-self: flex-start;
    font-weight: 400;
    margin-right: 2px;
}
.price .month {
    font-size: 14px;
    font-weight: 400;
    color: #777;
    margin-left: 5px;
    align-self: flex-end;
}

/* Fonctionnalités */
.features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}
.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: #333;
}
.feature-item:last-child {
    border-bottom: none;
}
/* Icônes de coche/croix */
.icon-check {
    color: #007bff; /* Bleu pour les coches */
    font-size: 18px;
    font-weight: 900;
}
.icon-cross {
    color: #aaa; /* Gris clair pour les croix */
    font-size: 18px;
    font-weight: 900;
}


.cta-button {
    display: inline-block;
    background-color: #00a0e9;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    width: 90%;
    box-sizing: border-box;
}
.cta-button:hover {
    background-color: #0088cc;
}

@media (max-width: 768px) {
    .pricing-table {
        flex-direction: column;
    }
    .plan {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    .plan:nth-child(1), .plan:last-child {
        border-radius: 0;
    }
}