*{
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-v22-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-v22-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-v22-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Conteneur du message flash */
.flash-message {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700;
    color: black;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0px 4px 10px rgba(255, 223, 0, 0.4);
    opacity: 1;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    z-index: 1000;
    max-width: 90%;
    text-align: center;
}

/* Animation de disparition */
.flash-message.hide {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
}

/* Adaptation pour mobile */
@media screen and (max-width: 480px) {
    .flash-message {
        font-size: 0.9rem;
        padding: 10px 15px;
        bottom: 15px;
        max-width: 80%;
    }
}

/* === NAVBAR GLOBALE === */
.navbar {
    width: 100%;
    background: #000;
    color: #f1f1f1;
    padding: 15px 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* === LOGO === */
.logo img {
    height: 100%;
    width: auto;
    transition: transform 0.3s ease;
}
.logo:hover img {
    transform: scale(1.05);
}

/* === MENU LIENS === */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.login-home {
    color: #f1f1f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.login-home:hover {
    color: #efc500;
}

/* === BOUTON DEVIS === */
.nav-btn {
    background: #efc500;
    color: #000;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.nav-btn:hover {
    background: #d4b500;
    transform: scale(1.05);
}

/* === BOUTON BURGER === */
.nav-toggle {
    background: none;
    border: none;
    color: #f1f1f1;
    font-size: 1.8rem;
    display: none;
    cursor: pointer;
}

/* === RESPONSIVE === */
@media (max-width: 600px) {
    .navbar {
        padding: 15px 25px; /* augmente la marge gauche et droite */
    }

    .logo img {
        margin-left: 5px; /* petit espace pour respirer */
    }

    .nav-toggle {
        margin-right: 25px; /* équilibre visuellement à droite */
    }
}


    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        background: #111;
        width: 100%;
        flex-direction: column;
        gap: 15px;
        padding: 25px 0;
        text-align: center;
        display: none;
        box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    }

    .nav-menu.active {
        display: flex;
        animation: fadeDown 0.3s ease;
    }

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

    .nav-toggle {
        display: block;
    }

    .nav-btn {
        width: 80%;
        margin: 10px auto;
    }

@media (max-width: 600px) {
    .navbar {
        padding: 15px 20px;
    }
}


.login-home{
    color: #f1f1f1;
    text-decoration: none;
}

.login-home:hover{
    color: rgba(239, 197, 0, 0.89);
}

/* Style du cercle qui suit la souris */
.cursor {
    position: fixed;
    width: 40px;  /* Taille du cercle */
    height: 40px;
    border: 2px solid #efc500; /* Contour du cercle */
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s linear;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dot {
    position: absolute;
    width: 8px;  /* Taille du point */
    height: 8px;
    background-color: #efc500;
    border-radius: 50%;
}

/* Cacher le texte en dessous de 768px */
@media screen and (min-width: 768px) {
    .nav-right {
        display:none;
    }
}

.svg-realisation{
    margin-top: -1px;
}

/* Cacher le curseur personnalisé sur tablettes et mobiles */
@media screen and (max-width: 1024px) {
    .cursor {
        display: none;
    }
    .logo img, .contact-section {
        margin-left: 25px!important;
    }
    .nav-contact-button, .contact-section {
        margin-right: 25px!important;
    }
    .container-projet-web {
        padding: 25px!important;
    }
    .content-info{
        justify-content: center;
    }
    .contact-section{
        margin-top: -4rem!important;
    }
}

@media screen and (max-width: 542px) {
    .contact-section{
        margin-top: -2rem!important;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: #efc500;
    border-radius: 5px; /* Bords arrondis */
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(239, 197, 0, 0.87);
}

/* Style du logo */
.logo img {
    margin-left: 75px;
    width: 200px;
    height: auto;
}

#start-snake {
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px 40px;
    font-size: 24px;
    font-weight: bold;
    background: #efc500;
    color: black;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(239, 197, 0, 0.8);
    animation: glow 1.5s infinite alternate;
    transition: transform 0.2s ease-in-out;
}

#start-snake:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Animation scintillante */
@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(239, 197, 0, 0.8);
    }
    to {
        box-shadow: 0 0 20px rgba(239, 197, 0, 1);
    }
}




.header {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
}


.rotating-boule {
    position: absolute;
    max-width: 600px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotation 50s linear infinite;
}

