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

body {
    padding-top: 140px;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1e1e1e;
}

/* ===============================
   HEADER
   =============================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, #2faa3594, #2b828877, #bea534a6);
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 1000;
    transition: height 0.3s ease, box-shadow 0.3s ease;
}

/* Sticky */
header.sticky {
    height: 80px;
    background: linear-gradient(135deg, #2faa35b2, #2b828877, #bea534a6);
    background-color: #7b7c79;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ===============================
   LOGO
   =============================== */
.logo img {
    max-height: 100px;
    transition: max-height 0.3s ease;

    border-radius: 80px;
}


header.sticky .logo img {
    max-height: 60px;
}

/* ===============================
   NAV DESKTOP
   =============================== */
nav {
    display: flex;
}

nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #000;
    font-weight: 500;

    &:hover {
        color: #1b611e;
    }
}

nav a.active {
    color: #1b611e
}


/* ===============================
   MENU MOBILE
   =============================== */
#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

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

    body {
        padding-top: 120px;
    }

    header {
        height: 120px;
        padding: 0 20px;
    }

    header.sticky {
        height: 60px;
    }

    .logo img {
        max-height: 100px;
    }

    header.sticky .logo img {
        max-height: 50px;
    }

    /* Hamburger visible */
    .menu-icon {
        display: block;
    }

    /* Navigation mobile */
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #a2ce9af6;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    nav a {
        margin: 10px 0;
        font-size: 15px;
    }

    /* Ouverture menu */
    #menu-toggle:checked~nav {
        max-height: 300px;
    }
}



