*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* --------    Container Enzo Max 2560px     -------- */

global-container {

    max-width: 2560px;
    margin: 0 auto;
}

/* --------    GÃ©nÃ©ral Hors responsive     -------- */

body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

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

img {
    max-width: 100%;
}

a {
    transition: 0.5s;
    color: #33f;
    text-decoration: none;
}

a:hover {
    color: #FF4A9E;
}
/* Tous les liens dans TOUS les paragraphes */
p a {
  color: #6D7C90;
  text-decoration: underline;
}

/* Liens au survol dans les paragraphes */
p a:hover {
  color: #33f;
}

ol, ul {
    list-style: none;
}

strong {
    font-weight: normal;
}

h1 {
    font-size: 2rem;
    line-height: 2.4rem;
    font-weight: 800;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

h2, h3 {
    font-size: 2rem;
    line-height: 2.4rem;
    font-weight: 800;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.paris-section-2 h3, .paris-section-6 h3, .page2-section-3 h3, .page2-section-4 h3, .page2-section-5 h3{
font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
}

p {
    font-size: 1.125rem;
    line-height: 1.5rem;
    color: #6D7C90;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 1.2rem;

}

.centre {
    text-align: center;
}

.rose-petant {
    color: #FF4A9E;
}

.bleu-petant {
    color: #33F;
}

.rose-pale {
    color: #F9A4D0;
}

.bleu-pale {
    color: #6797FF;
}
.violet-pale {
    color : #8d50e5; 
}

.noir {
    color: #000;
}

/* --------    GÃ©nÃ©ral Hors responsive Ã  partir de 768px-------- */

@media screen and (min-width:48em) {
    h1 {
        margin-bottom: 2rem;
    }

    h2, h3 {
        margin-bottom: 2rem;
    }

    p {
        margin-bottom: 1.5rem;

    }

}

/* --------    GÃ©nÃ©ral Hors responsive Ã  partir de 992px-------- */

@media screen and (min-width:62em) {
    h1 {
        font-size: 2.8rem;
        line-height: 3.2rem;
    }

    h2, h3 {
        font-size: 2.2rem;
        line-height: 2.8rem;
    }
}

/* ------- GÃ©nÃ©ral Hors responsive Ã  partir de 1200px --------*/
@media screen and (min-width:75em) {
    h1 {
        font-size: 3.4rem;
        line-height: 3.8rem;
    }

    h2, h3 {
        font-size: 2.8rem;
        line-height: 3.4rem;
    }
        p {
        margin-bottom: 2rem;
        font-size: 1.25rem;
        line-height: 1.55rem;

    }
}


/* ------- GÃ©nÃ©ral Hors responsive  Ã  partir de 1480px --------*/
@media screen and (min-width:92.5em) {

    h1 {
        font-size: 4rem;
        line-height: 4.4rem;
        margin-bottom: 2.5rem;

    }

    h2, h3 {
        font-size: 3.2rem;
        line-height: 3.8rem;
        margin-bottom: 2.5rem;
    }
}

/* ------- GÃ©nÃ©ral Hors responsive  Ã  partir de 2112px --------*/
@media screen and (min-width:132em) {

    h1 {
        margin-bottom: 3.5rem;
    }

    h2, h3 {
        margin-bottom: 3.5rem;
    }

    p {
        margin-bottom: 2.5rem;
    }
}







/* --------    Body-Header     -------- */


body.menu-open {
    overflow: hidden;
}

/* Focus visible pour l'accessibilité */
a:focus-visible, 
button:focus-visible {
    outline: 3px solid #33F;
    outline-offset: 3px;
    border-radius: 2px;
}

/* Masquer l'outline au clic de souris (seulement clavier) */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

/* Skip link pour l'accessibilité */
.skip-link {
    position: absolute;
    top: -100px;
    left: 10px;
    background: #33F;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    z-index: 1000;
    font-weight: 600;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 10px;
}

header {
    background-color: transparent;
    z-index: 200;
    width: 100%;
}




/* -------- HEADER Ã  partir de 992px -------- */
@media screen and (min-width:62em) {
    header {
        background-color: transparent;
        transition: 2s;
        height: 120px;
    }

    header.fix-white {

        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        color: #000;
    }
}








/* -------- MENU dans la boite du header  --------*/

/* Overlay pour le menu mobile */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

button {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;

}

button:focus {
    outline: none;
}

#icon-nav {
    width: 60px;
    height: 60px;
    position: fixed;
    z-index: 300;
    background-color: #33F;
    right: 0;
    top: 0;
    transition: background-color 0.2s ease;
}

#icon-nav:hover {
    background-color: #2929CC;
}

#icon-nav:focus-visible {
    outline: 3px solid #FF4A9E;
    outline-offset: -3px;
}

