/* ========================================
   WOODLAB STUDIO - STYLES DE PRÉSENTATION
   ======================================== */

/* Import des polices */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

/* Force Montserrat partout */
* {
    font-family: "Montserrat", sans-serif !important;
}

/* Variables CSS supprimées - Valeurs directes utilisées */

/* ========================================
   SECTION HERO
   ======================================== */

.hero_section {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../../images/logiciels/texture.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

/* Indicateur de scroll (comme l'accueil) */
.scroll_indicator {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F33428;
    border: 2px solid #F33428;
    background: rgba(255,255,255,0.0);
    transition: all 0.3s ease;
    z-index: 5;
    animation: sl_bounceDown 1.8s infinite;
}
.scroll_indicator i { font-size: 18px; }
.scroll_indicator:hover { background: #F33428; color: #ffffff; transform: translateX(-50%) translateY(-2px); }

@keyframes sl_bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

.hero_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero_content {
    animation: slideInLeft 1s ease-out;
}

.hero_title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero_subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0 0 30px 0;
    color: #995858;
    line-height: 1.4;
}

.hero_description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 40px 0;
    color: #9ea5af;
}

.hero_buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta_primary {
    background: #F33428 !important;
    border-color: #F33428 !important;
    color: #ffffff !important;
    padding: 15px 30px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Style spécifique pour le bouton "Demander une démonstration" */
.hero_buttons .cta_primary {
    background: #f33428b5 !important;
    border: 2px solid #f33428b5 !important;
}

.cta_primary:hover {
    background: transparent !important;
    color: #F33428 !important;
    border-color: #F33428 !important;
    transform: translateY(-2px);
    box-shadow: none !important;
}

.cta_secondary {
    background: transparent !important;
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
    padding: 15px 30px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.cta_secondary:hover {
    background: #ffffff !important;
    color: #41484E !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.hero_image {
    animation: slideInRight 1s ease-out;
    text-align: center;
}

.hero_image img {
    width: 580px;            /* taille indépendante de la source */
    height: 420px;           /* hauteur fixe */
    object-fit: cover;       /* recadrage propre */
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.hero_image img:hover {
    transform: scale(1.02);
}

/* Agrandissement progressif au‑delà du Full HD */

/* ========================================
   SECTIONS GÉNÉRALES
   ======================================== */

.section_title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 20px 0;
    color: #41484E;
    position: relative;
}

.section_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #F33428;
    border-radius: 2px;
}

.section_subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    margin: 0 0 60px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   SECTION POURQUOI WOODLAB
   ======================================== */

.info_section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.info_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #ff0000;
}

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

.info_text {
    max-width: 800px;
    margin: 60px auto 0 auto;
    text-align: center;
}

.info_description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2d3748;
    margin: 0 0 30px 0;
    font-weight: 400;
}

.info_description:last-child {
    margin-bottom: 0;
}

.woodlab_why_card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.woodlab_why_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.woodlab_why_icon {
    width: 80px;
    height: 80px;
    background: #F33428;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    color: #ffffff;
    font-size: 2rem;
    position: relative;
}

.woodlab_why_icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: #ff0000;
    border-radius: 50%;
    z-index: -1;
}

.woodlab_why_card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #41484E;
}

.woodlab_why_card p {
    color: #7a7a7a;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   SECTION MODULES
   ======================================== */

.features_section {
    padding: 100px 0;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../../images/logiciels/texture.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.features_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #ff0000;
}

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

.features_section .section_title {
    color: #ffffff;
}

.features_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature_card {
    background: #1a1a1a;
    padding: 0;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #333;
    position: relative;
    overflow: hidden;
}

.feature_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.feature_card:hover::before {
    left: 100%;
}

.feature_card:hover {
    transform: translateY(-5px);
    border-color: #F33428;
    box-shadow: 0 10px 30px rgba(243, 52, 40, 0.3);
}

.feature_image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.feature_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature_card:hover .feature_image img {
    transform: scale(1.05);
}

.feature_card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 20px 0 15px 0;
    color: #ffffff;
    padding: 0 20px;
}

