*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: rgb(24, 23, 23);
}

h1{
    font-family: "Spline Sans", sans-serif;
}

h2{
    font-family: "Spline Sans", sans-serif;
}

h3{
    font-family: "Spline Sans", sans-serif;
}

p{
    font-family: 'Roboto', sans-serif;
}

                    /*NAVIGATION*/

nav a img{
    width: 300px ;
    transition: 0.5s;
    position:fixed;
    top: 0px;
    left: 20px;

}

nav.sticky a img{
    width: 150px;
    left : 50%;
    transform: translateX(-50%);
    top : 10px;
}

@media screen and (max-width:1315px){
    nav.sticky a img{
        width: 200px ;
    transition: 0.5s;
    position:fixed;
    top: 0px;
    left: 100px;
    }

}

@media screen and (max-width:1315px){
    nav.sticky a img{
      width: 150px;
    left : 50%;
    transform: translateX(-50%);
    top : 10px;
    }

}




nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.6s;
    padding: 5px 50px;
    z-index: 1000;
    background-image: url(image/texture3.png);
    height: 160px;
}

nav.sticky{
    padding: 5px 100px;
    height: 110px;
}


nav .logo{
    position: relative;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.6s ;
}

nav ul{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li{
    position : relative;
    list-style: none;
    
}

nav ul li a{
    position : relative;
    text-align: center;
    margin : 0 15px;
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-family: "Spline Sans", sans-serif;
    font-size: 18px ;
    letter-spacing: 2px;
    font-weight: 500;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}




nav.sticky ul li a{
    color: rgb(255, 255, 255);
    font-size: 16px;
}



nav ul li div{
    margin-top: 13px;
    height: 2px;
    width: 0%;
    background-color: rgb(255, 255, 255);
    transition: 0.5s;
}

nav ul li:hover div{
    width: 80%;
}

nav.sticky ul li div{
    background-color: rgb(255, 255, 255);
}

nav.sticky ul li:hover div{
    width: 80%;
}





            /*PRE GESTION HAMBUGER
*/

.des-nav{
    z-index: 2000;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    cursor: pointer;
    z-index: 9999;

    transition: all 0.4s ease; /* lisse tout changement éventuel */
}


.hamburger-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    right: 25px;       
    top: 50%;          
    transform: translateY(-50%); 
    z-index: 2100;
    padding: 0;
}



.hamburger-wrapper.sticky {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 6px 10px;   /* englobe texte + barres */
    border-radius: 4px;
}

/* texte "Menu" */
.hamburger-text {
    font-size: 10px;
    font-weight: 100;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 4px; /* espace entre texte et barres */
}

.hamburger span{
    display: block;
    width: 30px;
    height: 4px;
    background: white;
    margin: 6px 0;
    transition: transform 0.4s ease, opacity 0.3s ease;
    transform-origin: center;
}


.ham-nav{
    position: fixed;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    width:30%;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    right: -500px;
    left: auto;
    transition: right 1s ease-in-out ; /*transition pour fluidifier l'apparition du menu*/
    z-index: 1500;

    background-image: url('image/texture3\ -\ verticale.png');
}

.ham-nav ul{
    flex-direction: column;
    gap : 30px;
}

.change{ /*modifie le left onClick*/
    right:0;
}

.sticky .hamburger{
    color: white;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 3px;
    padding-bottom: 3px;
    border-radius: 15%;
}


.hamburger.active span:nth-child(1){
    transform: rotate(45deg) translate(6px, 6px);
}

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

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

#overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    
    opacity: 0;
    pointer-events: none;
    
    transition: 0.4s ease;
    z-index: 4;
}

/* quand actif */
#overlay.active{
    opacity: 1;
    pointer-events: all;
}

body.menu-open {
    overflow: hidden;  /* bloque scroll vertical et horizontal */
    height: 100%;
}



.padding-bandeau{
    height: 160px;
}



.background-slider{
    position: relative;
    height: 800px;
    overflow : hidden;
    display: flex;
    flex-direction: row;
}