.bold-text {
    white-space: nowrap; /* Empêche le texte de passer à la ligne */
    overflow: hidden; /* Empêche le débordement */
    text-overflow: ellipsis; /* Ajoute "..." si trop long */
    max-width: 100%; /* Empêche de dépasser la largeur de l'écran */
}

/* Effet de survol sur "CRÉATION DE SITE" */
.bold-text {
    position: relative;
    display: inline-block;
    transition: text-shadow 0.3s ease-in-out; /* Effet de glow fluide */
}

/* Glow blanc au survol */
.bold-text:hover {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* ANIMATION ROTATION */
@keyframes rotation {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* STYLE DU TEXTE */
.text-overlay {
    position: absolute;
    top: 45%; /* Ajusté pour être un peu plus haut */
    left: 30%; /* Déplacé vers la gauche */
    transform: translate(-50%, -50%);
    text-align: right; /* Alignement à droite */
    color: white;
    z-index: 10;
}

/* TEXTE PLEIN */
.bold-text {
    font-size: 60px;
    font-weight: 500;
    display: block;
}

/* TEXTE CONTOUR */
.outline-text {
    font-size: 30px;
    font-weight: 900;
    display: block;
    -webkit-text-stroke: 1px white; /* Contour blanc */
    color: transparent; /* Texte transparent */
    margin-top: 5px;
}

/* SECTION DU TEXTE DÉFILANT */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: #efc500;
    padding: 10px 0;
}

/* CONTENU QUI DÉFILE */
.marquee-content {
    display: flex;
    gap: 50px; /* Espace entre les répétitions */
    font-size: 5rem;
    font-weight: 400;
    color: #000000;
    animation: scroll-text 50s linear infinite;
    width: max-content; /* Évite la coupure du texte */
}

/* Custom Modal Styles for Right-to-Left Slide */
.modal.right .modal-dialog {
    position: fixed;
    margin: 0;
    width: 25%; /* Takes up a quarter of the screen */
    max-width: 100%;
    height: 100vh;
    top: 0;
    right: -25%; /* Start off-screen to the right */
    transition: transform 0.3s ease-out;
}

.modal.right.show .modal-dialog {
    transform: translateX(-100%); /* Slide in to the left */
}

.modal.right .modal-content {
    height: 100%;
    overflow-y: auto;
    border-radius: 0;
    border: none;
}

.modal.right .modal-header-nav {
    border-bottom: none;
}

.modal.right .modal-body-nav {
    padding: 20px;
}

/* Blur effect for the background */
.modal-backdrop.show {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(200px);
}

.modal-backdrop {
    transition: backdrop-filter 0.3s ease-out;
}

/* Form Styles Inside Modal */
.modal-content form {
    padding: 10px; /* Reduce padding around the form */
    background-color: #111; /* Black background */
    color: #fff; /* White text */
}

.modal-content .form-group {
    margin-bottom: 1rem;
}

.modal-content .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #efc500; /* Yellow label text */
    font-weight: 500;
}

.modal-content .form-group input,
.modal-content .form-group textarea {
    width: 100%;
    padding: 8px; /* Reduce padding inside inputs */
    font-size: 0.9rem; /* Reduce font size slightly */
    border: 1px solid #efc500; /* Yellow border */
    border-radius: 4px;
    background-color: #222; /* Darker black for inputs */
    color: #fff; /* White text */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.modal-content .form-group textarea {
    height: 100px; /* Reduce height of textarea */
    resize: vertical; /* Allow vertical resizing */
}

.modal-content .form-group input:focus,
.modal-content .form-group textarea:focus {
    border-color: #d4ac00; /* Darker yellow on focus */
    outline: none;
    box-shadow: 0 0 5px rgba(239, 197, 0, 0.5); /* Yellow glow */
}

.modal-content .form-group .error {
    border: 1px solid red; /* Red border for errors */
}