#icon-nav span {
    position: absolute;
    height: 2px;
    width: 30px;
    background-color: #FFF;
    left: 15px;
    transition: all 0.2s ease;
}

#icon-nav span:nth-child(1) {
    top: 16px;
}

#icon-nav span:nth-child(2) {
    top: 28px;
}

#icon-nav span:nth-child(3) {
    top: 40px;
}

#icon-nav.trigger span:nth-child(1) {
    transform: rotate(45deg);
    top: 30px;
}

#icon-nav.trigger span:nth-child(2) {
    opacity: 0;
}

#icon-nav.trigger span:nth-child(3) {
    transform: rotate(-45deg);
    top: 30px;
}

.nav-logo-container {
    background-color: #fff;
    text-align: center;
    position: fixed;
    z-index: -3;
    transition: transform 0.4s ease-in-out, opacity 0.3s ease;
    height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
}

.nav-logo-container.jaune {

    background-color: #FEC601;
}

#nav-logo-container.expand {
    z-index: 200;
    transform: translateX(0);
    opacity: 1;
    height: 85vh; /* 75% de la hauteur de l'écran */
    max-height: 700px; /* Hauteur maximale */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 94%;
    max-width: 540px;
    top: 0;
    right: 0;
    border-radius: 0 0 0 32px; /* Arrondi uniquement en bas à gauche */
    box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.15);
}

nav {
    width: 100%;
    line-height: 4rem;
}

nav ul {
    list-style-type: none;
    width: 100%;
    height: 100%;
    margin-top: 60px;
    padding: 0;
}

/* Animation des liens du menu */
#nav-logo-container.expand nav li {
    animation: slideInFromRight 0.4s ease-out forwards;
    opacity: 0;
}

#nav-logo-container.expand nav li:nth-child(1) {
    animation-delay: 0.1s;
}

#nav-logo-container.expand nav li:nth-child(2) {
    animation-delay: 0.2s;
}

#nav-logo-container.expand nav li:nth-child(3) {
    animation-delay: 0.3s;
}

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

/* Respect des préférences d'animation réduites */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    /* Désactiver les animations du menu */
    #nav-logo-container.expand nav li {
        animation: none !important;
        opacity: 1 !important;
    }
}

nav li {
    padding: 0;
    border-bottom: 1px solid #FF4A9E;
    transition: background-color 1s ease;
}

nav li:first-child {
    border-top: 1px solid #FF4A9E;
}


nav li a {
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    color: #555353;
    font-weight: 600;
    font-size: 0.875rem;
}


.current a {
    color: #2C2C2C !important;
    font-weight: 800;
    position: relative;
}

.current a::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: #FF4A9E;
    border-radius: 2px;
}
.liensblancs a {
    color: #2C2C2C;
    transition: 0.5s;

}


.logo-menu {
    display: flex;
    justify-content: space-between;
    width: 200px;
    padding-top: 1.5rem;
    margin-top: auto; /* Pousse le logo vers le bas */
    padding-bottom: 2rem;
}




/* ------- MENU-LOGO landscape Paysage --------*/

@media (orientation: landscape) and (max-width : 991px) {
    nav {
        line-height: 2.2rem;
    }
    
    #nav-logo-container.expand {
        height: 95vh;
        max-height: none;
    }
    
    nav ul {
        margin-top: 30px;
    }
    
    .logo-menu {
        padding-bottom: 1rem;
    }
}



/* ------- MENU-LOGO Ã  partir de 768px --------*/

@media screen and (min-width:48em) {
    #nav-logo-container.expand {
        max-width: 720px;

    }
}



/* ------- MENU-LOGO Ã  partir de 992px 

@media screen and (min-width:62em) {
    #icon-nav {
        display: none;
    }

    .menu-overlay {
        display: none;
    }

    .nav-logo-container {
        z-index: 300;
        opacity: 1 !important;
        display: flex !important;
        flex-direction: row;
        height: 120px !important;
        background-color: transparent;
        position: relative;
        transform: translateX(0) !important;
        width: 100% !important;
        max-width: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        top: auto !important;
        right: auto !important;
        visibility: visible !important;
        overflow: visible !important;
    }

    .logo-menu {
        display: flex;
        padding-top: 0;
        height: 80px;
        order: -1;
        align-items: center;
    }

    nav {
        height: 72px;
        display: flex;
        opacity: 1;
        background-color: transparent;
        line-height: auto;
        position: relative;
    }

    nav ul {
        display: flex;
        list-style-type: none;
        margin: 0;
        padding: 0;
        border-bottom: none;
        flex-grow: 1;
        justify-content: flex-end;

    }

    nav li {
        border-bottom: none;
        margin-left: 2.8rem;
        position: relative;
        animation: none !important;
        opacity: 1 !important;
    }

    nav li a {
        font-weight: 600;
        color: #555353 !important;
        font-size: 1rem;
    }

    .current a {
        color: #3333FF !important;
    }

    .current2 a {
        color: #fff !important;
    }

    nav li:nth-child(1) {
        border-top: none;
    }
    nav li a::after {
        content: "";
        display: block;
        position: absolute;
        bottom:20px;
        width: 100%;
        height: 2px;
        background: #FF4A9E;
        transform: scaleX(0);
        transition: transform 0.8s ease-in-out;
    }
    nav li a:hover::after{
        transform: scaleX(1);

    }
    nav li a:hover {
        background-color: transparent;
    }
}

--------*/