main.sticky-main {
    transform: translateY(-50px);
}

main {
    transition: top 1s ease;
}

@media (min-width: 800px) {
    nav.sticky a img {
        width: 150px;
        left: auto;       /* annule le centrage */
        left: 120px;     /* distance du bord droit (ajuste si besoin) */
        transform: none;  /* enlève le translate */
        top: 10px;
    }
}

/*.rond-presentation{
    width: 300%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 6;
    border-radius: 50%;
    height: 150%;
    position: relative;
    top : -200px;
    left : -300px;
    backdrop-filter: blur(5px);
}*/

.presentation-mobile {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 770px) {

    /* ON CACHE LE GROS BLOC */
    .rond-presentation {
        display: none !important;
    }

    .background-slider{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* ON AFFICHE LE NOUVEAU */
    .presentation-mobile {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 3;
        width: 80%;

        margin: 40px 20px;
        padding: 30px 20px;

        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(8px);

        border-radius: 20px;
        border: 1px solid rgba(255, 215, 0, 0.2);

        text-align: center;
        color: white;

        box-shadow:
            0 0 15px rgba(255, 215, 0, 0.1),
            0 10px 30px rgba(0,0,0,0.7);
    }

    /* TITRE */
    .presentation-mobile h1 {
        font-size: 48px;
        margin-bottom: 15px;
        font-family: "Spline Sans", sans-serif;
    }

    .presentation-mobile h1 span {
        color: #ffd700;
    }

    /* SOUS TITRE */
    .presentation-mobile h2 {
        font-size: 32px;
        margin-bottom: 25px;
        color: #ccc;
    }

    /* LISTE */
    .mobile-list {
        list-style: none;
        padding: 0;
        margin-bottom: 25px;
        font-family: 'Roboto', sans-serif;
    }

    .mobile-list li {
        margin-bottom: 10px;
        font-size: 22px;
    }

    /* TEXTE FINAL */
    .mobile-highlight {
        font-weight: bold;
        font-size: 22px;
    }

    .mobile-highlight span {
        color: #ffd700;
    }
}

/********/

.rond-presentation {
    position: absolute;

    width: 120%;
    height: 170%;

    left: -63%;
    top: -35%;

    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 60% 40% 50% 70% / 60% 50% 70% 40%;

    backdrop-filter: blur(5px);
    z-index: 6;

    border: 3px solid rgba(242, 203, 7, 0.6);
    box-shadow: 0 0 30px rgba(248, 183, 3, 0.2);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap : 100px;
    transition: 1s all ease-in;

        box-sizing: border-box;   /* inclut le padding dans la taille */
        padding: 550px;            /* espace intérieur pour le contenu */
}

@media screen and (max-width:915px){
    .rond-presentation{
        left: -45%;
    }

}





.texte-presentation{
    position : absolute;
    color : white;
    left : 58%;
    display: flex;
    flex-direction: column;
    gap : 14px;
    margin-top: -30px;
    margin-left: -50px;
}

@media screen and (max-width:915px){
    .texte-presentation{
        margin-left: -170px;
    }

}

@media screen and (max-width:915px){
    .texte-presentation{
        margin-left: -250px;
    }

}





.texte-presentation h1{
    text-align: center;
    margin-bottom: 35px;
    font-size: 68px;
    font-family: "Spline Sans", sans-serif;
}

.texte-presentation h2{
    text-align: center;
    font-size: 40px;
    font-family: "Spline Sans", sans-serif;
}

.texte-presentation h1 span{
    color: rgb(242, 203, 7);
}

.item-presentation{
    font-size: 26px;
    font-family: 'Roboto', sans-serif;
}

.item-presentation span{
    font-size: 42px;
}

.last-item-presentation{
    margin-top: 30px;
    font-weight: 900;
    width: 80%;
    text-align: center;
}

.last-item-presentation span{
    color: rgb(242, 203, 7);
    font-size: 26px;
}












            /**NAV RESPONSIVE*
*/

/*La barre*/

@media screen and (max-width:995px){
    nav{
        padding: 10px 50px;
    }
    
    nav.sticky{
        padding: 5px 50px;
    }

}

@media screen and (max-width:895px){
    nav{
        padding: 10px 20px;
    }
    
    nav.sticky{
        padding: 5px 20px;
    }
}

/*Hamburger*/

@media screen and (max-width:800px){
    .des-nav ul { /*retire le menu initial*/
        display: none;
    }

    .hamburger{ /*ajoute l'hamberger*/
        display: block;
    }

    nav.sticky{
        padding: 5px 100px;
        background: rgba(0, 0, 0, 0);
    }

   nav a img {
        left: 50%;                /* centre horizontal */
        transform: translateX(-50%); /* recentre parfaitement */
        top: 10px;                /* ajuste la distance du haut si besoin */
        width: 150px;             /* ajuste la taille pour mobile */
        transition: 0.5s all ease; /* transition fluide */
    }

}


@media screen and (min-width:800px){ /*retirer le nav alternatif si la fenetre s'agrandie*/
    .hamburger-wrapper{
        display: none;
    }

    nav a img{
        width: 200px;
    }
}

@media screen and (min-width:800px){
    .ham-nav{
        display: none;
    }
}


/*.carte-flotante{
    position: absolute;
    top: 120px;
    right: 15%;
    width: 350px;
    height: 500px;
    background-color: white;
    z-index: 9999;
    box-shadow:   0 4px 10px rgba(0, 0, 0, 0.4),
                    0 10px 25px rgba(0, 0, 0, 0.6),
                    0 20px 40px rgba(0, 0, 0, 0.3);
    border: 25px solid rgb(248, 89, 9);
}

.accroche-flotante{
    background-color: rgb(242, 148, 7) ;
    height: 150px;
    font-family: "Chango", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 48px;
    text-align: center;
    color: white;
    -webkit-text-stroke: 1px black;
     text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}*/

/* Fond glass */

.carte-flotante {
    position: absolute;
    top: 120px;
    right: 15%;
    width: 350px;
    height: 500px;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    background: rgba(10, 10, 10, 0.85);
    border-radius: 20px;

    border: 1px solid rgba(255, 215, 0, 0.15);

    box-shadow:
        0 0 10px rgba(255, 215, 0, 0.15),
        0 0 30px rgba(255, 215, 0, 0.08),
        0 10px 40px rgba(0, 0, 0, 0.9);

    z-index: 9999;

    animation: float 4s ease-in-out infinite;
}

@media (max-width: 1300px) {
    .carte-flotante {
        right: 50px; /* distance fixe du bord droit */
    }
}

@media (max-width: 950px) {
    .carte-flotante {
        right: 10px; /* distance fixe du bord droit */
    }
}

@media (max-width: 915px) {
    .carte-flotante {
        display: none;
    }
}


/* HEADER */
.accroche-flotante {
    height: 150px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: "Chango", sans-serif;
    font-size: 40px;
    text-align: center;

    color: #ffd700;

    border-radius: 20px 20px 0 0;

    background: linear-gradient(135deg, #111, #1a1a1a);

    box-shadow:
        0 0 10px rgba(255, 215, 0, 0.4),
        0 0 25px rgba(255, 215, 0, 0.2);

    -webkit-text-stroke: 1px black;

    animation: neonPulse 2.5s ease-in-out infinite alternate;
}


/* TEXTE HEADER */
.accroche-flotante p {
    text-shadow:
        0 0 5px #ffd700,
        0 0 15px rgba(255, 215, 0, 0.8);
}


/* CONTENU */
.contenu-carte {
    padding: 25px;
    color: #eee;
    font-family: 'Roboto', sans-serif;
}


/* TITRE */
.contenu-carte h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 22px;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;

    color: #ffd700;

    text-shadow:
        0 0 5px rgba(255, 215, 0, 0.7);
}


/* ITEMS */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 12px;
    margin-bottom: 15px;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.03);

    transition: 0.3s;
    font-family: 'Roboto', sans-serif;
}