.modal-content .form-group .error-message {
    color: red; /* Red error text */
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.modal-content button[type="submit"] {
    background-color: #efc500; /* Yellow button */
    color: #000; /* Black text */
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.modal-content button[type="submit"]:hover {
    background-color: #d4ac00; /* Darker yellow on hover */
}

/* Modal Header Styles */
.modal.right .modal-header-nav {
    position: relative; /* Add this to make the close button positioning relative to the header */
    background-color: #111; /* Black background */
    border-bottom: 1px solid #efc500; /* Yellow border */
    padding: 15px 20px;
    display: flex;
    justify-content: space-between; /* Add this to push the close button to the right */
    align-items: center; /* Center items vertically */
}

.modal.right .modal-header-nav .modal-title-nav {
    color: #efc500; /* Yellow text */
    font-size: 1rem;
    font-weight: bold;
}


.modal.right .modal-header-nav .btn-close {
    position: absolute; /* Position the close button absolutely within the header */
    top: 10px; /* Adjust the top position */
    right: 10px; /* Adjust the right position */
    filter: invert(1); /* Make the close button white */
    opacity: 0.8;
    transition: opacity 0.3s ease;
    margin-left: 10px;
}

.modal.right .modal-header-nav .btn-close:hover {
    opacity: 1; /* Full opacity on hover */
}

/* Modal Body Styles */
.modal.right .modal-body-nav {
    background-color: #111; /* Black background */
    padding: 20px;
    color: #fff; /* White text */
    flex-grow: 1; /* Allow the body to grow and fill the space */
    display: flex;
    flex-direction: column;
}

/* Make the description textarea bigger */
.modal.right .modal-body-nav .form-group textarea {
    height: 150px; /* Set a fixed height */
    resize: vertical; /* Allow vertical resizing */
    flex-grow: 1; /* Fill the remaining space */
}

/* ANIMATION DU TEXTE */
@keyframes scroll-text {
    from {
        transform: translateX(0); /* Démarrer sans décalage */
    }
    to {
        transform: translateX(-50%); /* Déplacer de moitié pour un scroll continu */
    }
}

/* --- RESPONSIVE DESIGN --- */

/* Pour tablettes (max 1024px) */
@media screen and (max-width: 1024px) {
    .rotating-boule {
        width: 400px; /* Taille réduite */
    }

    .text-overlay {
        top: 40%;
        left: 25%;
    }

    .bold-text {
        font-size: 40px;
    }

    .outline-text {
        font-size: 30px;
    }

    .marquee-content {
        font-size: 3rem;
        gap: 30px;
    }
}

@media screen and (max-width: 920px) {
    #start-snake {
        right: 10% !important
    }
}

@media (max-width: 768px) {
    canvas {
        opacity: 0.5; /* Rend le jeu plus transparent sur mobile */
    }
}


/* Pour smartphones (max 768px) */
@media screen and (max-width: 768px) {
    .header {
        height: 60vh; /* Réduction de la hauteur */
    }

    #start-snake{
        display: none;
    }

    .background {
        height: 60vh;
    }

    .rotating-boule {
        width: 300px; /* Boule plus petite */
        margin-bottom: 15px;
    }

    .text-overlay {
        top: 35%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .bold-text {
        font-size: 30px;
    }

    .outline-text {
        font-size: 24px;
    }

    .marquee {
        padding: 5px 0; /* Moins d’espace */
    }

    .marquee-content {
        font-size: 2rem; /* Plus petit pour mobile */
        gap: 20px;
    }

    .modal.right .modal-dialog {
        width: 100%; /* Take up the full width of the screen */
        right: -100%; /* Start off-screen to the right */
        height: 100vh; /* Full height of the viewport */
    }

    .modal.right .modal-content {
        max-width: none;
    }

    .modal.right .modal-body-nav {
        height: calc(100% - 60px); /* Adjust height to account for the header */
        overflow-y: auto; /* Enable scrolling if content overflows */
    }

    .modal.right.show .modal-dialog {
        transform: translateX(-100%); /* Slide in to the left */
    }

    .modal-content form {
        padding: 15px; /* Adjust padding for smaller screens */
    }

    .modal-content .form-group input,
    .modal-content .form-group textarea {
        font-size: 1rem; /* Slightly larger font size for better readability on mobile */
    }

    .modal-content button[type="submit"] {
        width: 100%; /* Full-width button on mobile */
        padding: 12px;
    }

    .logo img {
        margin-left: 0; /* Remove left margin */
    }
}

/* Pour petits téléphones (max 480px) */
@media screen and (max-width: 480px) {
    h4{
        font-size: 16px!important;
    }
    .rotating-boule {
        width: 250px;
        margin-bottom:15px;
    }

    .text-overlay {
        top: 30%;
    }

    .bold-text {
        font-size: 24px;
    }

    .outline-text {
        font-size: 20px;
    }

    .marquee-content {
        font-size: 1.5rem;
    }
}


.contact-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: -8rem;
    margin-left: 75px;
    margin-right: 75px;
}



.contact-content {
    max-width: 900px;
    text-align: justify;
}