/* ------- Logo Menu Ã  partir de 992px --------*/
@media screen and (min-width:62em) {

    .logo-menu {
        width: 180px;
    }
}


/* ------- LOGO MENU Ã  partir de 1480px --------*/
@media screen and (min-width:92.5em) {

    .logo-menu {
        width: 220px;
    }
}







/* ------- MENU Ã  partir de 1480px --------*/
@media screen and (min-width:92.5em) {

    nav li a {

        font-size: 1.125rem;
    }
}





/* ------- PAGE ACCEUIL --------*/



/* ------- Section 1 accueil Image et texte  --------

 



/* ------- Logo accueil jusqu'Ã  767px --------*/

.accueil-section-une-logo {

    width: 60%;
    margin: 10px 0px 0px 10px;
}

/* ------- Logo accueil de 768px --------*/
@media screen and (min-width:48em) {
    .accueil-section-une-logo {

        width: 50%;
    }
}




/* ------- Logo accueil Display None Ã  partir de 992px --------*/
@media screen and (min-width:62em) {
    .accueil-section-une-logo {
        display: none;
    }
}








/* ------- TEXTES ACCUEIL jusqu'Ã  992 px --------*/



.accueil-section-1 h1, .accueil-section-1 h2 {
    color: var(--Black, #171717);
    font-family: Poppins;
    font-style: normal;


}

.accueil-section-1 h1 {
    font-weight: 400;
}
.accueil-section-1 h1 span {
    color: #FF4A9E;
    font-weight: 800;
}

.accueil-section-1-texte-bleu-haut {
    display: inline-flex;
    padding: 8px 14px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 99px;
    background: rgba(103, 151, 255, 0.50);
    color: #33F;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    width: 260px;
}


.accueil-bouton-bleu {
  display: inline-flex;
  padding: 4px 18px;
  justify-content: center;
  border: 2px solid #33F;
  align-items: center;
  border-radius: 99px;
  background-color: #fff;
  margin: 10px 0;
  transition: 1s;
}

.accueil-bouton-bleu a {
    color: #33f;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-size: 0.75rem;
    display: flex;
    justify-content: space-between;
}

.accueil-bouton-bleu:hover {
    padding: 4px 30px;
}

.accueil-bouton-bleu img {
    width: 24px;
    height: 40px;
    align-self: flex-end;
    margin-left: 10px;
}

.bouton-contacter {
  display: inline-flex;
  background-color: #FF4A9E;
  padding: 4px 18px;
  justify-content: center;
  align-items: center;
  border-radius: 99px;
  transition: 1s;
  border: 2px solid #ff4a9e;
}

.bouton-contacter a {
    color: #fff;
    line-height: 40px;
    /* Button */
    font-weight: 600;
    line-height: 24px;
    /* 171.429% */
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-size: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bouton-contacter:hover {

    padding: 4px 30px;

}

.bouton-contacter img {
    width: 20px;
    height: 40px;
    margin-left: 10px;

}




/* ------- TEXTES ACCUEIL à parir de 992px --------*/
@media screen and (min-width:62em) {


.bouton-contacter {
  margin-left: 30px;
}

}






/* ------- ACCUEIL SECTION 2  --------*/






/* ------- ACCUEIL SECTION 3  --------*/

.accueil-section-3, .accueil-section-5 {
    position: relative;
}

.accueil-section-3 h3::before,.accueil-section-5 h3::before {
    content: "";
    display: block;
    height: 1px;
    background: #FF4A9E;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    z-index: 1;
}
.accueil-section-3::after,.accueil-section-5::after {
    content: "";
    display: block;
    height: 1px;
    background: #FF4A9E;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    z-index: 1;

}

.accueil-section-5 h3::before,.accueil-section-5::after {
    background: #717171;
    width: 50%;
    height: 2px;
}

.accueil-section-3::before,.page2-section-4::before {
    content: "";
    width: 100%;
    height: 80px;
    background: #FF4A9E;
    position: absolute;
    top: 50%;
    z-index: 1;

}

.accueil-section-3 .card {
    max-width: 420px;
    border-radius: 32px;
    box-shadow: -10px 10px 35px 0px rgba(0, 0, 0, 0.12);
    font-weight: 600;
    font-size: 1.125rem;
    z-index: 2 !important;
    background-color: #fff;

}

.accueil-section-3 .card .card-body {
    z-index: 2 !important;
}

.accueil-section-3 .card img {
    border-radius: 32px 32px 0px 0px;

}

/* ------- SECTION 3 Ã  partir de 1480px --------*/
@media screen and (min-width:92.5em) {

    .accueil-section-3 .card {

        font-size: 1.25rem;
    }
}



/* ------- ACCUEIL SECTION  4 Avis  --------*/

.accueil-section-4 {
    position: relative;
}


.slider-2 {
    overflow: hidden;
    height: 340px;
}

.slider-2 .slider {
    animation: slider-2 52s infinite ease-in-out;
    height: 100%;

}

.slider-2 .slider .avis {
    flex-shrink: 0;
    width: 100%;
    padding: 20px 0;
    height: 340px;
}

@keyframes slider-2 {

    0%,
    15% {
        transform: translateY(0);
    }

    20%,
    35% {
        transform: translateY(-100%);
    }

   40%,
   55% {
        transform: translateY(-200%);
    }

    60%,
    75% {
        transform: translateY(-300%);
    }
    80%,
    95% {
        transform: translateY(-400%);
    }

    100% {
        transform: translateY(-500%);
    }
}



/* ------- SECTION 4 AVIS 390px --------*/
@media screen and (min-width:24.375em) {
    .slider-2 {
        height: 290px;
    }

    .slider-2 .slider .avis {
        height: 290px;
    }
}

/* ------- SECTION 4 AVIS 520px --------*/
@media screen and (min-width:32.5em) {
    .slider-2 {
        height: 240px;
    }

    .slider-2 .slider .avis {
        height: 240px;
    }
}

/* ------- SECTION 4 AVIS 992px --------*/
@media screen and (min-width:62em) {
    .slider-2 {
        height: 290px;
    }

    .slider-2 .slider .avis {
        height: 290px;
    }
}

/* ------- SECTION 4 AVIS 1200px --------*/
@media screen and (min-width:75em) {
    .slider-2 {
        height: 260px;
    }

    .slider-2 .slider .avis {
        height: 260px;
    }
}


/* ------- SECTION 4 AVIS 1400px --------*/
@media screen and (min-width:87.5em) {
    .slider-2 {
        height: 240px;
    }

    .slider-2 .slider .avis {
        height: 240px;
    }
}
/* ------- SECTION 4 AVIS 1920px --------*/
@media screen and (min-width:120em) {
    .slider-2 {
        height: 270px;
    }

    .slider-2 .slider .avis {
        height: 270px;
    }
}

/* ------- SECTION 4 AVIS 2040px --------*/
@media screen and (min-width:127.5em) {
    .slider-2 {
        height: 220px;
    }

    .slider-2 .slider .avis {
        height: 220px;
    }
}





/* ------- ACCUEIL SECTION  5 Logos entreprises  --------*/

.sprite>div{
    width:150px;
    height:150px;
    background-image:url("img/team-building-batucada-entreprise-petit.jpg");
}
.sprite{
    display: flex;
    justify-content: center;
}

#edf{
    background-position: 0 0;
}
#bdf{
    background-position: -150px 0;
}
#sncf{
    background-position: -300px 0;
}
#boehringer{
    background-position: -450px 0;
}
#ol{
    background-position: -600px 0;
}
#hec{
    background-position: -750px 0;
}
#axa{
    background-position: 0 -150px;
}
#laposte{
    background-position: -150px -150px;
}
#shiseido{
    background-position: -300px -150px;
}
#enedis{
    background-position: -450px -150px;
}
#strego{
    background-position: -600px -150px;
}
#aquatiris{
    background-position: -750px -150px;
}