/* HOVER */
.contact-item:hover {
    background: rgba(255, 215, 0, 0.08);
    transform: translateX(5px);

    box-shadow:
        0 0 10px rgba(255, 215, 0, 0.3),
        0 0 20px rgba(255, 215, 0, 0.15);
}


/* ICONES */
.contact-item span {
    font-size: 22px;
    color: #ffd700;

    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6));
}


/* TEXTE */
.contact-item p {
    margin: 0;
    font-size: 16px;
    color: #ddd;
}


/* CTA */
.cta-fin {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;

    padding: 10px;

    border-top: 1px solid rgba(255,255,255,0.08);

    color: #ffd700;

    text-shadow:
        0 0 5px rgba(255, 215, 0, 0.8);

    animation: pulseText 2s infinite alternate;
}


/* ANIMATIONS */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes neonPulse {
    from {
        box-shadow:
            0 0 5px rgba(255, 215, 0, 0.3),
            0 0 15px rgba(255, 215, 0, 0.2);
    }
    to {
        box-shadow:
            0 0 20px rgba(255, 215, 0, 0.6),
            0 0 40px rgba(255, 215, 0, 0.3);
    }
}

@keyframes pulseText {
    from {
        opacity: 0.7;
        transform: scale(1);
    }
    to {
        opacity: 1;
        transform: scale(1.05);
    }
}