.h1-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ------------ HERO SECTION ------------ */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 50px;
    background-image: linear-gradient(135deg, #2faa35fa, #2b8288b7, #bea53485), url('/images/laptop.png');
    background-size: cover;
    background-position: center;
    color: rgb(255, 252, 252);
    border-radius: 10px;
    margin: 20px 10px;
    min-height: 550px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content {
    max-width: 480px;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.hero p {
    margin: 15px 0 30px;
    font-size: 18px;
    font-weight: 400;
}

.btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background: #1d565a;
    border: 1px solid #000000;
    color: white;
    border-radius: 10px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #2faa35fa;
    border: 1px solid #ffffff;
}

.hero-image img {
    width: 420px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ------------ SERVICES ------------ */
.services {
    padding: 70px 50px;
    text-align: center;

    @media (max-width: 500px) {
        padding: 50px 0px;

    }
}

.services h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    margin-bottom: 40px;
}

.service-grid {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/
    justify-content: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {

    padding: 25px;
    border-radius: 16px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    /*cursor: pointer;*/
    transition: transform 0.25s ease;
    width: 300px;
}


.service-card-no-scale {
    padding: 35px;
    border-radius: 16px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    /*cursor: pointer;*/
    transition: transform 0.25s ease;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card:hover {
    transform: scale(1.05);

    @media (max-width: 500px) {
        transform: none;
    }
}

.service-card-no-scale:hover {
    transform: none;
}

.service-card span {

    font-weight: 300;
    font-size: 15px;
}

.shadow {
    transform: scale(0.95);

    &:hover {
        transform: scale(1.05);
    }

    @media (max-width: 500px) {
        transform: none;

    }
}

.shadow-no {
    transform: scale(0.95);

    @media (max-width: 500px) {
        transform: none;
    }
}

@media (min-width: 768px) {
    .step-left {
        transform: translateY(-20px);
    }

    .step-right {
        transform: translateY(50px);
    }
}


/* ------------ CARDS FLIP ------------ */



.allura-regular {
    font-family: "Allura", cursive;
    font-weight: 400;
    font-style: normal;
}

/* CONTENEUR */
.flip-card {
    width: 300px;
    height: 280px;
    perspective: 1200px;
    display: block;
}

/* INTERNE */
.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(.4, .2, .2, 1);
    transform-style: preserve-3d;
}

/* ANIMATION */
.flip-card:hover .flip-inner,
.flip-card:focus-visible .flip-inner {
    transform: rotateY(180deg);
}

/* FACES */
.flip-front,
.flip-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 16px;
}

/* FACE AVANT */
.flip-front {
    color: #f8f7f7;
}

/* FACE ARRIÈRE */
.flip-back {
    background: linear-gradient(135deg, #f7b06f, #f18b2b);
    /*background: linear-gradient(135deg, #1f1f1f, #868686);*/
    color: #141414;
    transform: rotateY(180deg);
}

/* ACCESSIBILITÉ */
.flip-card:focus-visible {
    outline: none;
}


/* page contact*/

.contact-wrapper {
    position: relative;
    margin:0 10px 0 10px;
    min-height: 450px;
    padding:20px
}

.contact-card {
    padding: 10px 10px 10px 10px;
    border-radius: 16px;
    color: rgb(0, 0, 0);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    /*cursor: pointer;
    transition: transform 0.25s ease;*/
    width: auto;
    background-color: #f9f9f988;
    

    & span {
        font-family: "Allura", cursive;
        font-weight: 400;
        font-size: 40px;
    }

    & a:hover {
        text-decoration: none;
        color: #2faa35fa !important;
    }
}

.form-control {
    border-radius: 8px;
    border: 1px solid #ced4da !important;
    outline: none;
    padding: 10px 15px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;

    &:focus {
        border-color: #2faa35 !important;
        box-shadow: 0 0 5px rgba(47, 170, 53, 0.5) !important;
        outline: none;
    }
}

.form-check-input {
    border: #2faa35 solid #2faa35 !important;

}

.form-check-input {

    &:checked {
        background-color: #2faa35 !important;
        border-color: #2faa35 !important;
    }

    &:hover {
        box-shadow: 0 0 5px rgba(47, 170, 53, 0.767) !important;
        outline: none;
    }

    &:focus {
        border-color: #2faa35 !important;
        box-shadow: 0 0 5px rgba(47, 170, 53, 0.801) !important;
        outline: none;
    }

}



.contact-card-image {
    background: url("/images/femme-blonde-bras-croises.png") center no-repeat, linear-gradient(185deg, #c9bbee, #BEADEB, #73659b);
    
    background-size: cover;
    background-position: center;
    background-color: #1b837c !important;
    width: 100%;
    height: 440px;
    min-width: 250px;
    border-radius: 10%;
    padding-top: 40px;
}



/* Color variations */
.lime {
     background-color: rgb(47, 170, 53); /* fallback iOS */
    
     background-image: linear-gradient(135deg, rgba(47, 170, 53, 0.624), rgb(48, 134, 52));
    background-size: cover;
    background-position: center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.lime-td {
     background-color: rgb(47, 170, 53); /* fallback iOS */
    
}

.gold {
    background-color: rgb(114, 100, 40);/* fallback iOS */
     background-image: linear-gradient(135deg, rgba(236, 207, 78, 0.616), rgb(114, 100, 40));
    background-size: cover;
    background-position: center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.gold-td {
     background-color: rgb(114, 100, 40); /* fallback iOS */ 
}

.gold {
    background-color: rgb(114, 100, 40);/* fallback iOS */
     background-image: linear-gradient(135deg, rgba(236, 207, 78, 0.616), rgb(114, 100, 40));
    background-size: cover;
    background-position: center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}


.green {
    background-color: rgb(27, 131, 124); /* fallback iOS */
     background-image: linear-gradient(135deg, rgba(46, 196, 181, 0.604), rgb(27, 131, 124));
    background-size: cover;
    background-position: center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.green-td {
    background-color: rgb(27, 131, 124); /* fallback iOS */
}

.pink {
    background: linear-gradient(135deg, #E64980, #D6336C);
}

/* ------------ RESPONSIVE ------------ */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 30px;
    }

    .hero-image img {
        width: 90%;
        margin-top: 30px;
    }

    header {
        padding: 20px 30px;
    }
}

footer::before {
    content: "";
    display: block;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    margin-bottom: 60px;
    backdrop-filter: blur(4px);
}

footer {

    background-image:
        linear-gradient(135deg, #41c247b2, #2faa35b2, #2c969e77, #308c9277, #20575c77, #112d3077),
        radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: cover, 3px 3px;

    color: white;
    padding: 10px 50px;
    padding-top: 100px;
    box-shadow: inset 0 12px 20px rgba(0, 0, 0, 0.25);

    @media (max-width: 900px) {
        footer {
            padding: 20px 20px;
            text-align: center;
        }

        & .footer-content {
            text-align: center;
            gap: 10px;
        }

    }
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(4px);
    font-size: 0.75rem;
    opacity: 0.8;
    text-align: center;
}

.footer-col {
    position: relative;
    padding-left: 25px;


}

.footer-col::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 2px;
    height: 60%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .4), transparent);

    @media (max-width: 1000px) {
        left: 50%;
        transform: translateX(-50%);
        width: 70%;
        height: 2px;

    }
}

footer .footer-content {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

footer .logo img {
    width: 100px;

    border-radius: 100px;
    /* text-decoration: none;*/
    align-items: center;
}

footer h4 {
    margin-bottom: 15px;
    font-size: 1.0rem;
    padding: 20px 30px;
}

footer p,
footer a {

    font-size: 0.95rem;
    line-height: 1.8rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color .3s ease, transform .3s ease;
    padding: 10px 10px;
}

footer a:hover {
    color: #ffffff;
    transform: translatey(3px);
}


.copyright {
    text-align: center;
    margin-top: 80px;
    padding: 10px;
    opacity: 0.6;
    font-size: 0.85rem;
}



/* ---           carousel    --- */

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}



.slides {
  display: flex;
  width: 100%;
  animation: scroll 25s linear infinite;
}


/* --- Desktop : 3 slides --- */
.slide {
    flex: 0 0 calc(100% / 3);
    padding: 10px;
}

.slide img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
}

/* --- Tablette : 2 slides --- */
@media (max-width: 992px) {
    .slide {
        flex: 0 0 calc(100% / 2);
    }
}

/* --- Mobile : 1 slide --- */
@media (max-width: 600px) {
    .slide {
        flex: 0 0 100%;
    }
}

/* Boutons */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0);
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.dots {
    text-align: center;
    margin-top: 1px;

}

.border {
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}



/*
.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}
*/
/* --- Desktop : 3 slides --- */
/*
.slide {
    flex: 0 0 calc(100% / 3);
    padding: 10px;
}

.slide img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
}
*/
/* --- Tablette : 2 slides --- */
/*
@media (max-width: 992px) {
    .slide {
        flex: 0 0 calc(100% / 2);
    }
}
*/
/* --- Mobile : 1 slide --- */
/*
@media (max-width: 600px) {
    .slide {
        flex: 0 0 100%;
    }
}
*/
/* Boutons */
/*
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.dots {
    text-align: center;
    margin-top: 1px;

}

.border {
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}
*/
/*    °---------- SECTIONS AVEC IMAGE A GAUCHE/ DROITE ----------  */
.wrapper .inner {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 50px auto;
    max-width: 1000px;
    border-radius: 10px;
    /*border:#1e1e1e7a solid 1px;*/
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.13);
    background-color: #135c5781;
    padding: 20px
}