.accueil-section-5 h3{

    color: #717171;
    font-size: 1.8rem;
}




/* ------- SECTION 5 Logos 768px --------*/
@media screen and (min-width:48em) {
    .sprite>div{
        width:200px;
        height:200px;
        background-image:url("img/team-building-batucada-entreprise.jpg");
        display: flex;
        justify-content: center;
    }
    .sprite{
        display: flex;
        justify-content: center;
    }
    
    #edf{
        background-position: 0 0;
    }
    #bdf{
        background-position: -200px 0;
    }
    #sncf{
        background-position: -400px 0;
    }
    #boehringer{
        background-position: -600px 0;
    }
    #ol{
        background-position: -800px 0;
    }
    #hec{
        background-position: -1000px 0;
    }
    #axa{
        background-position: 0 -200px;
    }
    #laposte{
        background-position: -200px -200px;
    }
    #shiseido{
        background-position: -400px -200px;
    }
    #enedis{
        background-position: -600px -200px;
    }
    #strego{
        background-position: -800px -200px;
    }
    #aquatiris{
        background-position: -1000px -200px;
    }
}


/* --------    Section 5 LOGOS Ã  partir de 992px-------- */

@media screen and (min-width:62em) {

    .accueil-section-5 h3{
        font-size: 1.8rem;
        line-height: 2.8rem;
    }
}

