/***********************
IMPORTATION DES POLICES
***********************/
@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&display=swap');



/*************************************
LOADER
*************************************/
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.75s ease-out;
    opacity: 1;
}

.loader {
    border: 8px solid var(--color-gray-light);
    border-top: 8px solid var(--color-green-primary);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}



/*************************************
VARIABLES GLOBALES
*************************************/
:root {    
    /* ==== Couleurs ==== */
    --color-green-primary: #7BC142;
    --color-green-dark: #2E7D32;
    --color-green-light: #A8D468;
    --color-green-mint: #E8F5E8;
    
    --color-white: #FFFFFF;
    --color-gray-light: #F5F5F5;
    --color-gray-medium: #757575;
    --color-gray-dark: #424242;
    
    --color-blue-medical: #1976D2;

    /* ==== Typographie ==== */
    --font-heading: 'Barlow Semi Condensed', sans-serif;
    --font-body: 'Quicksand', sans-serif;

    /* ==== Variables d'alignement du conteneur ==== */
    --container-max-width: 1200px;
    --container-padding-x: 24px;
}


/*************************************
RÉINITIALISATION ET STYLES DE BASE
*************************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

body {
    font-family: var(--font-body);
    overflow-x: hidden;
}

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


/*************************************
COMPOSANTS GÉNÉRIQUES
*************************************/
.btn {
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--color-green-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--color-green-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-green-primary);
    border: 2px solid var(--color-green-primary);
}

.btn-secondary:hover {
    background: var(--color-green-light); /* Note: Ce n'est pas une couleur de la palette */
    color: white;
    border: 1px solid var(--color-green-light);
}

.gradient-text {
    background: linear-gradient(45deg, var(--color-green-primary), black, var(--color-green-dark), black);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-animation 5s ease infinite;
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.highlight-word {
    color: var(--color-green-primary);
}


/*************************************
SECTION NAVIGATION
*************************************/
.navbar {
    background-color: rgba(255, 255, 255, 0);
    z-index: 1000;
    transition: all 0.3s ease-in;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar .container {
    width: 100%;
    max-width: var(--container-max-width);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.932);
}

.nav-brand img {
    height: 80px;
    max-height: 100%;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link:nth-child(1), .nav-link:nth-child(2), .nav-link:nth-child(3) {
    text-decoration: none;
    font-weight: 500;
    color: #2C1810;
    transition: all 0.2s ease;
    padding: 5px;
    cursor: pointer;
    font-size: 20px;
}

.nav-link:nth-child(1):hover, .nav-link:nth-child(2):hover, .nav-link:nth-child(3):hover {
    font-weight: 600;
    color: #2C1810;
    border-bottom: 2px solid #3C2415;
    padding: 5px;
}

.nav-link:nth-child(4) {
    text-decoration: none;
    padding: 7px;
    background-color: rgba(1,197,1,255);
    border-radius: 5px;
    color: white;
    transition: all 0.2s ease-in;
    cursor: pointer;
    font-size: 20px;
}

/* Hamburger */
.nav-toggle {
    display: none; /* Caché par défaut, affiché en mobile */
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-green-primary);
    margin: 4px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Animation croix */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 1px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -3px);
}

/* Menu mobile */
.mobile-menu {

    width: 100%;
    height: 100vh;
    backdrop-filter: blur(10px);
    background-color: rgb(255, 255, 255);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0; /* Caché par défaut */
    transform: scale(0.98);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: none; /* Masque initialement */
}

.mobile-menu.show {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

.mobile-link {
    font-size: 24px;
    color: #2C1810;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.mobile-link:hover {
    color: #8B4513;
}

.mobile-link.whatsapp {
    background-color: rgba(1,197,1,255);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
}


/*************************************
SECTION ACCUEIL (HERO)
*************************************/
#accueil .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
}

.hero {
    position: relative;
    overflow: hidden; /* évite que le blob déborde */
    z-index: 0;
}