.wrapper .inner img.image {
    max-width: 430px;
    width: 100%;
    border-radius: 8px;
}

.wrapper .inner .content {
    flex: 1;
}

/*
.wrapper .inner-top {
 
  display: flex;
  flex-direction: column;
}
*/
.wrapper .inner-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 50px auto;
    max-width: 800px;
    border-radius: 10px;
    /*border:#1e1e1e7a solid 1px;*/
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.13);
    background-image: linear-gradient(135deg, #2faa359f, #308634), url('');
    padding: 40px
}


.content-top {

    position: relative;
    z-index: 10;
}

/* 🔁 Inversion gauche ↔ droite */
.wrapper .inner-reverse {
    flex-direction: row-reverse;
}

/* 📱 Responsive mobile */
@media (max-width: 768px) {

    .wrapper .inner,
    .wrapper .inner-reverse {
        flex-direction: column;
        text-align: center;
    }

    .wrapper .inner img.image {
        max-width: 100%;
    }
}

.special {
    filter: opacity(0.80);
    color: #1b0b0b;
    font-weight: bold;
    text-decoration: none;
  
    transform: scale(0.9);
    transition: transform 0.3s ease, text-decoration 0.3s ease, filter 0.3s ease;
    
    &:hover {
        transform: scale(1);
        text-decoration: underline;
        filter: opacity(1);
       

    }
}






.blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
    border-right: #000000 1px solid;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .4), transparent);
    padding: 20px 10px 20px 10px;
    text-align: right;
    display: block;

    @media (max-width: 768px) {
        text-align: center;
        border-right: none;
        border-top: #1b837c 1px solid;
    }
}

.blockquote-reverse {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .4), transparent);
    border-left: #1b837c 1px solid;
    padding: 20px 10px 20px 10px;
    display: block;

    @media (max-width: 768px) {
        text-align: center;
        border-left: none;
        border-top: #1b837c 1px solid;
    }
}

.blockquote-top {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
    border-top: #525151 3px solid;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .4), transparent);
    padding: 30px 10px 30px 10px;
    /* text-align: right;*/
    display: block;

    @media (max-width: 768px) {
        text-align: center;
        border-right: none;

    }
}

.form-label {

    margin-bottom: 0px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;

    & span {
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        font-size: 20px;
    }
}

.form-check {
    padding-left: 1.2rem;
    /* par défaut ~1.5rem */
}

.form-check-input {
    margin-left: -1.2rem;
    margin-right: 0.4rem;
}

.typewriter span {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #000;
    animation:
        typing 4s steps(40, end),
        blink .75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: #ffffff;
    }
}

.promo-2026 {
    min-height: 410px;
    max-width: 1200px;
    margin: 0 auto;
    background:
        url("/images/femme-blonde-promo-1200.png") center / cover no-repeat,
        /*
        linear-gradient(90deg, #c9bbee, #c9bbee5d, #ec7506)*/
        linear-gradient(290deg, #c9bbee81, #927fc9, #73659b);
    background-color: #ffffff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 10px;
    color: #1b0b0b;
    padding: 20px 20px 20px 40px;
    margin-bottom: 40px;
    /*
    @media (max-width: 768px) {
         background: url("/images/promo-mobile.png") bottom / cover no-repeat;
        text-align: center;
        max-height: 800px;
        padding: 20px;
        max-width: 400px;
    } */
}

/* Contenu */
.promo-content {
    max-width: 400px;
    text-align: left;
    align-items: center;

    @media (max-width: 768px) {
        background-color: rgba(222, 224, 224, 0.5);
        border-radius: 10px;
        padding: 10px;
        width: 300px;
    }

    /*
        text-align: center;
        
        margin-top:380px
    } */
}


/* Badge */
.badge {
    display: inline-block;
    background-color: #e06513;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}


/* Titre */
.promo-content h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
    text-align: left;
    /*
     @media (max-width: 768px) {
         text-align: center;
    } */
}

/* Texte */
.promo-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;

}