/* ------- Section 5 LOGOS Ã  partir de 1200px --------*/
@media screen and (min-width:75em) {

   .accueil-section-5 h3{
        font-size: 2.4rem;
        line-height: 3.4rem;
    }
}


/* ------- Section 5 LOGOS  Ã  partir de 1480px --------*/
@media screen and (min-width:92.5em) {


    .accueil-section-5 h3{
        font-size: 2.8rem;
        line-height: 3.8rem;
        margin-bottom: 2.5rem;
    }

}



/* ------- SECTION 7 Phrase Accroche --------*/

.accueil-section-7-accroche { 
    background-color:#F9A4D0;
    padding: 1rem 0;
}
.accueil-section-7-accroche p{ 
    font-size : 1.5rem;
    color: #fff;
    text-align: center;
    line-height: 2.8rem;
    font-weight: 400;
    margin: 0;

}

.accueil-section-7-accroche .bouton-contacter {

    border: 2px solid #6797FF;
    margin: 0.6rem 0;
}


/* ------- SECTION 7 Phrase Accroche 1200px --------*/
@media screen and (min-width:75em) {
   .accueil-section-7-accroche p{ 
        font-size : 1.7rem;
    
    }
}





/* ------- FOOTER --------*/
footer {
    background-color: #fff;
    border-top: #eee solid 1px;
}

.nav-footer p {
    margin-bottom: 1rem;
}

footer p {
    margin: 0.2rem 0;
    font-size: 1rem;
}

.nav-footer nav {
    height: auto;
    line-height: 1.8rem;
    margin-top: 20px;
}

.nav-footer nav ul {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 0;
}

.nav-footer nav li {
    margin-left: 0;
    border-top: none;
    border-bottom: none;
    position: relative; /* AJOUT */
    padding-left: 16px; /* AJOUT */
}

.nav-footer nav li a {
    font-size: 1rem;
    color: #6D7C90;
    text-transform: none;
    font-weight: 400;
}

.nav-footer nav a:hover {
    color: #33F !important;
}
.nav-footer .current a {
    color: #FF4A9E !important; /* Rose petant au lieu de bleu */
}

.nav-footer nav li a::after {
    content: "";
    display: none;
}
.nav-footer .current a::before {
    display: none; /* ou toute la règle du ::before */
}



/* ------- FIN PAGE ACCEUIL --------*/







/* ------- PAGE 2 --------*/

.page2-section-1-texte-rose-haut {
    display: inline-flex;
    padding: 8px 14px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 99px;
    background: rgba(249, 164, 208, 0.5);
    color: #FF4A9E;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    width: 260px;
  }

  .page2-section-1 {
    position: relative;
}

/*
.page2-section-1::after {
  content: "";
  display: block;
  height: 1px;
  background: #33F;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  z-index: 1;
}
*/

.page2-section-2 {
    position: relative;
}

  .page2-section-3::before, .page2-section-4::before {
    content: "";
    display: block;
    height: 1px;
    background: #FF4A9E;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    z-index: 1;

}

.page2-section-3 {
    position: relative;
}

  .page2-section-3::after{
    content: "";
    display: block;
    height: 1px;
    background: #33F;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    z-index: 1;

}




/* PAGE CONTACT*/

main.pagecontact{

    color: #717171;
    background: #fff;
    
}
form{
    min-height: 5rem;
    margin: 3rem auto;
}
form p{
    color: #717171;
}
textarea {
    display: block;
    width: 90%;
    margin: 20px 0;
}
fieldset{
    margin-top: 2rem;
    border: none;
    background: rgba(103, 151, 255, 0.50);
    width: 100%;
}
legend {
    margin-bottom: 1rem;
    color: #33f;
}

input{
    padding: 0.5rem;
    width: 90%;
   
}
input.submit {
    display: block;
    width: 200px;
    padding: 10px 15px;
    font-size: 1rem;
    border-radius: 50px;
    -webkit-appearance: none;
    margin: 1rem auto;
    cursor: pointer;
    background-color: #fff;
    color: #33F; 
    border: 2px solid #33f;   
    transition: 0.2s;
    
}
input.submit:hover{
 
    background-color: #33f;
    color: #fff; 
    border: 2px solid #fff;
   
}
p.contactreponse {
    color: green;
    margin: 6rem auto;
    text-align: center;
    font-size: 1.5rem;
}
p.contacterreur {
    color: red;
    margin: 6rem auto;
    text-align: center;
}
.pagecontact h3{
 
    margin-top: 2rem;
    text-align: center;
    color: #33f;
    font-size: 1.4rem;
}

p.mail {
text-align: center;
  font-size: 1.7rem;
  line-height: 2.4rem;
}