.blob-flou {
    position: absolute;
    top: -500px; /* le remonte un peu sous la navbar */
    left: 50%; /* point central */
    transform: translateX(-50%); /* centrage horizontal parfait */
    width: 5000px;
    height: 1000px;
    filter: blur(40px);
    opacity: 0.7;
    z-index: 0;
}

.hero-content {
    position: relative;
    margin-top: 150px;
    margin-bottom: 100px;
    text-align: center;
    max-width: 800px;
    z-index: 1; 
}

.hero h1 {
    font-size: 80px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 22px;
    color: black;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/*************************************
SECTION STATS
*************************************/
.stats {
    margin-top: -80px;
    padding: 80px 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 70px;
    font-weight: 900;
    color: var(--color-green-primary);
    line-height: 1;
}

.stat-label {
    font-size: 25px;
    color: var(--color-gray-dark);
    margin-top: 5px;
}


/*************************************
SECTION CONFIANCE
*************************************/
.confiance-section {
    padding: 80px 0;
    display: flex;
    justify-content: center;
    margin-top: -50px;

}

.confiance-container {
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
    text-align: center;
}

.confiance-title {
    color: var(--color-green-primary);
    font-family: var(--font-heading);
    font-size: 2.7rem; /* Unifié à 2.7rem */
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.confiance-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.confiance-logo {
    max-height: 120px;
    max-width: auto;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0.1) contrast(1.1);
    transition: filter 0.2s;
}

.confiance-logo:hover {
    filter: grayscale(0) contrast(1.2) drop-shadow(0 2px 8px rgba(0,0,0,0.08));
}

.confiance-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 100px;
}

.confiance-logo-label {
    margin-top: 10px;
    font-size: 1.05rem;
    color: #222;
    font-family: var(--font-heading);
    font-weight: 200;
    text-align: center;
    font-style: italic;
}


/*************************************
SECTION FEATURES
*************************************/
.features-section {
    background: transparent;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -80px;
}

.features-container {
    background: #fff;
    border-radius: 28px;
    padding: 60px var(--container-padding-x) 40px var(--container-padding-x);
    max-width: var(--container-max-width);
    width: 100%;
}

.features-header {
    margin-bottom: 40px;
}

.features-badge {
    color: #1976D2;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.features-title {
    font-family: var(--font-heading);
    font-size: 2.7rem; /* Déjà à 2.7rem */
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.1;
}

.features-desc {
    color: #444;
    font-size: 1.1rem;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    text-align: left;
}

.feature-item {
    background: transparent;
    border-radius: 18px;
    padding: 20px 10px 10px 10px;
    text-align: left;
    flex: 1 1 250px;
    min-width: 220px;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-green-primary);
    margin-bottom: 18px;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-text {
    color: #444;
    font-size: 1rem;
    line-height: 1.5;
}


/*************************************
SECTION VALEURS
*************************************/
.valeurs-section {
    background: #fff;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    margin-top: -80px;
}

.valeurs-container {
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
}

.valeurs-badge {
    display: inline-block;
    background: var(--color-green-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 8px;
    padding: 8px 24px;
    margin-bottom: 18px;
}

.valeurs-title {
    font-family: var(--font-heading);
    font-size: 2.7rem; /* Unifié à 2.7rem */
    font-weight: 800;
    color: var(--color-green-primary);
    margin-bottom: 48px;
    border-bottom: 3px solid var(--color-green-light);
    padding-bottom: 10px;
}

.valeurs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
}

.valeur-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.valeur-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-green-primary);
    font-family: var(--font-heading);
    min-width: 60px;
    text-align: left;
    border-right: 3px solid var(--color-green-primary);
}

.valeur-content {
    flex: 1;
}

.valeur-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.valeur-desc {
    color: #444;
    font-size: 1.08rem;
    font-family: var(--font-body);
    line-height: 1.6;
}


/*************************************
SECTION DASHBOARD TRUST
*************************************/
.dashboard-trust-section {
    background: #fafbfa;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-height: 520px;
}

.dashboard-trust-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: var(--container-max-width);
    min-height: 520px;
    padding: 0 var(--container-padding-x);
}

