/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Changement de Police: Playfair Display pour les titres, Montserrat pour le texte */
body {
    font-family: 'Montserrat', sans-serif; 
    line-height: 1.7; /* Légèrement augmenté pour une meilleure lecture */
    color: #1A1A1A; /* Noir Profond */
    background-color: #FFFFFF;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif; /* Police élégante pour les titres */
    font-weight: 700;
    color: #DC143C; /* Rouge Écarlate pour les titres principaux */
}

.container-principal {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Couleurs Clés pour le nouveau thème Noir & Rouge */
/* Noir Profond: #1A1A1A */
/* Rouge Écarlate: #DC143C (Utilisé pour l'accent) */
/* Rouge Secondaire: #A5002A (Utilisé pour le hover et le contraste) */
/* Fond Alternatif: #FFF0F3 (Très léger rose/rouge) */

/* Cookie Popup */
.cookie-pop-up {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 400px;
    max-width: calc(100vw - 40px);
    background: #1A1A1A; /* Fond Noir */
    color: #FFFFFF;
    padding: 20px;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    border-radius: 12px;
    border: 2px solid #DC143C; /* Bordure Rouge Écarlate */
}

.cookie-pop-up.show {
    transform: translateX(0);
}

.cookie-pop-up[style*="display: none"] {
    display: none !important;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.pop-up-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pop-up-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.pop-up-link {
    color: #DC143C; /* Lien Rouge */
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.pop-up-link:hover {
    color: #FF4500; /* Rouge Orange pour le survol */
}

.pop-up-accept {
    background: #DC143C; /* Bouton Rouge Écarlate */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.pop-up-accept:hover {
    background: #A5002A; /* Rouge plus foncé au survol */
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.4);
}

/* Header */
/* Обновленные стили для Header и Nav */

.main-header {
    background: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* Более выраженная тень */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 1rem 0; /* Добавляем вертикальные отступы */
}

.nav-principal {
    display: flex;
    flex-direction: column; /* Элементы идут сверху вниз */
    align-items: center; /* Центрируем всё по горизонтали */
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.brand-grandir {
    display: flex;
    align-items: center;
    justify-content: center; /* Центрируем надпись */
    width: 100%;
    margin-bottom: 0.8rem; /* Отступ между надписью и меню */
}

.logo-site {
    /* Логотип удален, этот класс больше не нужен, но стили удалены на всякий случай */
    display: none; 
}

.lien-brand {
    text-decoration: none;
    color: #DC143C;
    transition: color 0.3s ease;
}

.lien-brand:hover {
    color: #A5002A;
}

.brand-grandir h1 {
    color: #1A1A1A; /* Название бренда в черный цвет для контраста */
    font-size: 2.8rem; /* Чуть крупнее для центрального расположения */
    font-weight: bold;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.menu-nav {
    display: flex;
    list-style: none;
    gap: 1.5rem; /* Увеличенный отступ между элементами */
    margin: 0;
    padding: 0;
}

.lien-nav {
    /* Сохраняем стили для ссылок */
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #1A1A1A;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 12px;
    border-radius: 8px;
}

.lien-nav:hover {
    color: #DC143C;
    background: rgba(220, 20, 60, 0.05);
}

.menu-burger {
    display: none; /* Скрываем на десктопе */
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Адаптивность для мобильных устройств: возвращаем стандартный вид */
@media (max-width: 936px) {
    .nav-principal {
        flex-direction: row; /* На мобильных снова горизонтально */
        justify-content: space-between;
        padding: 1rem 2rem;
        flex-wrap: wrap;
    }
    
    .brand-grandir {
        margin-bottom: 0;
        width: auto;
    }
    
    .brand-grandir h1 {
        font-size: 2rem;
    }
    
    .menu-nav {
        /* Навигационное меню остается скрытым и выезжает при активации бургер-меню */
        position: fixed;
        left: -100%;
        top: 75px; /* Корректируем под новую высоту хедера */
        flex-direction: column;
        background-color: #FFFFFF;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        z-index: 998;
    }
    
    .menu-nav.active {
        left: 0;
    }
    
    .menu-burger {
        display: flex; /* Показываем бургер-меню */
        position: static;
        transform: none;
    }
}

/* Hero Section */
.section-hero {
    /* Фоновое изображение или цвет */
    background: #1A1A1A url('../images/teams/b66.jpg') no-repeat center center; 
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px; /* Учитываем высоту хедера */
    position: relative;
    text-align: left; /* Изменен на left для колоночной структуры */
}

/* Наложение для затемнения фона и сохранения контраста */
.section-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85); /* Очень темный, почти черный слой */
    z-index: 1;
}

/* Основной контейнер, который будет сеткой */
.hero-container-main {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
    
    /* Décomposition en 2 colonnes pour Desktop */
    display: grid;
    grid-template-columns: 2fr 1fr; /* 2/3 для контента, 1/3 для преимуществ */
    gap: 40px;
    align-items: center; /* Выравнивание по центру по вертикали */
}

/* Левая колонка - Основной контент */
.hero-content-colonne {
    color: #FFFFFF;
    padding-right: 20px; 
}

.hero-content-colonne h1 {
    font-size: 4.5rem; /* Более крупный заголовок */
    color: #FFFFFF; /* Заголовок на белом, чтобы выделялся на темном фоне */
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(220, 20, 60, 0.3); /* Легкая красная тень */
}

.hero-slogan {
    font-size: 1.4rem;
    color: #FFFAFA;
    margin-bottom: 2.5rem;
    max-width: 600px;
    text-align: left; /* Выравнивание по левому краю */
}

/* Правая колонка - Блок преимуществ */
.hero-avantages-colonne {
    background: rgba(220, 20, 60, 0.15); /* Прозрачный красный фон для блока */
    border: 1px solid #DC143C;
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 25px rgba(220, 20, 60, 0.2);
}

.avantages-titre-vision {
    font-size: 1.6rem;
    color: #DC143C; /* Заголовок блока красным */
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px dashed rgba(220, 20, 60, 0.5);
    padding-bottom: 15px;
}

.hero-avantages-grille {
    display: flex;
    flex-direction: column; /* Вертикальный список преимуществ */
    gap: 20px;
}

.element-vision {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.element-vision:last-child {
    border-bottom: none;
}

.element-vision:hover {
    background: rgba(220, 20, 60, 0.3);
    border-radius: 10px;
}

.icone-avantage {
    width: 32px;
    height: 32px;
    filter: invert(1) drop-shadow(0 0 5px #DC143C); /* Белый с красной тенью */
    flex-shrink: 0;
    margin-right: 15px;
}

.texte-vision {
    text-align: left;
}

.titre-avantage-hero {
    display: block;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.description-avantage-hero {
    color: #CCCCCC;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

/* Стиль кнопки действия (уже был, но можно обновить класс) */
.cta-hero {
    margin-top: 1.5rem;
}


/* Responsive Design pour la Hero Section */
@media (max-width: 936px) {
    .section-hero {
        text-align: center;
    }
    
    .hero-container-main {
        grid-template-columns: 1fr; /* Одна колонка на мобильных */
        gap: 50px;
    }
    
    .hero-content-colonne {
        padding-right: 0;
    }
    
    .hero-content-colonne h1 {
        font-size: 3rem;
        text-align: center;
    }
    
    .hero-slogan {
        text-align: center;
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-avantages-colonne {
        order: -1; /* Преимущества над заголовком на мобильных */
    }
}

/* Sections */
.section-contenu {
    padding: 80px 0;
}

/* ID de la première section après le hero pour éviter le chevauchement */
#conscience {
    margin-top: 0;
    padding-top: 100px;
    position: relative;
    z-index: 3;
}

.section-alternatif {
    background: #FAFAFA; /* Gris très clair */
}

.titre-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2.5rem;
}

.icone-titre {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.1));
}

.section-contenu h2 {
    font-size: 3rem;
    color: #1A1A1A; 
    text-align: center;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.section-contenu p {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Intro Blocks */
.introduction-section {
    margin: 3rem 0;
}

.bloc-intro,
.bloc-philosophie {
    background: rgba(220, 20, 60, 0.05); /* Fond très léger rouge */
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid #DC143C; /* Bordure Rouge Écarlate */
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.bloc-intro h3,
.bloc-philosophie h3 {
    color: #DC143C; 
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
}

.bloc-intro p,
.bloc-philosophie p {
    text-align: left;
    margin-bottom: 0;
    color: #1A1A1A;
    line-height: 1.7;
}

/* Features Grid */
.cartes-grille {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.carte-element {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(220, 20, 60, 0.1);
}

.carte-element:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.25);
    border-color: #DC143C;
}

.icone-carte {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    display: block;
}

.carte-element h3 {
    color: #1A1A1A; 
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.carte-element p {
    text-align: left;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.liste-avantages {
    list-style: none;
    padding: 0;
    text-align: left;
}

.liste-avantages li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(220, 20, 60, 0.1);
    position: relative;
    padding-left: 1.8rem;
    font-size: 1rem;
}

.liste-avantages li:before {
    content: '★';
    position: absolute;
    left: 0;
    color: #DC143C; /* Puce en Rouge Écarlate */
    font-weight: bold;
    font-size: 1.1rem;
}

.liste-avantages li:last-child {
    border-bottom: none;
}

/* Growth Steps */
.etapes-evolution {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.etape {
    text-align: center;
    padding: 2.5rem;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
    position: relative;
    border-top: 4px solid #DC143C; /* Bordure supérieure rouge pour l'impact */
}

.etape:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 12px 30px rgba(220, 20, 60, 0.2);
}

.numero-etape {
    width: 65px;
    height: 65px;
    background: #DC143C; /* Numéro en Rouge Écarlate */
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.etape:hover .numero-etape {
    transform: scale(1.1) rotate(360deg);
    background: #1A1A1A; /* Devient Noir au survol */
    border: 3px solid #DC143C;
}

.icone-etape {
    width: 36px;
    height: 36px;
    margin: 1rem auto;
    display: block;
    filter: none; /* Conserve la couleur originale si possible */
}

.etape h3 {
    color: #1A1A1A; 
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.etape p {
    text-align: left;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.details-etape {
    text-align: left;
    margin-top: 1rem;
    border-left: 2px dashed #DC143C; /* Ligne rouge */
    padding-left: 1rem;
}

.details-etape span {
    display: block;
    padding: 0.3rem 0;
    color: #555555;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Confidence Benefits */
.avantages-assurance {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.avantage-element {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
    border: 1px solid rgba(220, 20, 60, 0.1);
}

.avantage-element:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.25);
}

.icone-avantage-element {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    display: block;
}

.avantage-element h3 {
    color: #1A1A1A; 
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.avantage-element p {
    text-align: left;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pratiques-assurance {
    text-align: left;
    margin-top: 1.5rem;
    background: #FFF0F3; /* Fond Rouge très clair */
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid #DC143C;
}

.pratiques-assurance h4 {
    color: #DC143C; 
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.pratiques-assurance ul {
    list-style: none;
    padding: 0;
}

.pratiques-assurance li {
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #1A1A1A;
    font-size: 0.95rem;
}

.pratiques-assurance li:before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #DC143C; 
    font-weight: bold;
}

/* Practices Grid */
.pratiques-grille {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.pratique-element {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(220, 20, 60, 0.1);
}

.pratique-element:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.25);
    border-color: #DC143C;
}

.icone-pratique {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    display: block;
}

.pratique-element h3 {
    color: #1A1A1A;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.pratique-element p {
    text-align: left;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.details-pratique {
    text-align: left;
    margin-top: 1.5rem;
    background: #FFF0F3; 
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid #DC143C;
}

.details-pratique h4 {
    color: #DC143C; 
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.details-pratique ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.details-pratique li {
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #1A1A1A;
    font-size: 0.95rem;
}

.details-pratique li:before {
    content: '➱';
    position: absolute;
    left: 0;
    color: #DC143C; 
    font-weight: bold;
}

.duree-pratique {
    background: #1A1A1A; /* Durée sur fond Noir */
    color: white;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 1rem;
    border: 1px solid #DC143C;
}

.duree-pratique strong {
    display: block;
    margin-bottom: 0.3rem;
    color: #FFFAFA;
}

/* Pricing */
.grille-tarifs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.carte-tarif {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
    position: relative;
    border: 1px solid #E0E0E0;
}

.carte-tarif:hover {
    transform: translateY(-15px) scale(1.05);
}

.carte-tarif.programme-phare {
    border: 4px solid #DC143C; /* Bordure Rouge Écarlate */
    transform: scale(1.08);
    background: #FFF0F3; /* Fond très léger pour le programme phare */
}

.carte-tarif.programme-phare::before {
    content: 'Notre Recommandation';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #DC143C; /* Ruban Rouge */
    color: white;
    padding: 6px 25px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.carte-tarif h3 {
    color: #1A1A1A; 
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.prix-programme {
    font-size: 3.5rem;
    color: #DC143C; 
    font-weight: bold;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.carte-tarif:hover .prix-programme {
    color: #A5002A;
    transform: scale(1.05);
}

.carte-tarif ul {
    list-style: none;
    margin-bottom: 2.5rem;
}

.carte-tarif li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #E0E0E0;
    color: #1A1A1A;
}

.bouton-tarif {
    background: #1A1A1A; /* Bouton sur fond Noir */
    color: white;
    padding: 14px 35px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    border: 2px solid #1A1A1A;
}

.bouton-tarif:hover {
    background: #DC143C; /* Devient Rouge Écarlate au survol */
    border-color: #DC143C;
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.4);
}

/* Testimonials */
.grille-temoignages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.temoignage-client {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 5px solid #DC143C;
}

.temoignage-client:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(220, 20, 60, 0.2);
}

.temoignage-client p {
    font-style: italic;
    margin-bottom: 1.5rem;
    text-align: left;
    color: #333333;
    line-height: 1.7;
}

.auteur-temoignage {
    text-align: left;
    border-top: 1px solid #E0E0E0;
    padding-top: 1rem;
}

.auteur-temoignage strong {
    color: #DC143C; /* Nom en Rouge Écarlate */
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
}

.auteur-temoignage span {
    font-size: 0.9rem;
    color: #555555;
}

/* Contact Form */
.formulaire-contact {
    max-width: 600px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 1px solid #DC143C; /* Encadrement Rouge Écarlate */
}

.groupe-champ {
    margin-bottom: 2rem;
}

.groupe-champ label {
    display: block;
    margin-bottom: 0.8rem;
    color: #1A1A1A;
    font-weight: 600;
    font-size: 1.1rem;
}

.groupe-champ input,
.groupe-champ select,
.groupe-champ textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    color: #1A1A1A;
}

.groupe-champ input:focus,
.groupe-champ select:focus,
.groupe-champ textarea:focus {
    outline: none;
    border-color: #DC143C;
    box-shadow: 0 0 5px rgba(220, 20, 60, 0.5);
}

.groupe-champ.error input,
.groupe-champ.error select {
    border-color: #FF4500;
}

.message-erreur {
    color: #FF4500;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

.bouton-soumission {
    background: #DC143C; 
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bouton-soumission:hover {
    background: #A5002A;
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 10px 20px rgba(220, 20, 60, 0.4);
}

.bouton-soumission:disabled {
    background: #9CA3AF;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Contact Info */
.informations-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.element-contact {
    text-align: center;
    padding: 2.5rem;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(220, 20, 60, 0.1);
    transition: all 0.3s ease;
}

.element-contact:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(220, 20, 60, 0.2);
}

.en-tete-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.icone-contact {
    width: 36px;
    height: 36px;
    filter: none;
    transition: all 0.3s ease;
}

.element-contact:hover .icone-contact {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 4px 8px rgba(220, 20, 60, 0.4));
}

.element-contact h3 {
    color: #DC143C; 
    margin: 0;
    font-size: 1.5rem;
}

.element-contact p {
    margin: 0;
    color: #1A1A1A;
    font-weight: 500;
}

.element-contact a {
    color: #DC143C; 
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.element-contact a:hover {
    color: #A5002A;
    text-decoration: underline;
    transform: scale(1.05);
}

/* Footer */
.pied-de-page {
    background: #1A1A1A; /* Fond de pied de page Noir Profond */
    color: #FFFFFF;
    padding: 3rem 0 1rem;
}

.contenu-pied-de-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.section-pied-de-page h3 {
    color: #DC143C; /* Titres en Rouge Écarlate */
    margin-bottom: 1.2rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.section-pied-de-page p {
    text-align: left;
    margin-bottom: 0;
    color: #CCCCCC;
}

.section-pied-de-page ul {
    list-style: none;
}

.section-pied-de-page ul li {
    margin-bottom: 0.8rem;
}

.section-pied-de-page ul li a {
    color: #FFFAFA; 
    text-decoration: none;
    transition: color 0.3s ease;
}

.section-pied-de-page ul li a:hover {
    color: #DC143C; /* Lien en Rouge Écarlate au survol */
}

.bas-de-page {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333; /* Séparateur sombre */
}

.bas-de-page p {
    color: #999999;
    font-size: 0.9rem;
}

/* Transformation Stats */
.statistiques-transformation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0 2rem;
    padding: 3rem 0;
    background: #1A1A1A; /* Fond Noir */
    color: #FFFFFF;
    border-radius: 20px;
    border: 2px solid #DC143C; /* Bordure Rouge Écarlate */
}

.chiffre-cle {
    text-align: center;
    padding: 1rem;
}

.nombre-stat {
    font-size: 3.5rem;
    font-weight: bold;
    color: #DC143C; /* Nombre en Rouge Écarlate */
    margin-bottom: 0.5rem;
    display: block;
    font-family: 'Playfair Display', serif;
}

.label-stat {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gallery Section */
.galerie-illustrations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.element-galerie {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(220, 20, 60, 0.1);
}

.element-galerie:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.3);
}

.image-galerie {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.image-focus {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.element-galerie:hover .image-focus {
    transform: scale(1.08);
}

.contenu-galerie {
    padding: 2.5rem;
}

.contenu-galerie h3 {
    color: #DC143C; 
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
}

.contenu-galerie p {
    text-align: left;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #1A1A1A;
}

.mots-cles-galerie {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.etiquette-mot {
    background: #FFF0F3; /* Fond très léger rouge */
    color: #DC143C; 
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(220, 20, 60, 0.2);
    transition: all 0.3s ease;
}

.etiquette-mot:hover {
    background: #DC143C;
    color: white;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 8px rgba(220, 20, 60, 0.4);
}

/* Styles Responsifs et Animations (les valeurs de transition et d'animation sont conservées, seuls les selecteurs de classes sont mis à jour) */
/* (omissions pour la concision - tout le reste du CSS existant, y compris les media queries et les keyframes, est conservé, mais les noms de classes sont mis à jour) */

/* Mise à jour des classes dans les Media Queries */
@media (max-width: 936px) {
    /* ... (règles conservées/mises à jour) ... */
    
    .menu-nav {
        /* ... (règles conservées) ... */
    }
    
    .menu-nav.active {
        /* ... (règles conservées) ... */
    }
    
    .hero-container h1 {
        font-size: 2.8rem;
    }
    
    .hero-container p {
        font-size: 1.1rem;
    }
    
    .hero-avantages {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    /* Adaptations de survol pour les écrans tactiles */
    .carte-element:hover {
        transform: translateY(-8px) scale(1.01);
        box-shadow: 0 15px 30px rgba(220, 20, 60, 0.25);
    }
    
    .carte-tarif:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 35px rgba(220, 20, 60, 0.3);
    }
    
    .temoignage-client:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(220, 20, 60, 0.2);
    }
    
    .element-galerie:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(220, 20, 60, 0.3);
    }
    
    .etape:hover {
        transform: translateY(-5px) scale(1.01);
        box-shadow: 0 12px 25px rgba(220, 20, 60, 0.25);
    }
    
    .avantage-element:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(220, 20, 60, 0.25);
    }
    
    .pratique-element:hover {
        transform: translateY(-6px) scale(1.01);
        box-shadow: 0 15px 28px rgba(220, 20, 60, 0.3);
    }
    
    /* ... (autres règles conservées/mises à jour) ... */
}

@media (max-width: 480px) {
    .hero-container h1 {
        font-size: 2.2rem;
    }
    
    .brand-grandir h1 {
        font-size: 1.8rem;
    }
    
    /* ... (règles conservées/mises à jour) ... */
}

/* Animations - Mise à jour des couleurs et des sélecteurs */

.carte-element:hover::before {
    left: 100%;
}

.carte-element:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.3);
}

.carte-tarif:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(220, 20, 60, 0.4);
}

.carte-tarif:hover .prix-programme {
    transform: scale(1.1);
    color: #A5002A;
}

.element-galerie:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.3);
}

.etape:hover .numero-etape {
    transform: scale(1.2) rotate(360deg);
    background: linear-gradient(45deg, #DC143C, #A5002A);
}

.icone-nav, .icone-titre, .icone-carte, .icone-pratique, .icone-avantage-element, .icone-avantage {
    transition: all 0.4s ease;
}

.lien-nav:hover .icone-nav {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(220, 20, 60, 0.4));
}

.icone-titre:hover {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 6px 12px rgba(220, 20, 60, 0.5));
}

.icone-carte:hover, .icone-pratique:hover, .icone-avantage-element:hover {
    transform: scale(1.15) translateY(-3px);
    filter: drop-shadow(0 8px 16px rgba(220, 20, 60, 0.4));
}

.bouton-action:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.bouton-tarif:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 20, 60, 0.4);
}

/* Stat Items Hover */
.chiffre-cle:hover {
    transform: translateY(-5px) scale(1.05);
}

.chiffre-cle:hover .nombre-stat {
    transform: scale(1.1);
    text-shadow: 0 4px 8px rgba(220, 20, 60, 0.4);
}