.tableau {
    min-height: 410px;
    max-width: 1080px;
    margin: 0 auto;
    background:
        url("/images/femme-blonde-pointant-index-droit.png") top no-repeat, linear-gradient(90deg, #c9bbee, #BEADEB, #73659b);
    background-size: cover;

    display: flex;

    justify-content: flex-start;
    align-items: center;
    border-radius: 10px;
    color: #1b0b0b;
    padding: 20px 20px 20px 40px;
    margin-bottom: 40px;
}

.erreur {
    min-height: 410px;
    max-width: 1024px;
    margin: 0 auto;
    background:
        url("/images/femme-blonde-surprise-bouche-ouverte.png") top / cover no-repeat,
        linear-gradient(135deg, #c9bbee, #967ae498);
    background-color: #a990f0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 10px;
    color: #000000;
    padding: 20px 20px 20px 40px;
    margin-bottom: 40px;


}

.succes {
    min-height: 410px;
    max-width: 1024px;
    margin: 0 auto;
    background:
        url("/images/femme-blonde-succes.png") top / cover no-repeat,
        linear-gradient(to bottom, #c9bbee, #BEADEB, #73659b);
    display: flex;

    justify-content: flex-start;
    align-items: center;
    border-radius: 10px;
    color: #1b0b0b;
    padding: 20px 20px 20px 40px;
    margin-bottom: 40px;
}

.question {
    min-height: 410px;
    max-width: 1200px;
    margin: 0 auto;
    background: url("/images/femme-blonde-question-1200.PNG") top no-repeat, linear-gradient(to bottom, #c9bbee, #BEADEB, #73659b);
    background-size: cover;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 10px;
    color: #000000;
    padding: 20px 20px 20px 40px;
    margin-bottom: 40px;
}


/* Contenu */
.content {
    max-width: 400px;
    text-align: left;

    @media (max-width: 768px) {
        background-color: rgba(222, 224, 224, 0.568);
        border-radius: 10px;
        max-width: 280px;
        text-align: center;
        padding: 10px;
        margin-top: -70px
    }

    @media (max-width: 430px) {
        margin-top: 100px
    }
}

/* Titre */
.traitement-content h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
    text-align: left;
}

/* Texte */
.traitement-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

/* Bouton CTA */
.cta-btn {
    display: inline-block;
    /* background-color: #00c389;*/
    background-color: #e06513;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;

}

.cta-btn:hover {
    background-color: #00a876;
    transform: translateY(-2px);

    @media (max-width: 768px) {
        background-color: #ffffff;
        color: #030303;

    }
}

.cta-btn-gold {
    display: inline-block;
    background-color: #bea534;
    color: #1d1818;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    max-width: max-content;
    align-items: center;
}

.cta-btn-gold:hover {
    background-color: #00a876;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .promo-content h1 {
        font-size: 2rem;
    }

    .promo-content p {
        font-size: 1rem;
    }
}

/* Tableau prix web */
.pricing-web {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    color: #2c2c2c;
}

.pricing-web h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
}

.pricing-web .intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
}

thead {
    background: linear-gradient(135deg, #1b837c, #024702);
    color: #ffffff;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 10px;
-webkit-overflow-scrolling: touch;
     
}

.responsive-table {
    min-width: 100%;
    border-collapse: collapse;

}
/* Le tableau devient plus large sur petit écran */
@media (max-width: 600px) {
    .responsive-table {
        min-width: 630px;
    }
}
.responsive-table th,
.responsive-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
    background-color: #ffffff44;
}


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

    .responsive-table thead {
        display: none;
    }

    .responsive-table,
    .responsive-table tbody,
    .responsive-table tr,
    .responsive-table td {
        display: block;
        width: 100%;
        padding: 10px;

    }

    .responsive-table tr {
        margin-bottom: 1.5rem;*/
        /* border: 1px solid #e0e0e0;*/
       /*border-radius: 8px;
        padding: 10px;
        background-color: #ffffff44;
    }

    .responsive-table td {
        border-bottom: #e0e0e0 dotted 1px;
        border-top: none;
        border-left: none;
        border-right: none;
        padding: 10px;
    }

    .responsive-table td::before {
        content: attr(data-label);
        font-weight: 600;
        display: block;
        margin-bottom: 4px;
        color: #555;
        padding: 0px;
    }*/

    /* Gestion du rowspan */
   /* .responsive-table td[rowspan] {
        font-weight: 700;
        background-color: #ffffff11;
        padding: 10px;
        margin-bottom: 10px;
        border-radius: 6px;

    }

    .responsive-table td[rowspan]::before {
        content: "Facteur";
        font-weight: bold;
        color: #000;
        font-size: larger;
    }
}
*/
.bg-custom {
    background-color: #f9f9f988;
}

/* Gestion des cookies politique confidentialité */
/* Bandeau cookies – apparence soignée */
.cookie-banner {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    display: none;
    animation: cookieSlideUp 0.4s ease-out;
}

@keyframes cookieSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

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

.cookie-box {
    background: #0f0f0fd7;
    color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.cookie-box h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.cookie-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #d1d1d1;
}

.cookie-options {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14px;
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* Boutons */
.cookie-actions button {
    padding: 10px 18px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.cookie-actions button.primary {
    background: #ffffff;
    color: #000000;
}

.cookie-actions button.secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #5a5a5a;
}

.cookie-actions button.link {
    background: transparent;
    color: #9f9f9f;
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
    .cookie-box {
        padding: 20px;
    }

    .cookie-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions button {
        width: 100%;
    }
}