.dashboard-trust-vertical {
    background: var(--color-green-primary);
    width: 70px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dashboard-trust-vertical-text {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 2px;
    text-align: center;
    white-space: nowrap;
}

.dashboard-trust-left {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0;
}

.profile-img-container {
    width: 400px;
    max-width: 90vw;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: grayscale(0.8);
    border-radius: 0;
}

.dashboard-trust-right {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
    padding: 0 40px;
}

.dashboard-text-content {
    max-width: 600px;
    text-align: left;
}

.dashboard-text-content .section-title {
    color: var(--color-green-primary);
    font-size: 2.7rem; /* Unifié à 2.7rem */
    font-weight: 800;
    margin-bottom: 18px;
    text-align: left;
}

.dashboard-text-content p, .dashboard-text-content ul {
    color: #222;
    font-size: 1.1rem;
    margin-bottom: 18px;
    text-align: left;
}

.dashboard-text-content ul {
    padding-left: 20px;
}

.dashboard-trust-footer {
    display: none;
}


/*************************************
SECTION SLOGAN
*************************************/
.slogan {
    min-height: 50vh;
    padding-top: 50px;
    margin-bottom: 0px;
}

.slogan .slogan-title {
    font-size: 2.7rem; /* Unifié à 2.7rem */
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.slogan .slogan-subtitle {
    font-size: 2rem;
    color: var(--color-gray);
    margin-top: 20px;
    font-weight: 400;
}


/*************************************
SECTION PRODUITS
*************************************/
.categorie-produit {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    margin-top: 40px;
}

.categorie-produit .pricing-section {
    width: 100%;
    max-width: var(--container-max-width);
}

.categorie-produit .section-title {
    font-size: 2.7rem; /* Unifié à 2.7rem */
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    border-bottom: 3px solid var(--color-green-primary);
    padding-bottom: 15px;
}

.categorie-produit .pricing-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.categorie-produit .pricing-card {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}



.categorie-produit .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #7bc142b9;
    opacity: 0.7;
    /* backdrop-filter: blur(1px); */
    transition: opacity 0.3s ease;
}

.categorie-produit .pricing-card:hover::before {
    opacity: 0.8;
}

.categorie-produit .pricing-card:hover {
    box-shadow: 0 20px 40px -10px var(--color-green-light);
}

.categorie-produit .pricing-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.categorie-produit .plan-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.categorie-produit .plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.categorie-produit .cta-button {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-green-primary);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    margin-top: auto;
}

.categorie-produit .cta-button:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.categorie-produit .catalog-button {
    background: var(--color-green-primary);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--color-green-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.categorie-produit .catalog-button:hover {
    background: var(--color-green-primary);
    transform: translateY(-2px);
}




.produit-1 {
    background-image: url('../images/produits/produit-1.jpg');
    background-attachment: fixed;
    background-size : cover;
    background-position: center;
    object-fit : cover
}

.produit-2 {
    background-image: url('../images/produits/produit-2.jpg');
    background-attachment: fixed;
    background-size : cover;
    background-position: center;
    object-fit : cover
}

.produit-3 {
    background-image: url('../images/produits/produit-3.jpg');
}

.produit-4 {
    background-image: url('../images/produits/produit-4.jpg');
    background-attachment: fixed;
    background-size : cover;
    background-position: center;
    object-fit : cover
}

.produit-5 {
    background-image: url('../images/produits/produit-5.jpg');
    background-attachment: fixed;
    background-size : cover;
    background-position: center;
    object-fit : cover
}

.produit-6 {
    background-image: url('../images/produits/produit-6.jpg');
    background-attachment: fixed;
    background-size : cover;
    background-position: center;
    object-fit : cover
}

.produit-7 {
    background-image: url('../images/produits/produit-7.jpg');
    background-attachment: fixed;
    background-size : cover;
    background-position: center;
    object-fit : cover
}

.produit-8 {
    background-image: url('../images/produits/produit-8.jpg');
    background-attachment: fixed;
    background-size : cover;
    background-position: center;
    object-fit : cover
}

.produit-9 {
    background-image: url('../images/produits/produit-9.jpg');
    background-attachment: fixed;
    background-size : cover;
    background-position: center;
    object-fit : cover
}


/*************************************
SECTION SERVICES
*************************************/
.services-section {
    padding: 80px 0;
    background-color: var(--color-gray-light);
}

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

.services-header {
    text-align: left; /* Changement de l'alignement du texte à gauche */
    margin-bottom: 60px; /* Augmenter la marge pour plus d'espace */
}

.services-title {
    font-family: var(--font-heading);
    font-size: 3.2rem; /* Taille de police plus grande */
    font-weight: 800; /* Plus gras */
    margin-bottom: 25px; /* Augmenter la marge pour le titre */
    line-height: 1.1;
    color: var(--color-green-primary); /* Rétablissement de la couleur à --color-green-primary */
    position: relative;
}

.services-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--color-green-primary);
    margin: 15px 0 0 0; /* Alignement du soulignement à gauche */
    border-radius: 2px;
}