.feature_card p {
    color: #ccc;
    line-height: 1.5;
    margin: 0 0 20px 0;
    font-size: 1rem;
    padding: 0 20px;
}

/* ========================================
   SECTION CIBLE
   ======================================== */

.target_section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.target_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #ff0000;
}

.target_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.target_text {
    max-width: 800px;
    margin: 60px auto 40px auto;
}

.target_description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2d3748;
    margin: 0 0 30px 0;
    font-weight: 400;
}

.target_description:last-child {
    margin-bottom: 0;
}

.target_button {
    margin-top: 40px;
}

.target_slider {
    margin-top: 60px;
    text-align: center;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.slider_container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.target_slider {
    position: relative;
}

.slider_nav {
    position: absolute;
    top: 50%;
    left: -60px;
    right: -60px;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.slider_btn {
    background: rgba(243, 52, 40, 0.9);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    pointer-events: all;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider_btn:hover {
    background: rgba(243, 52, 40, 0.9);
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(243, 52, 40, 0.4);
}

.slider_dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot.active,
.dot:hover {
    background-color: #F33428;
    transform: scale(1.2);
}

.dot.active::before,
.dot:hover::before {
    background-color: rgba(243, 52, 40, 0.2);
    transform: translate(-50%, -50%) scale(1.5);
}

/* ========================================
   SECTION FAQ
   ======================================== */

.faq_section {
    padding: 100px 0;
    background: #f0f4f8;
    position: relative;
}

.faq_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #ff0000;
}

.faq_container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq_list {
    margin-top: 60px;
}

.faq_item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq_item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.faq_question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq_question:hover {
    background: #f0f0f0;
}

.faq_question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #41484E;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
    flex: 1;
    padding-right: 15px;
}

.faq_icon {
    font-size: 1.2rem;
    font-weight: bold;
    color: #F33428;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(243, 52, 40, 0.1);
    flex-shrink: 0;
}

.faq_item.active .faq_icon {
    transform: rotate(45deg);
}

.faq_answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq_item.active .faq_answer {
    padding: 25px 30px;
    max-height: 500px;
}

.faq_answer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2d3748;
    margin: 0;
}

/* ========================================
   SECTION CONTACT
   ======================================== */

.contact_section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f5 100%);
    position: relative;
}

.contact_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F33428, #ff0000);
}

.contact_container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Brochure - Styles gérés dans editable-fields.css */
.brochure_section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.brochure_container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact_form_wrapper {
    margin-top: 30px;
}

.contact_form {
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
}

.form_header {
    text-align: center;
    margin-bottom: 40px;
}

.form_header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #41484E;
    font-family: 'Montserrat', sans-serif;
}

.form_header p {
    color: #7a7a7a;
    font-size: 1.1rem;
    margin: 0;
}

.form_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form_group {
    margin-bottom: 25px;
}

.form_group label {
    display: block;
    font-weight: 600;
    color: #41484E;
    margin-bottom: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.form_group input,
.form_group select,
.form_group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.form_group input:focus,
.form_group select:focus,
.form_group textarea:focus {
    border-color: #F33428;
    outline: none;
    box-shadow: 0 0 0 3px rgba(243, 52, 40, 0.1);
    transform: translateY(-2px);
}

.form_group textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

.form_group select {
    cursor: pointer;
}

.form_checkboxes {
    margin: 30px 0;
}

.checkbox_group {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.checkbox_group input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: #F33428;
}

.checkbox_group label {
    font-size: 0.95rem;
    color: #7a7a7a;
    line-height: 1.5;
    margin: 0;
    cursor: pointer;
}

.form_submit {
    text-align: center;
    margin-top: 40px;
}

#submit-text {
    font-family: 'Montserrat', sans-serif !important;
}

.submit_btn {
    background: #F33428;
    color: #ffffff;
    border: none;
    padding: 6px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(243, 52, 40, 0.3);
}

.submit_btn:hover {
    background: #d32f2f;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(243, 52, 40, 0.4);
}

.submit_btn i {
    transition: transform 0.3s ease;
}

.submit_btn:hover i {
    transform: translateX(5px);
}