/***********************/

.engagements {
    background: #0a0a0a;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.engagements h2 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #ffd700;

    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.subtitle {
    color: #bbb;
    margin-bottom: 60px;
    font-size: 18px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: auto;
}

/* CARTES */
.card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 20px;
    border-radius: 15px;

    border: 1px solid rgba(255, 215, 0, 0.1);

    transition: 0.3s;
    position: relative;
}

/* ICONES */
.card span {
    font-size: 30px;
    display: block;
    margin-bottom: 15px;

    color: #ffd700;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6));
}

/* TITRES */
.card h3 {
    margin-bottom: 10px;
    color: #ffd700;
    letter-spacing: 1px;
}

/* TEXTE */
.card p {
    font-size: 15px;
    color: #ccc;
}

/* HOVER */
.card:hover {
    transform: translateY(-8px);

    border: 1px solid rgba(255, 215, 0, 0.3);

    box-shadow:
        0 0 15px rgba(255, 215, 0, 0.2),
        0 0 40px rgba(255, 215, 0, 0.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

/**********************/

.processus {
    background: #050505;
    padding: 120px 20px;
    color: white;
    text-align: center;
}

.processus h2 {
    font-size: 42px;
    color: #ffd700;
    margin-bottom: 10px;
}

.subtitle {
    color: #bbb;
    margin-bottom: 80px;
}


/* TIMELINE */
.timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
}

/* ligne centrale */
.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(255, 215, 0, 0.3);
    transform: translateX(-50%);
}


/* ITEM */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: 0.6s ease;
}

/* gauche */
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

/* droite */
.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}


/* CONTENU */
.content {
    background: rgba(255,255,255,0.03);
    padding: 25px;
    border-radius: 12px;

    border: 1px solid rgba(255,215,0,0.1);
}

/* TITRE */
.content h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

/* TEXTE */
.content p {
    color: #ccc;
    font-size: 15px;
}


/* POINT SUR LA LIGNE */
.timeline-item::before {
    content: "";
    position: absolute;
    top: 30px;
    width: 12px;
    height: 12px;
    background: #ffd700;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffd700;
}

/* position point */
.timeline-item:nth-child(odd)::before {
    right: -6px;
}

.timeline-item:nth-child(even)::before {
    left: -6px;
}


/* ANIMATION ACTIVE */
.timeline-item.active {
    opacity: 1;
    transform: translateY(0);
}