.services-desc {
    color: var(--color-gray-dark);
    font-size: 1.2rem;
    line-height: 1.6;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centrer les éléments */
    gap: 40px; /* Augmenter l'espace entre les éléments */
    margin-bottom: 70px; /* Plus d'espace avant la vidéo */
}

.service-item {
    background: var(--color-white);
    border-radius: 20px;
    padding: 35px;
    flex: 1 1 calc(50% - 20px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
    border: 2px solid transparent;
    max-width: 500px;
    text-align: center;
    position: relative; /* Nécessaire pour positionner l'overlay */
    overflow: hidden; /* Cache les débordements */
    background-size: cover;
    background-position: center;
    color: white; /* Texte en blanc pour contraster avec l'overlay */
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.6); /* Voile blanc semi-transparent */
    z-index: 1;
    transition: background-color 0.3s ease;
}

.service-item:hover::before {
    background-color: rgba(255, 255, 255, 0.75); /* Plus opaque au survol */
}

/* Images de fond spécifiques pour chaque service */
.service-item-1 {
    background-image: url("../images/desinfection\ \(1\).jpg"); /* Remplacez par votre image */
}

.service-item-2 {
    background-image: url('../images/nettoyage-locaux.jpg'); /* Remplacez par votre image */
}

.service-item-3 {
    background-image: url('../images/nettoyage-domicile.jpg'); /* Remplacez par votre image */
}

.service-item-4 {
    background-image: url('../images/nettoyage-chantier.jpg'); /* Remplacez par votre image */
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--color-green-primary);
}

.service-title,
.service-text {
    position: relative; /* Pour s'assurer que le texte est au-dessus de l'overlay */
    z-index: 2; /* Plus élevé que l'overlay */
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-green-primary); /* Changement de couleur demandé */
    position: relative;
    padding-bottom: 10px;
}

.service-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--color-green-dark); /* Assurez-vous que le soulignement est également visible */
    margin: 10px auto 0 auto;
    border-radius: 1.5px;
}

.service-text {
    color: var(--color-gray-dark); /* Changement de couleur pour contraster avec le voile blanc */
    font-size: 1.05rem;
    line-height: 1.7;
}

.video-container {
    position: relative;
    width: 90%; /* Occupe 90% de la largeur */
    max-width: 1000px; /* Limite la largeur maximale de la vidéo */
    margin: 0 auto; /* Centrer la vidéo */
    padding-bottom: 50.625%; /* Ratio 16:9 pour 90% de largeur */
    height: 0;
    overflow: hidden;
    border-radius: 25px; /* Rayon de bordure plus grand */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); /* Ombre plus forte */
    background-color: black; /* Fond noir pour la vidéo */
}