.contact-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.highlight {
    color: #efc500; /* Jaune */
    font-weight: bold;
}

.contact-text {
    font-size: 18px;
    margin-top: 10px;
}

/* Style du bouton */
.contact-button {
    background: #efc500;
    color: #000;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-button:hover {
    background: #d9b100;
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.3);
}

.contact-button:active {
    transform: scale(0.98);
}


.icon {
    color: #efc500;
    margin-right: 8px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }

    .contact-button {
        width: 100%;
        text-align: center;
        padding: 15px;
    }
}

/* Style principal du conteneur */
.container-projet-web {
    background-color: black;
    padding: 75px;
    width: 100%;
}

h4 {
    color: #e0e0e0!important; /* Texte en blanc */
    text-transform: uppercase; /* Texte en majuscules */
    position: relative; /* Position relative pour le pseudo-élément */
    display: inline-block; /* Permet de mieux gérer le soulignement */
}

h4::after {
    content: "";
    display: block;
    width: 50%; /* Largeur à la moitié du titre */
    height: 3px; /* Épaisseur du trait */
    background-color: #efc500;
    position: absolute;
    left: 0; /* Aligner à gauche */
    bottom: -5px; /* Espacement sous le texte */
}



/* Titre principal */
h1 {
    font-size: 42px;
    text-transform: uppercase;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Style des étapes */
.step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
}

.step:nth-child(even) {
    flex-direction: row-reverse;
}

/* Contenu des étapes */
.step-content {
    max-width: 550px;
}

.number{
    font-size: 5rem;
    color: #f1f1f1;
}

.title-projet-web{
    color: #FFD700;
    font-size: 18px;
}

/* Description des étapes */
.step-description {
    font-size: 18px;
    line-height: 1.6;
    color: #f1f1f1;
}

/* Bouton principal */
.button-primary {
    background-color: #FFD700;
    color: #111;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
}

.button-primary:hover {
    background-color: #FFC107;
    transform: scale(1.05);
}

.step-img {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
    filter: drop-shadow(0px 0px 15px #FFD700); /* Ombre jaune */
}

.step-img.visible {
    opacity: 1;
    transform: translateY(0);
}


.step img {
    width: 100%; /* Permet au navigateur d'utiliser `sizes` correctement */
    max-width: 500px; /* Empêche l'image d'être trop grande */
    height: auto;
    display: block;
    margin: auto;
}

/* 📌 Ajuste la taille sur mobile */
@media (max-width: 768px) {
    .step{
        flex-direction: column!important;
    }
    .step img {
        max-width: 300px;
        width: 80vw;
    }
}

@media (max-width: 480px) {
    .step img {
        max-width: 250px;
        width: 100vw;
    }
}

@media (max-width: 530px) {
    .hero {
        background-image: none !important;
        background-color: black !important;
    }
}

.user-profile-section {
    background: #0b0b0b;
    color: #F1F1F1;
    padding: 80px 20px;
    text-align: center;
}

.user-profile-section .title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #FFD400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.user-profile-section .subtitle {
    color: #bbb;
    font-size: 1rem;
    margin-bottom: 50px;
}

.profiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    justify-items: center;
}

.profile-card {
    background: #111;
    border: 1px solid #1e1e1e;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    max-width: 340px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.profile-card:nth-child(1) { animation-delay: 0.1s; }
.profile-card:nth-child(2) { animation-delay: 0.2s; }
.profile-card:nth-child(3) { animation-delay: 0.3s; }
.profile-card:nth-child(4) { animation-delay: 0.4s; }
.profile-card:nth-child(5) { animation-delay: 0.5s; }
.profile-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 15px rgba(255, 212, 0, 0.3);
    border-color: #FFD400;
}

.profile-card i {
    font-size: 42px;
    color: #FFD400;
    margin-bottom: 15px;
}

.profile-card h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.profile-card p {
    color: #bbb;
    font-size: 0.95rem;
    margin-bottom: 20px;
    min-height: 60px;
}

.btn-yellow {
    display: inline-block;
    background: #FFD400;
    color: #111;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-yellow:hover {
    background: #fff;
    color: #000;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .profiles {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .profiles {
        grid-template-columns: 1fr;
    }
}


.steps-section {
    background: #fff;
    text-align: center;
    padding: 90px 20px 80px;
    color: #111;
    font-family: 'Poppins', sans-serif;
}

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