/* RESPONSIVE */
@media (max-width: 768px) {

    .timeline::before {
        left: 10px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 40px;
        text-align: left;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item::before {
        left: 4px;
    }
}

/********************************/

.types-debarras {
    background: radial-gradient(circle at top, #111, #050505);
    padding: 120px 20px;
    text-align: center;
    color: white;
}

.types-debarras h2 {
    font-size: 42px;
    color: #ffd700;
    margin-bottom: 10px;

    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.subtitle {
    color: #aaa;
    margin-bottom: 70px;
    font-size: 18px;
}


/* GRID */
.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}


/* CARTE */
.type-card {
    background: rgba(255,255,255,0.03);
    padding: 35px 25px;
    border-radius: 18px;

    border: 1px solid rgba(255,215,0,0.1);

    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}


/* ICON */
.type-card .icon {
    font-size: 40px;
    margin-bottom: 20px;

    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}


/* TITRE */
.type-card h3 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 20px;
}


/* TEXTE */
.type-card p {
    color: #ccc;
    font-size: 15px;
}


/* HOVER EFFET */
.type-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,215,0,0.2),
        transparent
    );

    transition: 0.5s;
}

.type-card:hover::before {
    left: 100%;
}

.type-card:hover {
    transform: translateY(-10px) scale(1.02);

    border: 1px solid rgba(255,215,0,0.4);

    box-shadow:
        0 0 20px rgba(255,215,0,0.2),
        0 0 50px rgba(255,215,0,0.1);
}


/* CARTE SPECIALE */
.highlight {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);

    border: 1px solid rgba(255,215,0,0.3);

    box-shadow:
        0 0 25px rgba(255,215,0,0.2);
}


/* RESPONSIVE */
@media (max-width: 900px) {
    .types-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

/*******************************************/

.prix-narratif {
  background: #050505;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.prix-narratif h2 {
  font-size: 42px;
  color: #ffd700;
  margin-bottom: 10px;
  text-shadow: 0 0 15px rgba(255,215,0,0.4);
}

.subtitle {
  color: #aaa;
  margin-bottom: 70px;
  font-size: 18px;
}

.timeline-prix {
  position: relative;
  max-width: 800px;
  margin: auto;
  padding-left: 40px;
}

/* ligne verticale centrale */
.timeline-prix::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 4px;
  height: 100%;
  background: rgba(255,215,0,0.3);
}

/* chaque étape */
.timeline-step {
  position: relative;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

/* point sur la ligne */
.timeline-step::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffd700;
  box-shadow: 0 0 10px #ffd700;
}

/* numéro */
.step-number {
  position: absolute;
  left: -10px;
  top: -6px;
  font-weight: bold;
  color: #050505;
  background: #ffd700;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  line-height: 28px;
  font-size: 14px;
}

/* contenu */
.step-content {
  margin-left: 50px;
  text-align: left;
}

.step-content h3 {
  color: #ffd700;
  margin-bottom: 5px;
}

.step-content p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.5;
}

.conclusion {
  margin-top: 60px;
  font-size: 18px;
  color: #ffd700;
  text-shadow: 0 0 8px rgba(255,215,0,0.4);
}

/* ANIMATION AU SCROLL */
.timeline-step.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .timeline-prix {
    padding-left: 20px;
  }
  .step-content {
    margin-left: 40px;
  }
}


/**********************/


.situations-difficiles {
    position: relative;
    background: linear-gradient(135deg, #111 0%, #050505 100%);
    color: white;
    padding: 120px 20px;
    overflow: hidden;
}

/* TITRE PRINCIPAL */
.situations-difficiles h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    color: #ffd700;
    /*text-shadow:
        0 0 8px #ffd700,
        0 0 20px rgba(255, 215, 0, 0.7),
        0 0 40px rgba(255, 215, 0, 0.4);
    animation: neonPulse 2s ease-in-out infinite alternate;*/
}