.services-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Media Queries pour la section SERVICES */
@media (max-width: 1100px) {
    .service-item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 900px) {
    .services-title {
        font-size: 2.7rem;
    }
    .services-desc {
        font-size: 1.1rem;
    }
    .service-item {
        flex: 1 1 100%; /* Une colonne sur les petits écrans */
        max-width: 600px; /* Permettre aux items d'être plus larges en mode colonne */
    }
    .video-container {
        width: 100%; /* La vidéo prend toute la largeur sur les petits écrans */
        padding-bottom: 56.25%; /* Revenir au ratio 16:9 standard */
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    .services-header {
        margin-bottom: 40px;
    }
    .services-title {
        font-size: 2.2rem;
    }
    .service-title {
        font-size: 1.6rem;
    }
    .service-item {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 0;
    }
    .services-title {
        font-size: 1.8rem;
    }
    .services-desc {
        font-size: 1rem;
    }
    .service-title {
        font-size: 1.4rem;
    }
    .service-item {
        padding: 20px;
    }
    .services-list {
        gap: 25px;
    }
}

/*************************************
SECTION FAQ
*************************************/
.faq-section {
    padding: 50px 0; /* Réduction du padding-top */
}


.faq-section .faq-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-section .faq-title {
    color: var(--color-green-primary);
    font-size: 2.7rem; /* Unifié à 2.7rem */
    font-weight: 900;
    text-align: left; /* Alignement à gauche */
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 15px;
}

.faq-section .faq-subtitle {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-section .faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-section .faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-green-primary);
    transition: all 0.3s ease;
}

.faq-section .faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.faq-section .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 600;
    color: #2d3748;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.faq-section .faq-question:hover {
    color: var(--color-green-primary);
}

.faq-section .faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--color-green-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-section .faq-item.active .faq-icon {
    transform: rotate(45deg);
    background-color: var(--color-green-primary);
}

.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--color-green-primary);
}

.faq-section .faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-section .faq-answer-content {
    color: #4a5568;
    line-height: 1.6;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    padding-top: 1rem;
}




/*************************************
FOOTER
*************************************/
.footer {
    background: #0a0a0a;
    color: #ffffff;
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}

.footer h5 {
    color: var(--color-green-primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--color-green-primary);
}

.contact-info {
    color: #cccccc;
    line-height: 1.6;
}

.contact-info strong {
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #cccccc;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--color-green-primary);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #999;
}


/*************************************
MEDIA QUERIES
*************************************/

/* Largeur max 1100px (Ex: grands iPads en paysage) */
@media (max-width: 1100px) {
    .dashboard-trust-left {
        padding: 0 16px;
    }
    
    .dashboard-text-content {
        max-width: 100%;
    }
    .dashboard-trust-right {
        padding: 0 16px;
    }
}

/* Largeur max 900px (Ex: iPads en portrait, petits ordinateurs portables) */
@media (max-width: 900px) {
    .features-container {
        padding: 40px var(--container-padding-x);
    }
    .features-list {
        flex-direction: column;
        gap: 15px;
    }
    .feature-item {
        min-width: 0;
    }

    .dashboard-trust-container {
        flex-direction: column;
        min-height: 0;
        padding: 0 var(--container-padding-x);
    }
    .dashboard-trust-vertical {
        width: 100%;
        min-width: 0;
        height: 60px;
        flex-direction: row;
    }
    .dashboard-trust-vertical-text {
        writing-mode: horizontal-tb;
        font-size: 1.2rem;
        padding: 10px 0;
    }
    .dashboard-trust-left, .dashboard-trust-right {
        justify-content: center;
        padding: 0;
    }
    
    .dashboard-trust-right {
        padding: 0 12px;
    }
    .dashboard-text-content .section-title {
        font-size: 2.3rem; /* Ajusté pour 900px */
    }

    .valeurs-section {
        padding: 50px 0 30px 0;
    }
    .valeurs-title {
        font-size: 2.3rem; /* Ajusté pour 900px */
    }
    .valeurs-grid {
        grid-template-columns: 1fr;
        gap: 32px 0;
    }
    .valeur-num {
        font-size: 2.1rem;
        min-width: 44px;
    }
}