.form_note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #7a7a7a;
    font-style: italic;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media screen and (max-width: 1450px) {
    .hero_image img {
        width: 450px;
        height: 326px;
    }

    .hero_subtitle {
        font-size: 18px;
    }

    .hero_title {
        font-size: 47px;
    }

    .hero_description {
        font-size: 16px;
    }

    .hero_section {
        padding: 100px 0;
        min-height: auto;
    }
}

@media screen and (max-width: 1200px) {
    .target_slider {
        max-width: 650px;
    }
    .slider_container {
        height: 325px;
    }
}

@media screen and (max-width: 1050px) {
    .hero_image img {
        width: 380px;
        height: 275px;
    }

    .hero_subtitle {
        font-size: 16px;
    }

    .hero_title {
        font-size: 40px;
    }

    .hero_description {
        font-size: 14px;
    }
    
    .features_grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .info_container,
    .features_container,
    .target_container,
    .faq_container,
    .contact_container {
        padding: 0 30px;
    }
}

@media screen and (max-width: 950px) {
    .hero_container {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }
    .hero_content{
        text-align: center;
    }
    .hero_buttons {
        justify-content: center;
    }

    .hero_image img {
        width: 450px;
        height: 325px;
    }

    .hero_section {
        padding: 100px 0 140px 0;
    }

    .hero_subtitle {
        font-size: 18px;
    }

    .hero_title {
        font-size: 47px;
    }

    .hero_description {
        font-size: 16px;
    }

    .target_slider {
        max-width: 550px;
    }
    .slider_container {
        height: 275px;
    }
}
/* Tablettes et mobiles */
@media screen and (max-width: 768px) {
    .hero_image img {
        width: 331px;
        height: 240px;
    }
    .hero_container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 25px;
    }
    
    .hero_title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero_subtitle {
        font-size: 1.2rem;
    }
    
    .hero_description {
        font-size: 1rem;
    }
    
    .hero_buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    
    .info_section,
    .target_section,
    .faq_section,
    .contact_section,
    .brochure_section {
        padding: 80px 0;
    }

    .features_section{
        padding: 80px 0 110px 0;
    }
    
    .info_container,
    .features_container,
    .target_container,
    .faq_container,
    .contact_container,
    .brochure_container {
        padding: 0 25px;
    }
    
    .info_text,
    .target_text {
        max-width: 100%;
    }
    
    .info_description,
    .target_description {
        font-size: 1.1rem;
    }
    
    .features_grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .feature_card {
        padding: 0;
    }
    
    .feature_image {
        height: 180px;
    }

    .target_slider {
        max-width: 400px;
    }
    .slider_container {
        height: 200px;
    }

    .slider_btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .target_section {
        padding: 80px 0 130px 0;
    }
    
    .faq_container {
        max-width: 100%;
    }
    
    .faq_question {
        padding: 20px 25px;
    }
    
    .faq_question h3 {
        font-size: 1.1rem;
    }
    
    .faq_answer {
        padding: 0 25px;
    }
    
    .faq_item.active .faq_answer {
        padding: 20px 25px;
        max-height: 400px;
    }
    
    .form_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact_form {
        padding: 40px 25px;
    }
    
    .section_title {
        font-size: 2rem;
    }
    
    .section_subtitle {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 600px) {
    .slider_btn {
        display: none;
    }
}
@media screen and (max-width: 480px) {
    .hero_image img {
        width: 100%;
        aspect-ratio: 29 / 21;
    }

    .hero_container {
        gap: 30px;
        padding: 0 20px;
    }
    
    .hero_title {
        font-size: 2rem;
    }
    
    .hero_subtitle {
        font-size: 1.1rem;
    }
    
    .hero_description {
        font-size: 0.95rem;
    }
    
    .hero_buttons {
        gap: 12px;
    }
    
    .cta_primary,
    .cta_secondary {
        padding: 12px 25px !important;
        font-size: 1rem !important;
        max-width: 100%;
    }
    
    .info_section,
    .contact_section,
    .brochure_section {
        padding: 60px 0;
    }

    .faq_section{
        padding: 60px 0 90px 0;
    }
    .features_section{
        padding: 60px 0 110px 0;
    }
    
    .info_container,
    .features_container,
    .target_container,
    .faq_container,
    .contact_container,
    .brochure_container {
        padding: 0 20px;
    }
    
    .brochure_current {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .brochure_actions {
        width: 100%;
        justify-content: flex-start;
    }
    
    .info_description,
    .target_description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .features_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature_image {
        height: 160px;
    }
    
    .feature_card h3 {
        font-size: 1.2rem;
        padding: 15px 20px 10px 20px;
    }
    
    .feature_card p {
        font-size: 0.9rem;
        padding: 0 20px 15px 20px;
    }
    
    .target_button {
        margin-top: 30px;
    }

    .target_slider{
        max-width: 90%;
        aspect-ratio: 2 / 1;
    }

    
    .faq_question {
        padding: 18px 20px;
    }
    
    .faq_question h3 {
        font-size: 1rem;
    }
    
    .faq_answer {
        padding: 0 20px;
    }
    
    .faq_item.active .faq_answer {
        padding: 18px 20px;
        max-height: 350px;
    }
    
    .faq_answer p {
        font-size: 1rem;
    }
    
    .contact_form {
        padding: 30px 20px;
    }
    
    .form_group label {
        font-size: 0.95rem;
    }
    
    .form_group input,
    .form_group select,
    .form_group textarea {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .submit_btn {
        padding: 15px 35px;
        font-size: 1rem;
    }
    
    .section_title {
        font-size: 1.8rem;
    }
    
    .section_subtitle {
        font-size: 1rem;
    }
}

/* Très petits écrans */
@media screen and (max-width: 360px) {
    .hero_container {
        padding: 0 15px;
    }
    
    .hero_title {
        font-size: 1.8rem;
    }
    
    .hero_subtitle {
        font-size: 1rem;
    }
    
    .hero_description {
        font-size: 0.9rem;
    }
    
    .cta_primary,
    .cta_secondary {
        padding: 10px 20px !important;
        font-size: 0.95rem !important;
    }
    
    .info_container,
    .features_container,
    .target_container,
    .faq_container,
    .contact_container {
        padding: 0 15px;
    }
    
    .info_description,
    .target_description {
        font-size: 0.95rem;
    }
    
    .feature_image {
        height: 140px;
    }
    
    .feature_card h3 {
        font-size: 1.1rem;
        padding: 12px 15px 8px 15px;
    }
    
    .feature_card p {
        font-size: 0.85rem;
        padding: 0 15px 12px 15px;
    }
    
    .slider_container {
        height: 200px;
    }
    
    .target_slider .slider_nav {
        left: -35px;
        right: -35px;
    }
    
    .slider_btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .faq_question {
        padding: 15px 18px;
    }
    
    .faq_question h3 {
        font-size: 0.95rem;
    }
    
    .faq_answer {
        padding: 0 18px;
    }
    
    .faq_item.active .faq_answer {
        padding: 15px 18px;
        max-height: 300px;
    }
    
    .faq_answer p {
        font-size: 0.95rem;
    }
    
    .contact_form {
        padding: 25px 18px;
    }
    
    .form_group input,
    .form_group select,
    .form_group textarea {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .submit_btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
    
    .section_title {
        font-size: 1.6rem;
    }
    
    .section_subtitle {
        font-size: 0.95rem;
    }
}

/* ========================================
   SECTION FORMATION
   ======================================== */

.training_section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.training_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.training_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.training_content {
    text-align: center;
}

.training_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.training_badge {
    background: linear-gradient(135deg, #F33428, #ff6b6b);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(243, 52, 40, 0.3);
    animation: pulse 2s infinite;
}

.training_badge i {
    font-size: 1.1rem;
}

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

.training_description {
    font-size: 1.3rem;
    color: #7c7c7c;
    margin-bottom: 70px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

.training_features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-bottom: 70px;
}

.training_feature {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.training_feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F33428, #ff6b6b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.training_feature:hover::before {
    transform: scaleX(1);
}

.training_feature:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature_icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F33428, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    box-shadow: 0 8px 20px rgba(243, 52, 40, 0.3);
    color: #fff;
}

.training_feature h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #41484E;
    margin-bottom: 20px;
    line-height: 1.3;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.training_feature p {
    color: #7c7c7c;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 25px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature_highlight {
    color: #F33428;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

.feature_highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F33428;
    transition: width 0.3s ease;
}

.feature_highlight:hover::after {
    width: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.certification_feature {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.certification_image_link {
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.certification_image_link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.certification_logo {
    width: 120px;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.certification_image_link:hover .certification_logo {
    transform: scale(1.1);
}

.training_buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.training_buttons .button {
    min-width: 250px;
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.training_buttons .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.training_buttons .button:hover::before {
    left: 100%;
}

.training_buttons .cta_primary {
    background: linear-gradient(135deg, #F33428, #ff6b6b);
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 25px rgba(243, 52, 40, 0.3);
}

.training_buttons .cta_primary:hover {
    background: linear-gradient(135deg, #ff6b6b, #F33428);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(243, 52, 40, 0.4);
}

.training_buttons .cta_secondary {
    background: transparent;
    color: #41484E;
    border: 3px solid #41484E;
    box-shadow: 0 8px 25px rgba(65, 72, 78, 0.2);
}

.training_buttons .cta_secondary:hover {
    background: #41484E;
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(65, 72, 78, 0.3);
}

.training_buttons .button i {
    font-size: 1.1rem;
}

/* Responsive pour la section formation */
@media screen and (max-width: 768px) {

    .training_section {
        padding: 80px 0 115px 0;
    }
    
    .training_header {
        gap: 15px;
    }
    
    .training_badge {
        font-size: 0.8rem;
        padding: 10px 20px;
    }
    
    .training_description {
        font-size: 1.2rem;
        margin-bottom: 50px;
    }
    
    .training_features {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .training_feature {
        padding: 30px 25px;
    }
    
    .feature_icon {
        width: 70px;
        height: 70px;
    }
    
    .feature_icon i {
        font-size: 2.2rem;
    }
    
    .training_feature h3 {
        font-size: 1.4rem;
        height: 50px;
    }
    
    .training_feature p {
        font-size: 1rem;
        height: 70px;
    }
    
    .training_buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .training_buttons .button {
        max-width: 380px;
        width: 380px;
    }
}

@media screen and (max-width: 480px) {

    
    .training_header {
        gap: 15px;
    }
    
    .training_badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }
    
    .training_description {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .training_features {
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .training_feature {
        padding: 25px 20px;
    }
    
    .feature_icon {
        width: 60px;
        height: 60px;
    }
    
    .feature_icon i {
        font-size: 2rem;
    }
    
    .training_feature h3 {
        font-size: 1.3rem;
        height: 45px;
    }
    
    .training_feature p {
        font-size: 0.95rem;
        height: 65px;
    }
    
    .feature_highlight {
        font-size: 0.8rem;
        letter-spacing: 0.8px;
    }
    
    .certification_logo {
        width: 100px;
    }
    
    .training_buttons .button {
        padding: 15px 25px;
        font-size: 1rem;
        min-width: auto;
    }
    .training_section {
        padding: 60px 0 100px 0;
    }
    .training_buttons .button {
        max-width: 290px;
        width: 290px;
        font-size: 12px !important;
    }
}

/* ========================================
   AMÉLIORATIONS D'ACCESSIBILITÉ
   ======================================== */

.hero_title:focus,
.section_title:focus {
    outline: 2px solid #F33428;
    outline-offset: 4px;
}

.feature_card:focus-within {
    outline: 2px solid #F33428;
    outline-offset: 4px;
}

/* Amélioration du contraste pour les textes */
.target_description {
    color: #374151;
}

/* ========================================
   OPTIMISATIONS DE PERFORMANCE
   ======================================== */

.hero_image img {
    will-change: transform;
}

.feature_card {
    will-change: transform;
}

/* Réduction des animations sur les appareils qui préfèrent moins de mouvement */
@media (prefers-reduced-motion: reduce) {
    .hero_content,
    .hero_image {
        animation: none;
    }
    
    .feature_card:hover,
    .hero_image img:hover {
        transform: none;
    }
}