/* SOUS-TITRE */
.situations-difficiles .subtitle {
    text-align: center;
    margin-bottom: 60px;
    color: #ccc;
    font-size: 18px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* GRID */
.situations-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* CARTES */
.situation {
    position: relative;
    flex: 1 1 300px;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    border: 1px solid rgba(255,215,0,0.1);
    box-shadow:
        0 0 10px rgba(255,215,0,0.1),
        0 10px 30px rgba(0,0,0,0.7);
}

/* HOVER SUR LES CARTES */
.situation:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow:
        0 0 20px rgba(255,215,0,0.3),
        0 10px 40px rgba(0,0,0,0.8);
}

/* TEXTE SUR LES CARTES */
.situation .text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    padding: 25px 20px;
    transition: transform 0.4s ease, background 0.4s ease;
}

.situation:hover .text {
    transform: translateY(-10px);
    background: rgba(0,0,0,0.85);
}

.situation h3 {
    margin: 0 0 5px;
    font-size: 24px;
    color: #ffd700;
    text-shadow:
        0 0 5px #ffd700,
        0 0 15px rgba(255,215,0,0.6);
}

.situation p {
    margin: 0;
    font-size: 14px;
    color: #eee;
}

/* ANIMATION NEON PULSE */
@keyframes neonPulse {
    from {
        text-shadow:
            0 0 5px rgba(255, 215, 0, 0.5),
            0 0 15px rgba(255, 215, 0, 0.4),
            0 0 30px rgba(255, 215, 0, 0.2);
    }
    to {
        text-shadow:
            0 0 15px rgba(255, 215, 0, 0.9),
            0 0 30px rgba(255, 215, 0, 0.6),
            0 0 60px rgba(255, 215, 0, 0.3);
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .situations-grid {
        flex-direction: column;
        align-items: center;
    }
    .situation {
        width: 80%;
        height: 350px;
    }
}

/*****************************/

.cta-contact {
    background: radial-gradient(circle at top, #111, #050505);
    padding: 120px 20px;
    text-align: center;
    color: white;
}

/* TITRE */
.cta-contact h2 {
    font-size: 42px;
    color: #ffd700;
    margin-bottom: 10px;

    text-shadow:
        0 0 10px rgba(255,215,0,0.6),
        0 0 25px rgba(255,215,0,0.4);
}

/* SUBTITLE */
.cta-contact .subtitle {
    color: #bbb;
    margin-bottom: 60px;
    font-size: 18px;
}

/* CONTAINER */
.cta-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* CARTES */
.cta-card {
    width: 300px;
    padding: 35px 25px;
    border-radius: 20px;

    text-decoration: none;
    color: white;

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,215,0,0.1);

    backdrop-filter: blur(10px);

    transition: all 0.3s ease;
    position: relative;
}

/* ICON */
.cta-card .icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;

    color: #ffd700;
    filter: drop-shadow(0 0 8px rgba(255,215,0,0.6));
}

/* TITRE */
.cta-card h3 {
    margin-bottom: 10px;
    color: #ffd700;
}

/* TEXTE */
.cta-card p {
    color: #ccc;
    margin-bottom: 20px;
}

/* BOUTON */
.cta-btn {
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;

    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #000;
    font-weight: bold;

    transition: 0.3s;
}

/* HOVER */
.cta-card:hover {
    transform: translateY(-8px) scale(1.03);

    border: 1px solid rgba(255,215,0,0.4);

    box-shadow:
        0 0 20px rgba(255,215,0,0.2),
        0 0 50px rgba(255,215,0,0.1);
}