.steps-title span {
    color: #FFD84D;
}

.steps-subtitle {
    color: #555;
    margin-bottom: 60px;
    font-size: 1.05rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    justify-items: center;
}

.step-card {
    background: #111;
    color: #f5f5f5;
    border-radius: 25px;
    padding: 50px 30px;
    position: relative;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    max-width: 320px;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 216, 77, 0.25);
}

.step-number {
    position: absolute;
    top: 18px;
    left: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.08);
    font-size: 3.2rem;
}

.step-icon {
    background: #FFD84D;
    color: #111;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    margin: 0 auto 25px auto;
    box-shadow: 0 4px 10px rgba(255, 216, 77, 0.25);
}

.step-card h3 {
    font-size: 1.25rem;
    color: #FFD84D;
    margin-bottom: 12px;
    font-weight: 600;
}

.step-card p {
    color: #d5d5d5;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- BOUTON CONTACT --- */
.steps-contact {
    margin-top: 70px;
}

.contact-btn {
    background: #FFD84D;
    color: #111;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #111;
    color: #FFD84D;
    box-shadow: 0 0 20px rgba(255, 216, 77, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .steps-grid {
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .steps-title {
        font-size: 2rem;
    }
    .step-card {
        padding: 40px 25px;
    }
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
}

.wave2 {
    margin-top: -12rem; /* remonte la section suivante */
}

.free-audit {
    background: #0b0b0b;
    color: #f1f1f1;
    padding: 100px 40px;
    font-family: 'Poppins', sans-serif;
}

.audit-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.audit-text {
    flex: 1;
    min-width: 320px;
}

.audit-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD84D;
    margin-bottom: 15px;
}

.audit-text p {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.audit-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.audit-text ul li {
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.audit-text ul li i {
    color: #FFD84D;
    margin-right: 10px;
    font-size: 1.1rem;
}

.audit-btn {
    background: #FFD84D;
    color: #111;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.audit-btn:hover {
    background: #111;
    color: #FFD84D;
    box-shadow: 0 0 15px rgba(255, 216, 77, 0.4);
}

/* FORMULAIRE */
.audit-form {
    flex: 1;
    background: #111;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    min-width: 350px;
}

.audit-form h3 {
    color: #FFD84D;
    margin-bottom: 25px;
    text-align: center;
}

.audit-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.audit-form input,
.audit-form textarea {
    background: #1a1a1a;
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.audit-form input:focus,
.audit-form textarea:focus {
    border: 1px solid #FFD84D;
    box-shadow: 0 0 8px rgba(255, 216, 77, 0.4);
}

.audit-form button {
    background: #FFD84D;
    color: #111;
    font-weight: 600;
    padding: 12px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.audit-form button:hover {
    background: #111;
    color: #FFD84D;
    box-shadow: 0 0 15px rgba(255, 216, 77, 0.5);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .audit-container {
        flex-direction: column;
        gap: 50px;
    }

    .audit-text {
        text-align: center;
    }

    .audit-form {
        width: 100%;
        max-width: 500px;
    }
}

.contact-section-white {
    background-color: #fff;
    color: #111;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
    line-height: 1.2;
}

.contact-title span {
    color: #efc500;
}

.contact-text p {
    color: #444;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-text strong {
    color: #000;
    font-weight: 600;
}

.highlight {
    color: #efc500;
    font-weight: 600;
}

.cta-contact {
    margin-top: 40px;
}

.cta-btn {
    background-color: #efc500;
    color: #111;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(239, 197, 0, 0.3);
}

.cta-btn:hover {
    background-color: #111;
    color: #efc500;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(239, 197, 0, 0.5);
}

/** BTN CAHIER DES CHARGES **/

.btn-continue {
    /* Couleurs de base */
    background-color: #efc500; /* Couleur principale (jaune doré) */
    color: #111;              /* Texte foncé pour le contraste */

    /* Typographie */
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; /* Police moderne et lisible */
    font-weight: 600;         /* Semi-bold pour l'importance */
    font-size: 1.05rem;       /* Légèrement plus grand pour la lisibilité */
    line-height: 1;           /* Assure une hauteur de ligne compacte */

    /* Espacement et forme */
    padding: 14px 30px;       /* Remplissage généreux pour un clic facile */
    border-radius: 8px;       /* Bords légèrement arrondis, plus "pro" que le 50px */
    border: 2px solid #efc500; /* Bordure assortie pour la cohérence */
    text-decoration: none;    /* Pas de soulignement */
    display: inline-flex;     /* Permet un alignement vertical facile des icônes/texte */
    align-items: center;      /* Centre le contenu verticalement */
    justify-content: center;  /* Centre le contenu horizontalement */
    cursor: pointer;          /* Indique que c'est cliquable */

    /* Ombres et transitions pour le professionnalisme */
    box-shadow: 0 4px 12px rgba(239, 197, 0, 0.25); /* Ombre douce et élégante */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Transition fluide et professionnelle */

    /* Assure que le bouton reste sur une seule ligne */
    white-space: nowrap;
}

.btn-continue:hover {
    background-color: #111;    /* Fond noir au survol */
    color: #efc500;            /* Texte jaune doré au survol */
    border-color: #111;        /* Bordure noire au survol pour un look monolithique */
    transform: translateY(-2px); /* Léger soulèvement pour un effet "pop" subtil */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35); /* Ombre plus prononcée et plus foncée */
}

.btn-continue:active {
    transform: translateY(0);  /* Retour à la position normale quand cliqué */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Ombre légère pour l'état actif */
    background-color: #222;    /* Un noir légèrement plus clair au clic */
    color: #efc500;
}

/* Optionnel: pour ajouter une icône de flèche ou autre */
.btn-continue::after {
    content: '→'; /* Flèche unicode */
    margin-left: 10px;
    font-size: 1.2rem; /* Légèrement plus grande pour la visibilité */
    transition: margin-left 0.3s ease;
}

.btn-continue:hover::after {
    margin-left: 15px; /* Déplace la flèche un peu plus loin au survol */
}

/* Style pour un bouton désactivé, si nécessaire */
.btn-continue:disabled {
    background-color: #e0e0e0; /* Gris clair */
    color: #a0a0a0;            /* Texte gris */
    border-color: #e0e0e0;
    cursor: not-allowed;       /* Curseur "interdit" */
    box-shadow: none;
    transform: none;
    opacity: 0.7;
}

/* --- Responsive Adjustments --- */

/* Pour les petits écrans (smartphones en mode portrait, ex: < 576px) */
@media (max-width: 575.98px) {
    .btn-continue {
        /* Légèrement réduire la taille de la police pour éviter le débordement sur de très petits écrans */
        font-size: 0.95rem;
        /* Ajuster le padding si nécessaire, souvent un peu moins horizontalement */
        padding: 12px 25px;
        /* Si le bouton doit occuper toute la largeur sur mobile */
        width: 100%;
        display: flex; /* Utiliser flex pour centrer facilement le contenu sur toute la largeur */
    }

    .btn-continue::after {
        font-size: 1.1rem; /* Ajuster la taille de la flèche aussi */
        margin-left: 8px;  /* Réduire l'espace si le bouton est plus petit */
    }
}

/* Pour les écrans de taille moyenne (smartphones en mode paysage, tablettes, ex: 576px - 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .btn-continue {
        /* Garder la taille de police et padding par défaut ou très léger ajustement */
        font-size: 1rem;
        padding: 13px 28px;
    }
    .btn-continue::after {
        font-size: 1.15rem;
    }
}

/* Pour les écrans plus larges (tablettes en mode paysage, petits ordinateurs portables, ex: 768px - 991.98px) */
/* Souvent, les styles par défaut sont déjà bons ici */
@media (min-width: 768px) and (max-width: 991.98px) {
    /* Pas de changement majeur nécessaire, les styles par défaut devraient bien fonctionner */
    .btn-continue {
        font-size: 1.05rem; /* Revenir à la taille par défaut si ajustée précédemment */
    }
}

/* Pour les très grands écrans (ordinateurs de bureau, ex: > 1200px) */
/* Si tu souhaites un bouton légèrement plus grand pour un impact maximal sur grand écran */
@media (min-width: 1200px) {
    .btn-continue {
        /* Tu pourrais augmenter légèrement la taille si tu le souhaites, mais 1.05rem est déjà bon */
        font-size: 1.1rem;
        padding: 16px 38px;
    }
    .btn-continue::after {
        font-size: 1.3rem;
        margin-left: 12px;
    }
}

/* Animation subtile */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-container {
    animation: fadeInUp 1.3s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-title {
        font-size: 1.9rem;
    }

    .contact-text p {
        font-size: 0.95rem;
    }

    .cta-btn {
        width: 100%;
        font-size: 0.95rem;
    }
}