/* Largeur max 768px (Ex: tablettes en portrait) */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 50px;
    }
    .hero-subtitle {
        font-size: 18px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        margin-bottom: 25px;
    }

    .slogan {
        padding: 60px 0;
    }
    .slogan .slogan-title {
        font-size: 2.0rem; /* Ajusté pour 768px */
    }
    .slogan .slogan-subtitle {
        font-size: 1.5rem;
    }

    .categorie-produit .pricing-container {  
        grid-template-columns: 1fr;     
    }          
    .categorie-produit .pricing-card {         
        border-right: none;         
        border-bottom: 1px solid rgba(255, 255, 255, 1);     
    }          
    .categorie-produit .pricing-card:last-child {         
        border-bottom: none;     
    }          
    .categorie-produit .section-title {         
        font-size: 2.0rem; /* Ajusté pour 768px */
    }          
    .categorie-produit .plan-price {         
        font-size: 2.5rem;     
    }

    .faq-section {
        padding: 60px 0;
    }
    .faq-section .faq-title{
        font-size: 2.0rem; /* Ajusté pour 768px */
    }
    .faq-section .faq-subtitle {
        font-size: 2rem;
    }
    .faq-section .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    .faq-section .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }

    .features-section {
        padding: 60px 0;
    }
    .dashboard-trust-section {
        padding: 60px 0;
        min-height: auto;
    }
    .valeurs-section {
        padding: 60px 0;
    }
    .confiance-section {
        padding: 60px 0;
    }
}

/* Largeur max 700px (Spécifique à la section confiance) */
@media (max-width: 700px) {
    .confiance-logos {
        gap: 18px;
    }
    .confiance-logo {
        max-height: 70px;
        max-width: auto;
    }
    .confiance-title {
        font-size: 2.0rem; /* Ajusté pour 700px */
    }
}

/* Largeur max 600px (Ex: petits tablettes, grands smartphones) */
@media (max-width: 600px) {
    .dashboard-trust-section {
        min-height: 0;
    }
    .dashboard-trust-container {
        padding: 0 var(--container-padding-x);
    }
    .dashboard-trust-right {
        padding: 0 4px;
    }
    .dashboard-text-content .section-title {
        font-size: 1.8rem; /* Ajusté pour 600px */
    }
    .profile-img-container {
        width: 90vw;
        max-width: 400px;
        height: auto;
        margin: 0 auto 12px auto;
    }
    .dashboard-trust-vertical {
        height: 48px;
    }
    .dashboard-trust-vertical-text {
        font-size: 1rem;
        padding: 8px 0;
    }

    .valeurs-section {
        padding: 30px 0 18px 0;
    }
    .valeurs-title {
        font-size: 1.8rem; /* Ajusté pour 600px */
    }
    .valeurs-badge {
        font-size: 0.95rem;
        padding: 6px 14px;
    }
    .valeur-label {
        font-size: 1.05rem;
    }
    .valeur-desc {
        font-size: 0.98rem;
    }
}

/* Largeur max 480px (Ex: smartphones) */
@media (max-width: 480px) {
    .navbar .container {
        margin-top: -10px;
    }

    .hero {
        padding: 80px 0 40px;
    }
    .hero-content {
        margin-top: -10px;
    }
    .hero h1 {
        font-size: 50px;
    }
    .blob-flou {
        top: -400px;
    }

    .stats {
        margin-top: -150px;
    }
    .stat-number {
        font-size: 36px;
    }
    
    .slogan .slogan-title {
        font-size: 1.5rem; /* Ajusté pour 480px */
    }
    .slogan .slogan-subtitle {
        font-size: 1rem;
    }

    .categorie-produit .pricing-card {
        min-height: 300px;
        padding: 1.5rem;
    }
    .categorie-produit .section-title {
        font-size: 1.5rem; /* Ajusté pour 480px */
    }
    .categorie-produit .plan-price {
        font-size: 2rem;
    }

    .faq-section {
        padding: 40px 0;
    }
    .faq-section .faq-title {
        font-size: 1.5rem; /* Ajusté pour 480px */
    }
    .faq-section .faq-subtitle {
        font-size: 1.5rem;
    }
    .faq-section .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    .faq-section .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem 1.25rem;
    }

    .features-section {
        padding: 40px 0;
    }
    .dashboard-trust-section {
        padding: 40px 0;
    }
    .valeurs-section {
        padding: 40px 0;
    }
    .confiance-section {
        padding: 40px 0;
    }
}