/* -------- Page Contact Ã  partir de 992px -------- */
@media screen and (min-width:62em) {  
    main.pagecontact{
        background: #fff;
        background-repeat: no-repeat;
    }
    fieldset{

        width: 60%;
    }
    textarea {
        display: block;
        width: 30rem;
        margin: 20px auto;
    }
    input{
        padding: 0.5rem;
        margin: 1rem;

    }

}

/* -------- Page Contact Ã  partir de 1400px -------- */
@media screen and (min-width:87.5em) {  

    fieldset{

        padding: 4rem 3rem;
        width: 90%;
    }
    form p{
        margin-bottom: 4rem;
    }

}










/* ========================================
   STYLES POUR PAGES VILLES (Paris, Lyon, Nantes, etc.)
   ======================================== */

/* -------- SECTION HERO VILLE -------- */
.hero-ville {
    position: relative;
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background images spécifiques par ville */
.hero-paris {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                      url('img/hero-paris-bg.jpg');
}

.hero-lyon {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                      url('img/hero-lyon-bg.jpg');
}

.hero-nantes {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                      url('img/hero-nantes-bg.jpg');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(51, 51, 255, 0.3) 0%, rgba(255, 74, 158, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 2rem 0;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-ville h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-ville h1 .rose-petant {
    color: #FF4A9E;
    text-shadow: 2px 2px 8px rgba(255, 74, 158, 0.5);
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Vidéo en background (quand activée) */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.min-vh-50 {
    min-height: 50vh;
}


/* -------- SECTION PRÉSENTATION VILLE -------- */
.presentation-ville {
    background: #fff;
}

.presentation-ville h2 {
    margin-bottom: 1.5rem;
}

.presentation-ville h3.h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
}

.liste-avantages {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.liste-avantages li {
    padding: 0.75rem 0;
    font-size: 1.125rem;
    color: #2C2C2C;
    border-bottom: 1px solid rgba(103, 151, 255, 0.2);
}

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


/* -------- SECTION ANIMATIONS VILLE -------- */
.animations-ville {
    background: #F8F9FA;
}

.card-animation {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card-animation:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card-animation-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.card-animation:hover .card-animation-image img {
    transform: scale(1.05);
}

.card-animation-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.badge-participants {
    background: rgba(255, 74, 158, 0.95);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    backdrop-filter: blur(5px);
}

.card-animation-body {
    padding: 1.5rem;
}

.card-animation-body h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.btn-lien-animation {
    color: #33F;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    transition: 0.3s;
}

.btn-lien-animation:hover {
    color: #FF4A9E;
    transform: translateX(5px);
}


/* -------- SECTION TÉMOIGNAGES VILLE -------- */
.temoignages-ville {
    background: #fff;
}

.temoignage-card {
    border-left: 4px solid #33F;
}

.temoignage-texte {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2C2C2C;
    font-style: italic;
    margin-bottom: 1rem;
}

.temoignage-auteur {
    color: #6D7C90;
    font-size: 0.9rem;
}

.opacity-75 {
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.hover-opacity-100:hover {
    opacity: 1;
}


/* -------- SECTION ZONES INTERVENTION -------- */
.zones-intervention {
    background: #F8F9FA;
}

.liste-zones {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.liste-zones li {
    padding: 0.5rem 0;
    font-size: 1.125rem;
    color: #2C2C2C;
}

.carte-interactive {
    position: sticky;
    top: 100px;
}

.carte-placeholder {
    border: 2px dashed #D0D5DD;
}


/* -------- SECTION FAQ VILLE -------- */
.faq-ville {
    background: #fff;
}

.accordion-button {
    background: #fff;
    color: #2C2C2C;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: #F8F9FA;
    color: #33F;
    border-bottom: 2px solid #33F;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #33F;
}

.accordion-body {
    padding: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #6D7C90;
}


/* -------- SECTION CTA FINAL -------- */
.cta-final-ville {
    background: linear-gradient(135deg, #33F 0%, #6797FF 100%);
    position: relative;
    overflow: hidden;
}

.cta-final-ville::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 74, 158, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.bg-gradient {
    background: linear-gradient(135deg, #33F 0%, #6797FF 100%);
}

.contact-direct a {
    transition: 0.3s;
}

.contact-direct a:hover {
    color: #FEC601 !important;
}


/* -------- RESPONSIVE TABLETS -------- */
@media screen and (min-width: 768px) {
    .hero-ville h1 {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }
}


/* -------- RESPONSIVE DESKTOP -------- */
@media screen and (min-width: 992px) {
    .hero-ville {
        min-height: 70vh;
    }

    .hero-ville h1 {
        font-size: 4rem;
    }

    .hero-tag {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }

    .presentation-ville h3.h4 {
        font-size: 1.75rem;
    }
}


/* -------- RESPONSIVE LARGE DESKTOP -------- */
@media screen and (min-width: 1400px) {
    .hero-ville h1 {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 1.375rem;
    }
}


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

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.hero-content > *:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-content > *:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-content > *:nth-child(3) {
    animation-delay: 0.3s;
}

.hero-content > *:nth-child(4) {
    animation-delay: 0.4s;
}


/* -------- ACCESSIBILITÉ -------- */
@media (prefers-reduced-motion: reduce) {
    .hero-content > *,
    .card-animation,
    .btn-lien-animation {
        animation: none !important;
        transition: none !important;
    }
}








/* -------- PAGE-PARIS -------- */

/* ------- PAGE PARIS Section 1 Hero -------- */

.paris-section-1 h1 {
    font-weight: 400;
}

.paris-section-1 h1 span {
    font-weight: 800;
}

/* ------- PAGE PARIS Section 2 - Image comportement -------- */

.paris-section-2 .paris-image-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.paris-section-2 .paris-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

/* ------- PAGE PARIS Section 2 - Image à partir de 1919px -------- */
@media screen and (min-width: 119.9375em) {
    .paris-section-2 .paris-image-container {
    height: 729px;
    }
    
}
/* ------- PAGE PARIS Section 2 - Image à partir de 2040px -------- */
@media screen and (min-width: 127.5em) {
    .paris-section-2 .paris-image-container {
        height: 600px;
    }
    
}


.paris-section-2 .paris-image-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.15);
}


/* -------- SECTION 3 PARIS - CARDS ANIMATIONS -------- */

.paris-section-3 .card {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 32px;
    box-shadow: -10px 10px 35px 0px rgba(0, 0, 0, 0.12);
    font-weight: 600;
    font-size: 1.125rem;
    z-index: 2 !important;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* AJOUT */
}

.paris-section-3 .card:hover {
    transform: translateY(-8px);
    box-shadow: -10px 15px 45px 0px rgba(0, 0, 0, 0.18);
}

.paris-section-3 .card-body h3 {
    font-size: 1.25rem; /* 20px */
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.5rem;
}

.paris-section-3 .card img {
  border-radius: 32px 32px 0px 0px;
}


/* -------- PAGE PARIS Section 4 - Témoignages -------- */


/* Logo AXA principal */
.logo-temoignage-principal {
    max-width: 250px;
    height: auto;
}

/* Réduction visuelle du logo HEC pour équilibrer */
.paris-section-4 img[src*="hec-paris"] {
    max-width: 165px;
}

/* Citation témoignage */
.temoignage-quote {
    border-left: 4px solid #FF4A9E;
    padding-left: 1.5rem;
    font-style: italic;
    color: #2C2C2C;
}

.temoignage-quote p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.temoignage-quote footer {
    font-style: normal;
    font-weight: 600;
    color: #33F;
}

.temoignage-entreprise {
    font-weight: 400;
    font-size: 0.9rem;
    color: #6D7C90;
}

/* 4 logos clients en bas */
.logo-client {
    max-width: 200px;
    height: auto;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-client:hover {
    opacity: 1;
    transform: scale(1.1);
}
.temoignage-quote {
    border-left: 4px solid #FF4A9E;
    padding-left: 1.5rem;
    font-style: italic;
    color: #2C2C2C;
    background: #F8F9FA; /* Fond gris très léger */
    padding: 1.5rem;
    border-radius: 8px;
}

.temoignage-quote::before {
    content: '"';
    font-size: 4rem;
    color: #FF4A9E;
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: 10px;
}



/* -------- PAGE PARIS Section 5 - Zones d'intervention -------- */


.carte-intervention {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carte-intervention:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}


/* -------- PAGE PARIS Section 6 - FAQ -------- */

.paris-section-6 .faq-bloc h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.paris-section-6 .faq-bloc p {
    line-height: 1.6;
    color: #2C2C2C;
}

.faq-bloc {
    background: #F8F9FA;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #33F;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-bloc:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-bloc h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

/* -------- PAGE PARIS Section 7 - CTA Final -------- */

.paris-section-7 h2 {
    font-size: 1.75rem;
}

.paris-section-7 p {
    font-size: 1.125rem;
    color: #6D7C90;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.paris-section-7 {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

@media (min-width: 768px) {
    .paris-section-7 h2 {
        font-size: 2rem;
    }
}






/* ========================================
   HEADER 2 ROWS : LOGO+MENU / CONTACT À DROITE
   ======================================== */

/* -------- MOBILE : Contact dans le menu burger -------- */

.mobile-header-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding: 0 2rem;
}


.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2C2C2C;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-contact-item:hover {
    color: #FF4A9E;
}

.mobile-contact-item img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.mobile-contact-item:hover img {
    opacity: 1;
}

/* -------- MOBIL à partire de 428px on grossit la police du Tel et Mail -------- */

@media screen and (min-width:26.75em) {
    
.mobile-contact-item {
    font-size: 0.9rem;
    }
}

/* -------- DESKTOP : Structure 2 ROWS (>= 992px) -------- */

@media screen and (min-width:62em) {
    
    /* Container principal header desktop */
    .header-desktop {
        padding-top: 1rem;
        padding-bottom: 0.5rem;
    }
    
    /* ROW 1 : Logo + Menu */
    .header-row-1 {
        margin-bottom: 0.5rem;
    }
    
    /* LOGO */
    .logo-header-desktop {
        width: 180px;
    }
    
    .logo-header-desktop img {
        max-width: 100%;
        height: auto;
    }
    
    /* MENU NAVIGATION */
    .nav-header-desktop ul {
        position: relative;
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        justify-content: flex-end;
        gap: 2.5rem;
    }
    
    .nav-header-desktop li {
        position: relative;
    }

    nav li {
    border-bottom: none;
    border-top: none;
    }

    nav li:first-child {
    border-top: none;
    }
    
    .nav-header-desktop li a {
        font-size: 1.125rem;
        font-weight: 600;
        color: #555353;
        text-decoration: none;
        text-transform: uppercase;
        transition: color 0.3s ease;
    }
    /* Trait rose en dessous au hover */
    .nav-header-desktop li a::after {
        content: "";
        display: block;
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 2px;
        background: #FF4A9E;
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }
    
    .nav-header-desktop li a:hover {
        color: #FF4A9E;
    }
    
    /* Lien actif en bleu */
    .nav-header-desktop li.current a {
        color: #3333FF !important;
    }
    
    
    .nav-header-desktop li a:hover::after {
        transform: scaleX(1);
    }
    
    /* ROW 2 : CONTACT (aligné à droite) */
    .header-row-2 {
        margin-top: -1.5rem;
    }
    
    .header-contact-desktop {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
        text-align: right;
        line-height: 1.3;
    }
    
    .header-contact-item {
        display: inline-flex;
        align-items: center;
        justify-content: flex-end;
        gap: 0.4rem;
        color: #6D7C90;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
        text-transform: uppercase;
        position: relative;
        padding-bottom: 0.2rem;
        transition: color 0.3s ease;
    }
    
    /* Trait rose en dessous au hover */
    .header-contact-item a ::after {
         display: none !important;
    }
    
    .header-contact-item:hover::after {
        transform: scaleX(1);
    }
    
    .header-contact-item:hover {
        color: #FF4A9E;
    }
    
    .header-contact-item img {
        opacity: 0.6;
        transition: opacity 0.3s ease;
    }
    
    .header-contact-item:hover img {
        opacity: 1;
    }
    
    /* Cache le contact mobile sur desktop */
    .mobile-header-contact {
        display: none;
    }
    
    /* Cache l'ancien système desktop */
    .nav-logo-container {
        display: none !important;
    }
}

/* -------- DESKTOP XL : Ajuste tailles (>= 1480px) -------- */

@media screen and (min-width:92.5em) {
    
    .logo-header-desktop {
        width: 220px;
    }
    
    .nav-header-desktop li a {
        font-size: 1.125rem;
    }
    
    .nav-header-desktop ul {
        gap: 3rem;
    }
    
    .header-contact-item {
        font-size: 1rem;
    }
}










/* -------- PAGE NANTES -------- */

/* -------- Images Collaborateurs décalée haut et gauche pour équilibre sur Desktop -------- */

/* Mobile first : pas de décalage */
.nantes-hero-collaborateurs {
    position: relative;
    margin-left: 0;
    margin-top: 0;
}

/* Desktop : décalage à partir de 992px (lg) */
@media (min-width: 992px) {
    .nantes-hero-collaborateurs {
        margin-left: -40px;  /* Ajuste entre -50px et -80px selon ton goût */
    }
}
/* Desktop : décalage à partir de 1600px (XXL) */
@media (min-width: 1600px) {
    .nantes-hero-collaborateurs {
        margin-left: -70px;  /* Ajuste entre -50px et -80px selon ton goût */
        margin-top: -40px;
    }
}

/* -------- PAGE RENNES -------- */

/* ------- PAGE RENNES Section 2 - Image comportement -------- */

.paris-section-2 .paris-image-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.paris-section-2 .rennes-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

/* ------- PAGE RENNES Section 2 - Image à partir de 1919px -------- */
@media screen and (min-width: 119.9375em) {
    .paris-section-2 .rennes-image-container {
    height: 729px;
    }
    
}
/* ------- PAGE RENNES Section 2 - Image à partir de 2040px -------- */
@media screen and (min-width: 127.5em) {
    .paris-section-2 .rennes-image-container {
        height: 600px;
    }
    
}


.paris-section-2 .rennes-image-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.15);
}
.paris-section-2 .rennes-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}