.cta-card:hover .cta-btn {
    background: linear-gradient(135deg, #fff, #ffd700);
}

/* CARTE HIGHLIGHT (WhatsApp) */
.cta-card.highlight {
    border: 1px solid rgba(255,215,0,0.4);

    box-shadow:
        0 0 25px rgba(255,215,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .cta-container {
        flex-direction: column;
        align-items: center;
    }

    .cta-card {
        width: 90%;
        max-width: 350px;
    }
}


/*************************************/

.avis {
    background: #050505;
    padding: 120px 20px;
    text-align: center;
    color: white;
    overflow: hidden;
}

.avis h2 {
    font-size: 42px;
    color: #ffd700;
    margin-bottom: 80px;
}

/* CONTAINER */
.slider {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.slider-container {
    position: relative;
    height: 320px;
}

/* TRACK */
.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

/* SLIDES */
.slide {
    position: absolute;
    top: 0;
    left: 50%;
    width: 60%;
    transform: translateX(-50%) scale(0.6);
    opacity: 0;
    transition: all 0.6s ease;
}

/* ACTIVE (centre) */
.slide.active {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    z-index: 3;
}

/* GAUCHE */
.slide.prev {
    transform: translateX(-140%) scale(0.75);
    opacity: 0.6;
    z-index: 2;
}

/* DROITE */
.slide.next {
    transform: translateX(40%) scale(0.75);
    opacity: 0.6;
    z-index: 2;
}

/* PLUS LOIN (effet profondeur) */
.slide.prev2 {
    transform: translateX(-220%) scale(0.5);
    opacity: 0.2;
}

.slide.next2 {
    transform: translateX(120%) scale(0.5);
    opacity: 0.2;
}

/* CARD */
.card {
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,215,0,0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

/* HEADER */
.top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.top img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ffd700;
}

.stars {
    color: #ffd700;
}

/* FLÈCHES */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    border: none;
    color: #ffd700;
    font-size: 30px;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.prev { left: -60px; }
.next { right: -60px; }

@media (max-width: 1100px) {
    .prev {
        left: 10px;   /* au lieu de -60px */
    }

    .next {
        right: 10px;  /* au lieu de -60px */
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .slide {
        position: absolute;
        width: 90%;
    }

    .slide.prev,
    .slide.next,
    .slide.prev2,
    .slide.next2 {
        display: none;
    }

    .prev { left: 10px; }
    .next { right: 10px; }

}

/***************************/

.footer-pro {
    background: #030303;
    color: white;
    padding: 80px 20px 30px;
    border-top: 1px solid rgba(255,215,0,0.15);
}

/* GRID */
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

/* TITRES */
.footer-pro h3 {
    font-size: 22px;
    color: #ffd700;
    margin-bottom: 15px;
}

.footer-pro h4 {
    font-size: 16px;
    color: #ffd700;
    margin-bottom: 15px;
}

/* TEXTES */
.footer-pro p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
}

/* CONTACT */
.footer-contact {
    margin-top: 15px;
}

.footer-contact a {
    color: #ffd700;
    text-decoration: none;
}

/* LISTES */
.footer-pro ul {
    list-style: none;
}

.footer-pro ul li {
    margin-bottom: 8px;
}

.footer-pro ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

/*.footer-pro ul li a:hover {
    color: #ffd700;
    transform: translateX(3px);
}*/

/* SOCIAL */
.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-social a {
    font-size: 20px;
    color: #ffd700;
    transition: 0.3s;
}

.footer-social a:hover {
    transform: scale(1.3);
    text-shadow: 0 0 10px #ffd700;
}

/* BAS */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: #777;
}

/* RESPONSIVE */


@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        justify-content: center;
        max-width: 600px;
        margin: auto;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr; /* 👈 prend bien le dessus */
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

footer a {
    cursor : default;
    font-family: 'Roboto', sans-serif;
}

footer h4{
    font-family: "Spline Sans", sans-serif;
}

footer img {
    width: 40px;
    cursor: pointer;
}

.nav-rapide a{
    cursor: pointer;
}

.nav-rapide a:hover{
    color: #ffd700;
    transform: translateX(3px);
}

.phone-link {
    position: absolute;
    left: 50px; /* à ajuster selon ton bouton menu */
    top: 50%;
    transform: translateY(-50%);
    
    font-size: 32px;
    text-decoration: none;


    z-index: 2100;

    transition: 0.3s;

        color: #ffd700;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.phone-link:hover {
    transform: translateY(-50%) scale(1.2);
}

@media screen and (min-width: 800px){
    .phone-link {
        display: none;
    }
}

.icon img{
    width: 40px;
    margin: 0px;
    padding: 0px;
    scale: 1.5;
}

.contenu-carte a{
    text-decoration: none;
}