@import "https://cdn.jsdelivr.net/npm/bulma@1.0.4/css/bulma.min.css";
@import "fonts.css";
@import "colors.css";

:root {
    --black: var(--noir-950);
    --white: var(--blanc);

    --purple: var(--violet);
    --purple-light: var(--violet-400);

    --green: var(--vert);
    --green-light: var(--vert-400);

    --blue: var(--bleu);
    --blue-light: var(--bleu-400);

    --orange-light: var(--orange-300);
}

[data-bg="light"] {
    --color: var(--noir-950);
    --background: var(--blanc);
}

[data-bg="dark"] {
    --color: var(--blanc);
    --background: var(--noir-950);
}

[data-bg="purple"] {
    --color: var(--noir-950);
    --background: var(--violet-300);
}

[data-bg="green"] {
    --color: var(--noir-950);
    --background: var(--vert-300);
}

[data-bg="blue"] {
    --color: var(--noir-950);
    --background: var(--bleu-300);
}

[data-bg="orange"] {
    --color: var(--noir-950);
    --background: var(--orange-300);
}

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

/* LAYOUT */

.hero {
    background-color: var(--background);
}

.section {
    background-color: var(--background);

    padding-top: 8rem;
    padding-bottom: 8rem;

    &.footer {
        padding-bottom: 2.5rem;
      font-style: normal !important;
        padding-left: 3rem;
        padding-right: 3rem;

        @media screen and (max-width: 1224px) {
            padding-left: 1rem;
            padding-right: 1rem;
        }
    }
}

/* CONTAINER BULMA */

@media screen and (min-width: 1408px) {
    .container:not(.is-max-tablet):not(.is-max-desktop):not(.is-max-widescreen) {
      max-width: 1500px; 
    }
}

/* TEXTS RESPONSIVE */
@media screen and (max-width: 768px) {
    p.big {
      font-size: 1.2rem !important;
    }


    p.tagline {
        font-size: 0.9rem !important;
      }

    a.button{
        font-size: 1rem !important;
    }

    h2{
        font-size: 1.6rem !important;
    }

    h3{
        font-size: 1.5rem !important;
    }


    p{
        font-size: 1rem !important;
    }
  }



/* TYPOGRAPHIES */

h1 {
    font-family: "Visby", sans-serif;
    font-weight: 700;
    font-size: 40px;

    color: var(--color);

    &::selection {
        background-color: var(--color);
        color: var(--background);
    }

    margin: 0px;
}

h2 {
    font-family: "Visby", sans-serif;
    font-weight: 400;
    font-size: 32px;

    color: var(--color);

    &::selection {
        background-color: var(--color);
        color: var(--background);
    }

    margin: 0px;
}

h3 {
    font-family: "Visby", sans-serif;
    font-weight: 500;
    font-size: 24px;

    color: var(--color);

    &::selection {
        background-color: var(--color);
        color: var(--background);
    }

    margin: 0px;
}

h4 {
    font-family: "Visby", sans-serif;
    font-weight: 700;
    font-size: 20px;

    color: var(--color);

    &::selection {
        background-color: var(--color);
        color: var(--background);
    }

    margin: 0px;
}

.tagline {
    font-family: "IBM Plex Mono", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;

    color: var(--color);

    &::selection {
        background-color: var(--color);
        color: var(--background);
    }

}

p {
    font-family: "Visby", sans-serif;
    font-weight: 400;
    font-size: 18px;

    color: var(--color);

    &::selection {
        background-color: var(--color);
        color: var(--background);
    }

    &.small {
        font-family: "Visby", sans-serif;
        font-weight: 400;
        font-size: 16px;

        color: var(--color);
    }

    &.big {
        font-family: "Visby", sans-serif;
        font-weight: 700;
        font-size: 24px;

        color: var(--color);

    }

    i {
        font-size: 1.25em;
        margin: 0px;
        ;
    }
}


li{
   font-family: Visby;
    font-weight: 500;
}

.fade {
    opacity: 0.5;
}

.special {
    color: var(--black);
    padding: 0px 15px;
    border-radius: 40px;
    display: inline-block;

    &.purple {
        background-color: var(--purple-light);

        &::selection {
            background-color: var(--purple);
            color: var(--background);
        }
    }

    &.green {
        background-color: var(--green-light);

        &::selection {
            background-color: var(--green);
            color: var(--background);
        }
    }

    &.blue {
        background-color: var(--blue-light);

        &::selection {
            background-color: var(--blue);
            color: var(--background);
        }
    }

    &.orange {
        background-color: var(--orange-light);

        &::selection {
            background-color: var(--orange);
            color: var(--background);
        }
    }

    &.no-border{
        border: 2px solid white !important;
        color: black !important;
        background-color: transparent;

        &::selection {
            background-color: var(--background);
            color: var(--color);
        }

    }

    &.white {
        border: 2px solid white !important;
        color: white !important;
        background-color: transparent;

        &::selection {
            background-color: var(--background);
            color: var(--color);
        }
    }

    &.black {
        border: 2px solid black !important;
        color: black !important;
        background-color: transparent;

        &::selection {
            background-color: var(--background);
            color: var(--color);
        }
    }

    &.simple {
        background-color: var(--color);
        color: var(--background);
    }

    &.outline {
        border: 1px solid var(--color);
        padding-top: 4px !important;
        padding-bottom: 4px !important;

        &::selection {
            background-color: var(--color);
            color: var(--background);
        }

        color: var(--color);

        &:hover {
            border: 2px solid var(--color);
            cursor: pointer;
            transition: border 0.1s ease;
        }
    }

    &.hover-purple,
    &.hover-green,
    &.hover-blue,
    &.hover-orange {

        border: 2px solid var(--color) !important;
      
    }

    &.hover-purple:hover {
        background-color: var(--purple-light);
        border: 2px solid var(--purple-light) !important;
        color: var(--black);
        cursor: default;
        padding: 0px 15px;

        &::selection {
            background-color: var(--purple);
            color: var(--background);
        }
    }

    &.hover-green:hover {
        background-color: var(--green-light);
        border: 2px solid var(--green-light) !important;
        color: var(--black);
        cursor: default;
        padding: 0px 15px;

        &::selection {
            background-color: var(--green);
            color: var(--background);
        }
    }

    &.hover-blue:hover {
        background-color: var(--blue-light);
        border: 2px solid var(--blue-light) !important;
        color: var(--black);
        cursor: default;
        padding: 0px 15px;

        &::selection {
            background-color: var(--blue);
            color: var(--background);
        }
    }

    &.hover-orange:hover {
        background-color: var(--orange-light);
        border: 2px solid var(--orange-light) !important;
        color: var(--black);
        cursor: default;
        padding: 0px 15px;

        &::selection {
            background-color: var(--orange);
            color: var(--background);
        }
    }


    &.hover-purple-alt:hover {
        background-color: var(--purple-light);
        border: 2px solid var(--purple-light) !important;
        color: var(--black);
        cursor: default;
        padding: 0px 15px;

        &::selection {
            background-color: var(--purple);
            color: var(--background);
        }
    }

    &.hover-green-alt:hover {
        background-color: var(--green-light);
        border: 2px solid var(--green-light) !important;
        color: var(--black);
        cursor: default;
        padding: 0px 15px;

        &::selection {
            background-color: var(--green);
            color: var(--background);
        }
    }

    &.hover-blue-alt:hover {
        background-color: var(--blue-light);
        border: 2px solid var(--blue-light) !important;
        color: var(--black);
        cursor: default;
        padding: 0px 15px;

        &::selection {
            background-color: var(--blue);
            color: var(--background);
        }
    }

    &.hover-orange-alt:hover {
        background-color: var(--orange-light);
        border: 2px solid var(--orange-light) !important;
        color: var(--black);
        cursor: default;
        padding: 0px 15px;

        &::selection {
            background-color: var(--orange);
            color: var(--background);
        }
    }

    /* Classes hover sans padding par défaut */
    &.hover-purple,
    &.hover-green,
    &.hover-blue,
    &.hover-orange {
        padding: 0px 15px;
        background-color: white;
        border: 2px solid white;
        color: var(--color);
        margin-left: -15px;
        transition: all 0.3s ease;
    }

    /* Classes hover sans padding par défaut */
    &.hover-purple-alt,
    &.hover-green-alt,
    &.hover-blue-alt,
    &.hover-orange-alt {
        padding: 0px 15px;
        background-color: white;
        border: 2px solid white;
        color: var(--color);
        margin-left: -15px;
        transition: all 0.3s ease;
    }
}

/* BLOCKS */

.block {
    background-color: var(--background);
    padding: 10px 20px;
    border-radius: 10px;

    &:not(:last-child) {
        margin: 0px;
    }
}

@media screen and (max-width: 768px) {
    .block{
        padding: 20px 20px;
    }
    
}

.avatar {
    background-color: var(--background);
    padding: 0px;
    border-radius: 10px;

    display: flex;
    justify-content: center;

    &:not(:last-child) {
        margin: 0px;
    }

    img {
        margin-top: 2rem;
        width: 300px;
    }
}


/* BUTTONS */

a {
    color: var(--color);
    font-family: "Visby", sans-serif;
    font-weight: 500;

    &:hover {
        color: var(--blue);
    }

    &.navbar-item {
        background-color: transparent !important;

        &:hover {
            color: var(--color);
            background-color: transparent !important;
        }

        padding-left: 0;

        img {


            transition: none;

            &:hover {
                opacity: 1;
            }
        }
    }

    &.underline {

        text-underline-offset: 5px;
        text-decoration: underline solid;

        &:hover {
            color: var(--color);
            text-decoration: underline solid;
        }
    }

    &.icon {
        font-size: 2rem;
    }
}

.is-textuel{
    color: var(--color) !important;
}

.button {
    border: none;
    background-color: var(--color);
    color: var(--background);
    border-radius: 40px;
    padding: 15px 25px;
    font-family: "Visby", sans-serif;
    font-weight: 500;
    font-size: 16px;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    box-shadow: none !important;

    i {
        font-size: 1.5em;
    }

    &:hover {
        color: var(--background) ;
        
    }

    &.is-black {
        background-color: var(--noir-950) !important;
        border: 1px var(--noir-950) !important;
        color: var(--blanc) !important;
        border-radius: 1000px !important;

        &:hover {
            background-color: var(--noir-950) !important;
            color: var(--blanc) !important;
        }
    }

    &.is-black:disabled {
        background-color: var(--noir-950) !important;
        border-radius: 1000px !important;
        color: var(--blanc) !important;

        
    }


    &.round-outline{
        background-color: var(--background) !important;
        border: 2px solid var(--noir-950) !important;

        height: 50px;
        width: 50px;
    }

    &.round-fill{
        background-color: var(--noir-950) !important;
        color: var(--background) !important;
        border: 2px solid var(--noir-950) !important;
        height: 50px;
        width: 50px;
    }

    &.round-fill:disabled{
        background-color: var(--noir-800) !important;
       
        border: 2px solid var(--noir-800) !important;
      
    }



    &.outline {
        background-color: transparent;
        border: 1px solid var(--color) !important;
        border-radius: 1000px !important;
        color: var(--color);

        &:hover {
            background-color: transparent !important;
            color: var(--color) !important;
        }

        &:focus {
            border-bottom: 1px solid var(--color);
        }
    }

    &.is-contact {
        background-color: var(--purple);
        color: var(--white);

        &:hover {
            background-color: var(--purple);
            color: var(--white);
        }
    }

    &.is-header {
        background-color: var(--color);
            color: var(--background);

        &:hover {
            background-color: var(--purple);
            color: var(--white) ;
        }
    }

    &.is-header-mobile{
     
        margin-right: 10px;
        padding: 10px 20px;
        font-size: 12px !important;
    }

    &.is-textuel{
        background-color: transparent !important;
        color: var(--color);
     
        box-shadow: none !important;
    text-shadow: none !important;

    }

    &:disabled {
        background-color: inherit !important;
        border-color: inherit !important;
        opacity: 0.5;
        cursor: not-allowed;
    }

    &:disabled i {
        opacity: 0.5;
    }
}

/* ICONS */

.circle-icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

    i {
        font-size: 1.5em;
        color: var(--white);
    }

    &:first-child {
        margin-right: 1em;
    }

    &.purple {
        background-color: var(--purple);
    }

    &.green {
        background-color: var(--green);
    }

    &.blue {
        background-color: var(--blue);
    }

    &.orange {
        background-color: var(--orange);
    }

    &.outline {
        background-color: transparent;
        border: 2px solid var(--color);
        color: var(--color);

        &.black {
            border: 2px solid var(--noir-950);
            transition: all 0.3s ease;

            i {
                color: var(--noir-950);
                transition: all 0.3s ease;
            }

            &.hover-purple:hover {
                background-color: var(--purple);
                border-color: var(--purple);

                i {
                    color: var(--white);
                }
            }

            &.hover-green:hover {
                background-color: var(--green);
                border-color: var(--green);

                i {
                    color: var(--white);
                }
            }

            &.hover-blue:hover {
                background-color: var(--blue);
                border-color: var(--blue);

                i {
                    color: var(--white);
                }
            }
        }
    }
}

.dark-purple{
    color: var(--violet-950) !important;
}

.dark-green{
    color: var(--vert-950) !important;
}

.dark-orange{
    color: var(--orange-950) !important;
}

.dark-blue{
    color: var(--bleu-950) !important;
}


.circle-service-icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

    i {
        font-size: 1.5em;
        color: var(--white);
    }

    &:first-child {
        margin-right: 1em;
    }

    &.purple {
        background-color: var(--violet-300);
       
    }

    &.green {
        background-color: var(--vert-300);
    }

    &.blue {
        background-color: var(--bleu-300);
    }

    &.orange {
        background-color: var(--orange-300);
    }

    &.outline {
        background-color: transparent;
        border: 2px solid var(--color);
        color: var(--color);

        &.black {
            border: 2px solid var(--noir-950);
            transition: all 0.3s ease;

            i {
                color: var(--noir-950);
                transition: all 0.3s ease;
            }

            &.hover-purple:hover {
                background-color: var(--purple);
                border-color: var(--purple);

                i {
                    color: var(--white);
                }
            }

            &.hover-green:hover {
                background-color: var(--green);
                border-color: var(--green);

                i {
                    color: var(--white);
                }
            }

            &.hover-blue:hover {
                background-color: var(--blue);
                border-color: var(--blue);

                i {
                    color: var(--white);
                }
            }
        }
    }
}

.client-year span{
    cursor: default !important;
}

/* TAGS */

.tag-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    font-weight: 500;
    font-family: Visby  ;
    border-radius: 2rem;
    font-size: 0.875rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    cursor: default !important;
}

.tag-badge.violet {
    background-color: var(--violet-200);
    color: var(--violet-950);
}

.tag-badge.green {
    background-color: var(--vert-200);
    color: var(--vert-950);
}

.tag-badge.blue {
    background-color: var(--bleu-200);
    color: var(--bleu-950);
}

.tag-badge.gray {
    background-color: var(--noir-100);
    color: var(--noir-800);
}

/* TAG BADGE LARGE pour les livrables */
.tag-badge-large {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    font-size: 1rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;

    &.gray {
        background-color: var(--noir-100);
        color: var(--noir-800);

        &:hover {
            background-color: var(--violet-300);
            color: var(--violet-950);
        }
    }
}

/* TILT */

.tilt-left {
    transform: rotate(-1deg);
}

.tilt-right {
    transform: rotate(1deg);
}

.hover-tilt-left:hover {
    transform: rotate(-2deg);
    -webkit-transition: transform 0.25s ease-in-out;
    -moz-transition: transform 0.25s ease-in-out;
    -o-transition: transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out;
}

.hover-tilt-right:hover {
    transform: rotate(2deg);
    -webkit-transition: transform 0.25s ease-in-out;
    -moz-transition: transform 0.25s ease-in-out;
    -o-transition: transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out;
}

/* COLORS */

[class^="text-"] {}

h1,
h2,
h3,
h4,
p,
.tagline {
    &.purple {
        color: var(--purple);

        &::selection {
            background-color: var(--purple);
            color: var(--background);
        }
    }

    &.green {
        color: var(--green);

        &::selection {
            background-color: var(--green);
            color: var(--background);
        }
    }

    &.blue {
        color: var(--blue);

        &::selection {
            background-color: var(--blue);
            color: var(--background);
        }
    }

    &.orange {
        color: var(--orange);

        &::selection {
            background-color: var(--orange);
            color: var(--background);
        }
    }
}

@media screen and (max-width: 768px) {
    h1 {
      font-size: 2rem !important;
      line-height: 1.2;
    }
  }

/* PARTNERS */

.partners {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-evenly;

    img {
        max-width: 250px;
        max-height: 250px;
        margin: 1em;
    }
}

/* CTA */

.cta {
    background-color: var(--background);
    background-image: url(../images/cta-left.svg), url(../images/cta-right.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: left 0px bottom 0px, right 0px bottom 0px;
    background-size: 25%, 30%;
    text-align: center;
    padding: 64px;
    border-radius: 16px;

    @media screen and (max-width: 768px) {
        padding: 32px 24px;
        background-image: url(../images/cta-mobile.svg) !important;
        background-repeat: no-repeat;
        background-position: right bottom;
        background-size: 50% auto;
    }
}

.secondary-cta{
    padding: 48px;
}

@media screen and (max-width: 768px) {
    .secondary-cta{
        padding-top: 32px;
        padding-bottom: 32px;
        padding-left: 24px;
        padding-right: 24px;
    }
    
}


.level-items-text:hover{
    color:  var(--color);
}

.frame-title{
    font-size: 1.75rem !important;
}

/* FOOTER */

.footer-nav {
    .level-items {
        display: flex;
        gap: 5em;
    }

   

    i {
        font-size: 2em;
    }

    .level-right {
        .level-items {
            display: flex;
            gap: 1em;
        }
    }
}

.alignor{
    display: flex !important;
    align-items: center !important;
}

.footer-sub-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0;
    padding-right: 0;
    gap: 0;
}
.footer-left {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}
.footer-center {
    flex: 1 1 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5em;
}
@media screen and (max-width: 768px) {
    .footer-sub-menu {
        flex-direction: column;
        gap: 1em;
    }
    .footer-left,
    .footer-center,
    .footer-right {
        justify-content: center;
        width: 100%;
        text-align: center;
    }
    .footer-right {
        flex-direction: column;
        gap: 0.5em;
    }
}

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

    .footer-sub-menu{

        padding-left: 0px;
        padding-right: 0px;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;

        .level-items {
            flex-direction: column;
            gap: 3rem;
        }

        .level-right {
            .level-items {
                justify-content: center;
            }
        }
    }

    .footer .level {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .footer .level .level-item:first-child {
        order: 4;
    }
}

/* MISC */

.is-flex.gap-1 {
    gap: 0.25rem;
}

.is-flex.gap-2 {
    gap: 0.5rem;
}

.is-flex.gap-3 {
    gap: 0.75rem;
}

.is-flex.gap-4 {
    gap: 1rem;
}

.is-flex.gap-5 {
    gap: 1.5rem;
}

.is-flex.gap-6 {
    gap: 2rem;
}

.hero-head {
    padding-left: 3rem;
    padding-right: 3rem;

    @media screen and (max-width: 1224px) {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.hero-body{
    padding-top: 0rem;
}

/* Contact page */
.contact-container {
    max-width: 1000px !important;
    margin: 0 auto;
    padding-left: 8rem !important;
    padding-right: 8rem !important;
}

/* Padding horizontal pour le formulaire de contact */
.contact-form-padding {
    padding-left: 25rem;
    padding-right: 25rem;
}

.contact-form-padding textarea {
    border: 1px solid var(--noir-950);
}

.contact-form-padding ::placeholder {
    color: var(--noir-500);
    opacity: 1;
}

.contact-form-padding input[type="checkbox"] {
    margin-right: 0.75em;
    cursor: pointer;
    position: relative;
    z-index: 100;
}

.checkbox {
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.checkbox-sub-text {
    margin-left: 28px;
}

/* Icône horloge agrandie */
.clock-icon-large i {
    font-size: 1.5rem;
}

/* Callout 48h */
.callout-48h {
    background: #ededed;
    border-radius: 14px;
    color: var(--noir-800) !important;
    width: fit-content !important;
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
}

.callout-48h span:last-child {
    font-size: 1rem;
}

/* Breakpoint tablette */
@media screen and (max-width: 1424px) {
    .contact-form-padding {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Breakpoint mobile */
@media screen and (max-width: 768px) {
    .contact-container {
        padding-left: 0!important;
        padding-right: 0   !important;
        margin-top: 20px;
    }
    .contact-form-container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .contact-form-padding {
        padding-left: 0;
        padding-right: 0;
    }
    .checkbox-sub-text {
        margin-left: 0;
    }
}

.calendly-icon{
    width: 24px; 
    height: 24px;
}

.village-ca {
    border-left: 2px solid var(--noir-950); 
    padding-left: 2rem;
}

.gmaps{
    position: relative; 
    height: 400px; 
    border-radius: 10px; 
    overflow: hidden;
}

.b122{
    color: var(--blue);
}

.box-no {
    box-shadow:none; 
    border:none;
}

/* Mobile container overflow */
@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }


    .section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .mobile-no-padding {
        padding-left: 0 !important;
    }
}

/* HEADER */
.header-link {
    text-decoration: underline solid;
    text-underline-offset: 5px;
}

/* Effet hover pour les liens du header */
.navbar-menu .navbar-item a {
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}

.navbar-menu .navbar-item a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}




/* Effet spécial pour le lien actif */
.navbar-menu .navbar-item a.header-link::after {
    width: 100%;
}

/* Mobile menu */
.navbar-burger {
    color: var(--color);
    height: 3.25rem;
    width: 3.25rem;
    display: flex;
    justify-content: center;
    align-items: center;

    &:hover {
        color: var(--color);
        background-color: transparent !important;
    }

    i {
        font-size: 1.5rem;
        transition: all 0.3s ease;
    }

    &.is-active i {
        transform: rotate(90deg);
    }
}

.navbar-burger i {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.navbar-burger.is-active i {
    transform: rotate(90deg);
}

.favicon-menu-dark{
    filter: brightness(0);
}

.navbar-menu.is-hidden-tablet {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--background);
    padding-top: 2rem;
    display: none;
    z-index: 99;

    &.is-active {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .navbar-item {
        .is-flex {
            align-items: center;
            justify-content: center;
        }
    }
}

.navbar-header{
   
    position: fixed;
    align-items: center;
    top: 0rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1.75rem;
    padding-top: 1.45rem;
    padding-right: 2.2rem;

}

.navbar-footer{
    position: fixed;
    align-items: center;
    bottom: 0rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1.75rem;
    padding-top: 1.45rem;
    padding-right: 2.2rem;

}

.navbar-header-right{
    display: flex;

}

.navbar-text{
    color: var(--color);
    margin-bottom: 25px;
    font-size: 1.15rem;
    font-weight: 500;
}


.navbar-text:hover{
    color: var(--color);

}

.navbar-footer-text{
    color: var(--color);
    font-size: 1.15rem;
    font-weight: 500;
}

.navbar-footer-text:hover{
    color: var(--color);
}

.navbar-footer-linkedin{
    font-size: 1.8rem;
}

.navbar-text.is-active {
    text-decoration: underline !important;
    text-underline-offset: 8px;
   
}

.burger-icon {
    font-size: 1.5rem;
    color: var(--color);
    background-color: var(--background);
}



/* SERVICES */
.services-scroll {
    padding-bottom: 2rem;
}

/* CASE STUDIES */
.case-study-card {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
}

.rellax-bg-girasole,
.rellax-bg-noviscore,
.rellax-bg-nac,
.rellax-bg-abelio,
.rellax-bg-mixeaty,
.rellax-bg-rte {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-img-cover {
    width: 100%;
    height: 120%;
    object-fit: cover;
    position: absolute;
    top: -10%;
    left: 0;
    background: transparent;
}



.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
    z-index: 1;
}

.case-study-card:hover::before {
    background-color: rgba(0, 0, 0, 0.3);
}

.case-study-card .rellax {
    z-index: 0;
}

.case-study-card .hover-button {
    z-index: 2;
}

.case-study-card {
    aspect-ratio: 16/9;
    background-color: var(--noir-100);
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0);
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    &:hover {
        &::before {
            background-color: rgba(0, 0, 0, 0.5);
        }

        .hover-button {
            opacity: 1;
        }
    }

    .hover-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: all 0.3s ease;
        color: var(--blanc);
        border: 1px solid var(--blanc);
        padding: 15px 25px;
        border-radius: 40px;
        font-family: "Visby", sans-serif;
        font-weight: 500;
        font-size: 16px;
    }
}

/* Carousel */
.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 20px;
    margin: 0 -1rem;

    .carousel-track {
        display: flex;
        transition: transform 0.3s ease;
        margin-right: 0;
    }

    .carousel-slide {
        flex: 0 0 85%;
        padding: 0 1rem;
        margin-right: 1rem;

        &:last-child {
            margin-right: 0;
        }
    }

    .carousel-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 1rem;
        padding: 0 1rem;

        .carousel-dots {
            display: flex;
            gap: 0.5rem;
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--noir-300);
            cursor: pointer;
            transition: all 0.3s ease;

            &.active {
                background-color: var(--noir-950);
            }
        }

        .carousel-arrows {
            display: flex;
            gap: 1rem;
        }

        .carousel-arrow {
            cursor: pointer;
            color: var(--noir-950);
            font-size: 1.5rem;
            transition: all 0.3s ease;

            &:hover {
                color: var(--violet);
            }
        }
    }
}

@media screen and (min-width: 768px) {
    .carousel-container {
        overflow: visible;
    }

    .carousel-track {
        display: block;
    }

    .carousel-slide {
        padding: 0;
    }

    .carousel-controls {
        display: none;
    }
}

/* COOKIES BANNER */
.cookies-banner {
    position: fixed;
    bottom: 0;
    right: 60px;

    background-color: var(--noir-950);
    border-radius: 30px 30px 0 0;
    border: 1px solid var(--blanc);
    border-bottom: none;
    padding: 4rem 2rem 2rem 2rem;
    z-index: 1000;
    max-width: 400px;
    display: none;

    /* Animations */
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    p {
        color: var(--blanc);
        margin-bottom: 1.5rem;
    }

    .buttons {
        display: flex;
        gap: 1rem;
    }

    .button {
        &.accept {
            background-color: transparent;
            color: var(--blanc);
            border: 1px solid var(--blanc);

            &:hover {
                background-color: var(--blanc);
                color: var(--noir-950);
            }
        }

        &.refuse {
            background-color: transparent;
            color: var(--blanc);
            border: 1px solid var(--blanc);

            &:hover {
                background-color: var(--blanc);
                color: var(--noir-950);
            }
        }
    }

    .has-text-violet-400 {
        color: var(--violet-400) !important;
    }

    .underline {
        text-decoration: underline;
    }

    .close-cookies {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        color: var(--blanc);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        transition: color 0.3s ease;

        &:hover {
            color: var(--violet-400);
        }
    }

    .globe-cookies {
        position: absolute;
        top: 1.2rem;
        right: 4rem;
        background: none;
        border: none;
        color: var(--blanc);
        font-size: 1.5rem;
        cursor: pointer;

        transition: color 0.3s ease;

        &:hover {
            color: var(--violet-400);
        }
    }

    /* États d'animation */
    &.show {
        opacity: 1;
        transform: translateY(0);
    }

    &.hide {
        opacity: 0;
        transform: translateY(100%);
    }
}

/* OVERLAY POUR BLOQUER LES CLICS */
.click-blocker-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 999;
    display: block;
    pointer-events: all;

    &.hidden {
        display: none;
        pointer-events: none;
    }
}

@media screen and (min-width: 1024px) {
    .cookies-banner {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .cookies-banner {
        right: 0;
        left: 0;
        max-width: 100%;
    }
}

.navbar-brand {
    .navbar-item {
        img {
            &.logo-desktop {
                width: auto;
                height: 32px;
                max-height: none;
            }
        }
    }
}

/* Logo spécifique pour la page services */
[data-bg="light"] .navbar-brand .navbar-item img.logo-desktop,
[data-bg="light"] .navbar-brand .navbar-item img.is-hidden-tablet {
    filter: brightness(0);
}

/* TRANSITION */
.transition-container {
    position: relative;
    height: 850px;
    width: 100%;
    margin-top: -130px;
    margin-bottom: -50px;
    border-radius: 100px;
    overflow: visible;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;

    @media screen and (max-width: 768px) {
        margin-top: -20px;
        height: 550px;

        border-radius: 50px;
        padding: 30px 0;
    }
}

.transition-shape-mobile{
    position: absolute;
    width: 100%;

    min-height: 100vh;
    height: auto;
    background-color: var(--black);
    overflow-y: auto;


    transition: transform 0.5s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 4rem;
    text-align: center;

    @media screen and (max-width: 768px) {
        width: 100%;
        padding: 2rem;
        text-align: left;

        h1, h3, p {
            text-align: left;
        }

        .content-top {
            width: 100%;

            p.has-text-centered {
                text-align: left;
            }
        }

        .content-middle {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        h1 {
            font-size: 28px;
        }

        h3 {
            font-size: 20px;
        }

        p {
            font-size: 16px;
        }

        .special {
            padding: 0px 10px;
        }

        .button {
            font-size: 14px;
            padding: 12px 20px;
        }

        .page-preview {
            p.small {
                font-size: 14px;
            }

            h3 {
                font-size: 16px;
            }
        }
    }

    h1, h3, p {
        max-width: 800px;

        @media screen and (max-width: 768px) {
            max-width: 100%;
        }
    }

    .content-top {
        margin-top: 2rem;

        @media screen and (max-width: 768px) {
            margin-top: 1rem;
        }
    }

    .content-middle {
        margin: auto 0;

        @media screen and (max-width: 768px) {
            margin: 2rem 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }
    }

    .cursor-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;

        @media screen and (max-width: 768px) {
            margin-top: 2rem;
            margin-bottom: 2rem;
        }
    }

    .cursor-icon {
        width: 32px;
        height: 32px;
        animation: bounce 2s infinite;
        transform: rotate(225deg);

        @media screen and (max-width: 768px) {
            width: 24px;
            height: 24px;
            display: block;
            margin-bottom: 204px;

        }
    }

    .configurateur-light{
        min-height: 100%;
    }

    .page-preview {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 70%;
        height: 150px;
        background-color: var(--white);
        border-radius: 10px 10px 0 0;
        box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;

        @media screen and (max-width: 768px) {
            width: 85%;
            height: 120px;
            align-items: flex-start;
            text-align: left;
            padding: 0 1.5rem;
        }

        p {
            color: var(--noir-950);
            margin-bottom: 0.5rem;
        }

        h3 {
            color: var(--noir-950);
            font-size: 20px;

            @media screen and (max-width: 768px) {
                font-size: 18px;
            }
        }
    }

    .page-preview-back {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 190px;
        background-color: var(--noir-300);
        border-radius: 10px 10px 0 0;
        box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);

        @media screen and (max-width: 768px) {
            width: 75%;
            height: 160px;
        }
    }

}


.service-callout{
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 48px;
    padding-right: 48px;
}


@media (max-width: 768px) {
    .service-callout{
        padding : 20px;
    }
  }

  .presta-header{
    display: flex;
    align-items: center;
  }


.transition-shape {
    position: absolute;
    width: 80%;
    border-radius: 10px;
    height: 100%;
    background-color: var(--black);
    border: 2px solid var(--white);
    transform: rotate(-1deg);
    transition: transform 0.5s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 4rem;
    text-align: center;

    @media screen and (max-width: 768px) {
        width: 90%;
        padding: 2rem;
        text-align: left;

        h1, h3, p {
            text-align: left;
        }

        .content-top {
            width: 100%;

            p.has-text-centered {
                text-align: left;
            }
        }

        .content-middle {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        h1 {
            font-size: 28px;
        }

        h3 {
            font-size: 20px;
        }

        p {
            font-size: 16px;
        }

        .special {
            padding: 0px 10px;
        }

        .button {
            font-size: 14px;
            padding: 12px 20px;
        }

        .page-preview {
            p.small {
                font-size: 14px;
            }

            h3 {
                font-size: 16px;
            }
        }
    }

    h1, h3, p {
        max-width: 800px;

        @media screen and (max-width: 768px) {
            max-width: 100%;
        }
    }

    .content-top {
        margin-top: 2rem;

        @media screen and (max-width: 768px) {
            margin-top: 1rem;
        }
    }

    .content-middle {
        margin: auto 0;

        @media screen and (max-width: 768px) {
            margin: 2rem 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }
    }

    .cursor-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;

        @media screen and (max-width: 768px) {
            margin-top: 2rem;
            margin-bottom: 2rem;
        }
    }

    .cursor-icon {
        width: 32px;
        height: 32px;
        animation: bounce 2s infinite;
        transform: rotate(225deg);

        @media screen and (max-width: 768px) {
            width: 24px;
            height: 24px;
            display: block;
            margin-bottom: 204px;

        }
    }

    .page-preview {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 70%;
        height: 150px;
        background-color: var(--white);
        border-radius: 10px 10px 0 0;
        box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;

        @media screen and (max-width: 768px) {
            width: 85%;
            height: 120px;
            align-items: flex-start;
            text-align: left;
            padding: 0 1.5rem;
        }

        p {
            color: var(--noir-950);
            margin-bottom: 0.5rem;
        }

        h3 {
            color: var(--noir-950);
            font-size: 20px;

            @media screen and (max-width: 768px) {
                font-size: 18px;
            }
        }
    }

    .page-preview-back {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 190px;
        background-color: var(--noir-300);
        border-radius: 10px 10px 0 0;
        box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);

        @media screen and (max-width: 768px) {
            width: 75%;
            height: 160px;
        }
    }
}

/* Configurateur - changement de fond de la frame entière */
.transition-shape.configurateur-light-frame {
    background-color: white !important;
    border-color: #ddd !important;
}

/* Configurateur - changement de fond */
.configurateur-light {
    background: transparent !important;
    color: #333 !important;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.configurateur-light h1,
.configurateur-light h3,
.configurateur-light p {
    color: #333 !important;
}

.configurateur-light .special {
    color: #333 !important;
}

.configurateur-content {
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.configurateur-main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.configurateur-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;

    margin-top: 2rem;
}

.service-type{
    align-items: center;
}

.navig{
    width: 100%;
    display: flex;
    background-color: white;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    padding-top: 0;
    z-index: 100;
    
}

.configurateur-navigation .button {
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

/* Input souligné uniquement en bas */
.input-underline {
    border: none;
    border-bottom: 1px solid var(--noir-300);
    color: var(--noir-950) !important;
    border-radius: 0;
    box-shadow: none;
    padding: 0.5em 0;
    font-size: 1rem;
    background: transparent;
    transition: all 0.3s ease;
    width: 100%;
}

.activities-section{
    height: 645px; 
    overflow: hidden; 
    padding-top: 0px !important; 
    padding-bottom: 0px !important;
}

.activities-text{
    width: 100%;
    
    height: 650px;
  
    display: flex;
    align-items: center;
    justify-content: center;
    justify-items: center;
}

@media (max-width: 768px) {
    .activities-text{
        margin-left: -25px !important;
  
       
        
        height: 280px;
      
    }
  }

.input-underline:focus {
    color: var(--noir-950) !important;
    border-color: var(--noir-950);
    box-shadow: none;
}

/* Styles pour les floating labels */
.field {
    position: relative;
    margin-bottom: 1.5rem;
}

.field label {
    position: absolute;
    left: 0;
    top: 0.5em;
    color: var(--noir-300);
    transition: all 0.2s ease;
    pointer-events: none;
    font-size: 1rem;
    transform-origin: left top;
}

.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label,
.field textarea:not(:placeholder-shown) ~ label {
    transform: translateY(-1.5em) scale(0.8);
    color: var(--noir-950);
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--noir-300);
    opacity: 1;
}

.field input:focus::placeholder,
.field textarea:focus::placeholder {
    opacity: 0;
}

/* RÉFÉRENCES CLIENTS */
.client-list {
    width: 100%;
}

.client-item {
    display: grid;
    grid-template-columns: 500px 1fr 100px;
    gap: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--noir-200);
    align-items: center;

   
    h4 {
        margin: 0;
        font-weight: 500;
        min-width: 350px;
        flex-shrink: 0;
    }
}

.client-info {
    flex: 1;

    h4 {
        margin-bottom: 0.75rem;
        font-weight: 500;
    }
}

.client-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-start;
    align-items: center;
}

.client-year {    
    span {
        font-family: "Visby", sans-serif;
        font-weight: 500;
        font-size: 18px;
        color: var(--color);
    }
}

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


    .client-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 1.2rem 0;
        border-bottom: 1px solid var(--noir-200);
    }
    .client-item h4 {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        min-width: 0;
    }
    .client-year {
        margin: 0;
        font-size: 0.85rem !important;
        font-weight: 400 !important;
        color: var(--noir-400);
        margin-top: 0.2rem;
    }
    /* Affichage de l'image à droite via ::after */
    .client-item h4::after {
        content: '';
        display: block;
        width: 70px;
        height: 48px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 8px;
        margin-left: 1.2rem;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        flex-shrink: 0;
        position: absolute;
        right: -90px;
        top: 0;
    }
    /* Spécifique pour chaque client (background-image déjà défini dans le CSS global) */
    #gers-agriculture::after,
    #aprilyos::after,
    #xp-metal::after,
    #total-energies::after {
        /* background-image déjà défini */
    }
    /* Pour éviter l'overflow horizontal */
    .client-item {
        overflow: visible;
    }
}



.client-item .client-hover-orange {
    transition: color 0.2s;
    cursor: pointer;
}
.client-item:hover .client-hover-orange {
    color: var(--orange) !important;
}

.client-item .client-hover-green {
    transition: color 0.2s;
    cursor: pointer;
}
.client-item:hover .client-hover-green {
    color: var(--green) !important;
}

.client-item .client-hover-blue {
    transition: color 0.2s;
    cursor: pointer;
}
.client-item:hover .client-hover-blue {
    color: var(--blue) !important;
}

.client-item .client-hover-purple {
    transition: color 0.2s;
    cursor: pointer;
}
.client-item:hover .client-hover-purple {
    color: var(--purple) !important;
}

.square-card {
    aspect-ratio: 1/1;
}

.client-item-disabled:hover {
    color: red !important;
}

.client-locked{
    display: flex;
    align-items: center;
}

.client-locked-mobile{
    display: flex;
    align-items: center;
}

.h4-stade{
    margin-bottom: 0 !important;
    margin-left: 8px !important;
}

.locked {
    background-color: var(--noir-200);
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center ;
    font-size: 20px;
    border-radius: 1000px;
    margin-right: 10px;
}

/* FRICTION ICON */
.friction-icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--noir-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    i {
        color: var(--noir-800);
        font-size: 20px;
    }
}

/* CURSEUR PERSONNALISÉ ADAPTATIF */
[data-bg="dark"] a:hover, 
[data-bg="dark"] span:hover, 
[data-bg="dark"] button:hover, 
[data-bg="dark"] .button:hover, 
[data-bg="dark"] [role="button"]:hover {
    cursor: url('../cursor.svg'), pointer;
}

[data-bg="light"] a:hover, 
[data-bg="light"] span:hover, 
[data-bg="light"] button:hover, 
[data-bg="light"] .button:hover, 
[data-bg="light"] [role="button"]:hover {
    cursor: url('../cursor-dark.svg'), pointer;
}

/* Fallback pour les sections sans data-bg */
a:hover, span:hover, button:hover, .button:hover, [role="button"]:hover {
    cursor: url('../cursor-dark.svg'), pointer;
}

/* HERO BUTTONS ALIGNMENT */
.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: start;
    gap: 1rem;
}

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

    .square-card {
        aspect-ratio: 16/9;
    }

    .square-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px; 
      }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hero-buttons .ml-4-tablet {
        margin-left: 0 !important;
    }
}

/* SERVICES BUTTONS ALIGNMENT */
.services-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

@media screen and (max-width: 768px) {
    .services-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .services-buttons .ml-4-tablet {
        margin-left: 0 !important;
    }

    
 
    
}



.gauche-col{
    padding-right: 120px;
}



.droite-col{
    padding-left: 40px;
    padding-right: 80px;

}

@media screen and (max-width: 1200px) {
    .gauche-col{
        padding-right: 0px;
    }
    
    .droite-col{
        padding-left: 0px;
    
    }
}


/* Tags styles pour centrer les icônes avec le texte */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 40px;
}


.tags .special {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tags .special i {
    display: flex;
    align-items: center;
    font-size: 1em;
}

/* Hover miniature pour les références clients */
.client-hover-miniature {
    position: relative;
    cursor: pointer;
}

.client-hover-miniature::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 900px;
    transform: translateY(-50%);
  
    width: 300px;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}


@media screen and (max-width: 1200px) {
    .client-hover-miniature::after {
        font-size: 3px;
       
        left: 600px;
      
    }
}

.client-hover-miniature:hover::after {
    opacity: 1;
    visibility: visible;

}

#gers-agriculture::after {
    background-image: url('/assets/images/miniatures/gers-agriculture.png');
}

#aprilyos::after {
    background-image: url('/assets/images/miniatures/aprilyos.png');
}

#xp-metal::after {
    background-image: url('/assets/images/miniatures/xp.png');
}

#total-energies::after {
    background-image: url('/assets/images/miniatures/total-priceinsight.png');
}

/* Cercles numérotés pour les listes */
.numbered-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: transparent;
    color: var(--color);
    border: 1px solid var(--color);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

/* Barre de progression */
.progress-bar {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--violet);
    transition: width 0.3s ease;
}

/* Configurateur cards améliorées */
.configurateur-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);

    &:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        border-color: var(--violet-400);
        background-color: rgba(255, 255, 255, 0.15);
    }

    &.is-active {
        border-color: var(--violet);
        background-color: rgba(139, 92, 246, 0.2);
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
    }

    .card-content {
        padding: 2rem;
    }

    h4 {
        margin-bottom: 0.5rem;
        color: var(--blanc);
        font-weight: 600;
    }

    p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 16px;
        margin-bottom: 0;
    }
}

/* Devis final */
.devis-final {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.prix-final {
    background: linear-gradient(135deg, var(--violet), var(--violet-400));
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.prix-final .prix {
    font-size: 3rem;
    font-weight: 700;
    color: var(--blanc);
    display: block;
    margin-bottom: 0.5rem;
}

.devis-details, .devis-services {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.devis-details ul, .devis-services ul {
    list-style: none;
    padding: 0;
}

.devis-details li, .devis-services li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.devis-details li:last-child, .devis-services li:last-child {
    border-bottom: none;
}

/* Boutons du configurateur */
.configurateur-content .button {
    background-color: var(--blanc);
    color: var(--noir-950);
    border: none;
    font-weight: 600;

    &:hover {
        background-color: var(--violet);
        color: var(--blanc);
    }

    &:disabled {
        opacity: 0.5;
        cursor: not-allowed;

        &:hover {
            background-color: var(--blanc);
            color: var(--noir-950);
        }
    }

    &.is-contact {
        background-color: var(--violet);
        color: var(--blanc);

        &:hover {
            background-color: var(--violet-400);
        }
    }
}

/* Responsive configurateur */
@media screen and (max-width: 768px) {
    .configurateur-content {
        
        padding: 1rem;
    }

    .configurateur-card .card-content {
        padding: 1.5rem;
    }

    .prix-final .prix {
        font-size: 2rem;
    }

    .devis-final .columns {
        flex-direction: column;
    }

    .devis-details, .devis-services {
        margin-bottom: 1rem;
    }

    
}



.configurateur-options {
    display: flex;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

.option-card {
    background-color: white;
    color: #333;
    padding: 14px;
    border-radius: 12px;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    min-height: 120px;
    height: auto;
    width: 250px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
}

.option-card-centered {
    
        background-color: white;
        color: #333;
        padding: 14px;
        border-radius: 12px;
        border: 2px solid;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
        font-weight: 600;
        font-size: 16px;
        min-height: 120px;
        height: auto;
        width: 250px;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
    
}

.option-card-centered.option-blue {
    border-color: var(--bleu);
}

.option-card-centered.option-blue.selected {
    background-color: var(--bleu-100);
}

.option-card-centered.option-blue .option-icon {
    color:  var(--bleu);
    border: 2px solid var(--bleu);
}

.option-card-centered.option-blue .option-icon-fill {
    background-color:  var(--bleu);
    color: white;
   
}

.option-card-centered.option-green {
    border-color: var(--vert);
}

.option-card-centered.option-green.selected {
    background-color: var(--vert-100);
}

.option-card-centered.option-green .option-icon {
    color:  var(--vert);
    border: 2px solid var(--vert);
}

.option-card-centered.option-green .option-icon-fill {
    background-color:  var(--vert);
    color: white;
   
}

.option-card-centered.option-purple {
    border-color: var(--violet);
}

.option-card-centered.option-purple.selected {
    background-color: var(--violet-100);
}

.option-card-centered.option-purple .option-icon {
    color:  var(--violet);
    border: 2px solid var(--violet);
}

.option-card-centered.option-purple .option-icon-fill {
    background-color:  var(--violet);
    color:white;
}


.option-card-centered.option-orange {
    border-color: var(--orange);
}

.option-card-centered.option-orange.selected {
    background-color: var(--orange-100);
}

.option-card-centered.option-orange .option-icon {
    color:  var(--orange);
    border: 2px solid var(--orange);
}

.option-card-centered.option-orange .option-icon-fill {
    background-color:  var(--orange);
    color: white;
}

.stade-locked{
    display: flex;
    align-items: center;
}

.option-card-vert {
    background-color: white;
    color: #333;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    border-radius: 12px;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    min-height: 120px;
    height: 280px;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Centrage vertical */
    gap: 0.75rem;
}


.option-card-vert.option-blue {
    border-color: var(--bleu);
}

.option-card-vert.option-blue.selected {
    background-color: var(--bleu-100);
}

.option-card-vert.option-blue .option-icon-vert {
    
    color:  var(--bleu);
    border: 2px solid var(--bleu);
}


.option-card-vert.option-green {
    border-color: var(--vert);
}

.option-card-vert.option-green.selected {
    background-color: var(--vert-100);
}

.option-card-vert.option-green .option-icon-vert {
    color:  var(--vert);
    border: 2px solid var(--vert);
}


.option-card-vert.option-purple {
    border-color: var(--violet);
}

.option-card-vert.option-purple.selected {
    background-color: var(--violet-100);
}

.option-card-vert.option-purple .option-icon-vert {
    color:  var(--violet);
    border: 2px solid var(--violet);
}


.option-card-vert.option-orange {
    border-color: var(--orange);
}

.option-card-vert.option-orange.selected {
    background-color: var(--orange-100);
}

.option-card-vert.option-orange .option-icon-vert {
    color:  var(--orange);
    border: 2px solid var(--orange);
}


.regular-height {
    min-height: 190px;

}

.option-card.option-blue {
    border-color: var(--bleu);
}

.option-card.option-blue.selected {
    background-color: var(--bleu-100);
}

.option-card.option-blue .option-icon {
    color:  var(--bleu);
    border: 2px solid var(--bleu);
}

.option-card.option-blue .option-icon-fill {
    background-color:  var(--bleu);
    color: white;
   
}

.option-card.option-green {
    border-color: var(--vert);
}

.option-card.option-green.selected {
    background-color: var(--vert-100);
}

.option-card.option-green .option-icon {
    color:  var(--vert);
    border: 2px solid var(--vert);
}

.option-card.option-green .option-icon-fill {
    background-color:  var(--vert);
    color: white;
   
}

.option-card.option-purple {
    border-color: var(--violet);
}

.option-card.option-purple.selected {
    background-color: var(--violet-100);
}

.option-card.option-purple .option-icon {
    color:  var(--violet);
    border: 2px solid var(--violet);
}

.option-card.option-purple .option-icon-fill {
    background-color:  var(--violet);
    color:white;
}


.option-card.option-orange {
    border-color: var(--orange);
}

.option-card.option-orange.selected {
    background-color: var(--orange-100);
}

.option-card.option-orange .option-icon {
    color:  var(--orange);
    border: 2px solid var(--orange);
}

.option-card.option-orange .option-icon-fill {
    background-color:  var(--orange);
    color: white;
}

.option-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.option-icon-vert {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.option-icon-fill {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
}

.option-description {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    text-align: center;
    padding: 0 0.5rem;
}

.option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .configurateur-options {
        flex-direction: column;
        gap: 1rem;
        max-width: 100%;
        padding: 0rem;
    }


    .configurateur-main-content {
        padding: 2rem 1rem;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .option-card {
        width: 100%;
        max-width: none;
        padding: 1rem;
        font-size: 18px;
        min-height: 80px;
        gap: 0.75rem;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }

    .option-content {
        align-items: flex-start;
        text-align: left;
        flex: 1;
    }

    .option-card .has-text-dark {
        margin: 0;
        font-size: 16px;
    }

    .option-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        flex-shrink: 0;
    }

    .option-description {
        font-size: 14px;
        padding: 0;
        text-align: left;
        margin-top: 0.25rem;
    }



    .configurateur-navigation {
        padding: 1.5rem;
    }
}

/* CARROUSEL DE CARTES EMPILÉES */
.cards-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    width: 100%;
    overflow: visible;
}

.cards-stack {
    position: relative;
    width: 350px;
    height: 350px;
    perspective: 1000px;
}

.stack-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    pointer-events: none;
}

.card-image {

    height: 180px;
    object-fit: contain;
    margin-bottom: 0.25rem;
}

/* Effet d'empilement - cartes en arrière-plan */
.stack-card:nth-child(1) {
    transform: translateZ(-60px) translateX(-20px) translateY(15px) rotateY(10deg) rotateZ(-8deg) scale(1.15);
    opacity: 1;
    z-index: 1;
}

.stack-card:nth-child(2) {
    transform: translateZ(-40px) translateX(18px) translateY(-12px) rotateY(12deg) rotateZ(6deg) scale(1.1);
    opacity: 1;
    z-index: 2;
}

.stack-card:nth-child(3) {
    transform: translateZ(-20px) translateX(-10px) translateY(8px) rotateY(-6deg) rotateZ(-3deg) scale(1.05);
    opacity: 1;
    z-index: 3;
}

.stack-card:nth-child(4) {
    transform: translateZ(0px) translateX(0px) translateY(0px) rotateY(0deg) rotateZ(0deg) scale(1);
    opacity: 1;
    z-index: 4;
}

/* Carte active (au premier plan) */
.stack-card.active {
    transform: translateZ(50px) translateX(0px) translateY(0px) rotateY(0deg) rotateZ(0deg) scale(0.95) !important;
    opacity: 1 !important;
    z-index: 10 !important;
    pointer-events: all;
}


/* Couleurs des cartes */
.stack-card-purple {
    background: white;
    border: 3px solid var(--violet);
}

.stack-card-purple.selected {
    background: var(--violet-100);
}

.stack-card-green {
    background: white;
    border: 3px solid var(--vert);
}

.stack-card-green.selected {
    background: var(--vert-100);
}

.stack-card-orange {
    background: white;
    border: 3px solid var(--orange);
}

.stack-card-orange.selected {
    background: var(--orange-100);
}

.stack-card-blue {
    background: white;
    border: 3px solid var(--bleu);
}

.stack-card-blue.selected {
    background: var(--bleu-100);
}

/* Flèches de navigation */
.carousel-arrow {
    border: 2px solid var(--noir-950);
    border-radius: 50%;
    background: white;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
    font-size: 1.5rem;
    color: var(--noir-950);
    box-shadow: none;
    padding: 20px;
    z-index: 2000;
}

.carousel-arrow:hover {
    border-color: var(--violet-400);
    background: var(--violet-100);
    color: var(--violet);
}

.carousel-arrow i {
    font-size: 2rem;
}


/* Flèches de navigation */
.carousel-arrow-minimal {
    border: none;
    border-radius: 50%;
    background: white;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
    font-size: 1.5rem;
    color: var(--noir-950);
    box-shadow: none;
    padding: 20px;
    z-index: 2000;
}

.carousel-arrow-minimal:hover {
    border-color: var(--violet-400);
    background: var(--violet-100);
    color: var(--violet);
}

.carousel-arrow-minimal i {
    font-size: 2rem;
}

/* Responsive mobile */
@media screen and (max-width: 768px) {
    .cards-carousel {
        gap: 0.5rem;
        margin: 1rem 0;
        padding: 0 0rem;
    }

    .cards-stack {
        width: 230px;
        height: 230px;
    }

    .stack-card {

    }

    .card-image {
        width: 120px;
        height: 120px;
        margin-bottom: 0.5rem;
    }



    .carousel-arrow i {
        font-size: 1.5rem;
    }

    /* Simplifier l'effet d'empilement sur mobile */
    .stack-card:nth-child(1),
    .stack-card:nth-child(2),
    .stack-card:nth-child(3),
    .stack-card:nth-child(4) {
        transform: translateZ(0px) rotateY(0deg) scale(0.95);
        opacity: 0.6;
    }

    .stack-card.active {
        transform: translateZ(0px) rotateY(0deg) scale(1) !important;
        opacity: 1 !important;
    }

    /* Ajustements pour le contenu des cartes */
    .stack-card .option-content {
        width: 100%;
    }

    .stack-card .has-text-dark.big {
        font-size: 18px;
        text-align: center !important;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }

    /* Ajustements pour le conteneur principal */
    .configurateur-main-content {
        padding: 1rem;
    }

    .configurateur-navigation {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
        position: absolute;
        bottom: 20px;
        width: 90%;
    }

    .configurateur-navigation .button {
        width: 100%;
        justify-content: center;
    }

    .carousel-arrow {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
}

/* Options OUI/NON */
.yes-no-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.yes-no-option {
    width: 200px;
    height: 200px;
    background: white;
    border: 2px solid var(--noir-950);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.yes-no-option p {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    transition: all 0.3s ease;
}

.yes-no-option.selected {
    background: var(--noir-950);
}

.yes-no-option:hover {
    background: var(--noir-950);
}

/* ➕ Ajouté pour changer la couleur du texte au hover */
.yes-no-option:hover p {
    color: white !important;
}

.yes-no-option.selected p {
    color: white !important;
}


/* Responsive mobile */
@media screen and (max-width: 768px) {
    .yes-no-options {
        gap: 1rem;
        padding: 0 1rem;
    }

    .yes-no-option {
        width: 140px;
        height: 140px;
    }

    .yes-no-option p {
        font-size: 24px;
    }
}

.extra-card {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid var(--violet);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: box-shadow 0.2s;
    box-shadow: 0 0 0 0 transparent;
}
.extra-card:hover, .extra-card.selected {

    border-color: var(--violet-400);
}
.extra-icon {
    background: var(--violet);
    color: #fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-right: 1.25rem;
    flex-shrink: 0;
}
.extra-content {
    display: flex;
    flex-direction: column;
}
.extra-title {
    color: #181818;
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}
.extra-desc {
    color: #666;
    font-size: 0.98rem;
    font-weight: 400;
    margin: 0;
}
@media (max-width: 768px) {
    .extra-card {
        padding: 1rem;
        border-radius: 12px;
    }
    .extra-icon {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
        margin-right: 0.75rem;
    }
    .extra-title {
        font-size: 1rem;
    }
    .extra-desc {
        font-size: 0.92rem;
    }
}

.extra-card.extra-purple {
  background: white;
  border-color: var(--violet);
}
.extra-card.extra-green {
  background: white;
  border-color: var(--vert);
}
.extra-card.extra-blue {
  background: white;
  border-color: var(--bleu);
}
.extra-card.extra-orange {
  background: white;
  border-color: var(--orange);
}
.extra-card.extra-purple .extra-icon { background: var(--violet); }
.extra-card.extra-green .extra-icon { background: var(--vert); }
.extra-card.extra-blue .extra-icon { background: var(--bleu); }
.extra-card.extra-orange .extra-icon { background: var(--orange); }

/* Fond pastel uniquement à la sélection */
.extra-card.extra-purple.selected { background: var(--violet-100); }
.extra-card.extra-green.selected { background: var(--vert-100); }
.extra-card.extra-blue.selected { background: var(--bleu-100); }
.extra-card.extra-orange.selected { background: var(--orange-100); }

.extra-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.extra-header {
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (max-width: 768px) {
  .extra-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.q4-wrapper {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.line-wobble {
  --uib-size: 80px;
  --uib-speed: 1.55s;
  --uib-color: white;
  --uib-line-weight: 5px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--uib-line-weight);
  width: var(--uib-size);
  border-radius: calc(var(--uib-line-weight) / 2);
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  margin: 2rem auto 0 auto;
}

.line-wobble::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--uib-color);
  opacity: 0.1;
}

.line-wobble::after {
  content: '';
  height: 100%;
  width: 100%;
  border-radius: calc(var(--uib-line-weight) / 2);
  animation: wobble var(--uib-speed) ease-in-out infinite;
  transform: translateX(-90%);
  background-color: var(--uib-color);
}

@keyframes wobble {
  0%,
  100% {
    transform: translateX(-90%);
  }
  50% {
    transform: translateX(90%);
  }
}

.result-card {
    display: flex;
    align-items: flex-start;

    border-radius: 5px;
    padding: 1.5rem 2rem;
    max-width: 480px;
    position: relative;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.05);
    gap: 1.25rem;
}

.results-header{
    text-align: center !important;
}

@media (max-width: 768px) {
    .results-header{
        text-align: start !important;
    }
  }

/* Variantes de couleurs pour les cartes de résultat */
.result-green {
    border: 2px solid var(--vert);
    background: var(--vert-100);

}

.result-green .result-card-icon {
    background: var(--vert);
    color: var(--blanc);
}

.result-purple {
    border: 2px solid var(--violet);
    background: var(--violet-100);
}

.result-purple .result-card-icon {
    background: var(--violet);
    color: var(--blanc);
}

.result-blue {
    border: 2px solid var(--bleu);
    background: var(--bleu-100);
}

.result-blue .result-card-icon {
    background: var(--bleu);
    color: var(--blanc);
}

.result-orange {
    border: 2px solid var(--orange);
    background: var(--orange-100);
}

.result-orange .result-card-icon {
    background: var(--orange);
    color: var(--blanc);
}

/* Styles pour les cartes sélectionnées */
.result-green.selected {
    background: var(--vert-100);
}

.result-purple.selected {
    background: var(--violet-100);
}

.result-blue.selected {
    background: var(--bleu-100);
}

.result-orange.selected {
    background: var(--orange-100);
}

.result-card-icon {
    background: var(--violet);
    color: #fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.result-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.result-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.result-card-title {
    font-size: 1.6rem;
    font-family: Visby;
    font-weight: 700;
    color: #181818;
}

.res-sub{
    font-family: Visby;
    font-weight: 700;
}

.result-card-price {
    color: #888;
    font-size: 1rem;
    font-weight: 500;
}

.result-card-desc {
    color: #222;
    text-align: left;
    font-size: 1rem;
}

.result-card-desc ul {
    margin: 0.5rem 0 0 1.2rem;
    padding: 0;
    list-style: disc;
}

.result-card-action {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--violet);
    margin-left: 1rem;
    cursor: pointer;
    height: 100%;
}

.result-card-container {
    border-radius: 10px;
    width: fit-content;
    height: fit-content;
    padding: 1rem;
}

/* Variantes de couleurs pour les conteneurs de cartes de résultat */
.result-card-container-green {
    background-color: var(--vert-100);
}

.result-card-container-purple {
    background-color: var(--violet-100);
}

.result-card-container-blue {
    background-color: var(--bleu-100);
}

.result-card-container-orange {
    background-color: var(--orange-100);
}

.result-card-extra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--noir-950);
    color: var(--noir-950);
    border-radius: 5px;
    padding: 0.5rem 0.5rem;
    margin-bottom: 1rem;

    gap: 1rem;
}

.result-card-extra i {
    cursor: pointer;
}

@media (max-width: 600px) {
    .result-card {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        max-width: 100%;
        gap: 0.75rem;
    }
    .result-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    .result-card-action {
        margin-left: 0;
        align-items: center;
        justify-content: flex-start;
    }
}

/* Carte contact simulation (écran résultats) */
.contact-card-simu {
  background: var(--noir-950);
  border-radius: 20px;
  padding: 1.5rem;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 340px;
  max-width: 370px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.10);

}
.contact-card-simu h2 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: left;
}
.contact-card-simu .special.purple {
  background: var(--violet-400);
  color: var(--noir-950);
  font-weight: 700;
  padding: 0.1em 0.7em;
  border-radius: 12px;
  font-size: 1em;
}
.contact-card-simu p {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 2rem;
  text-align: left;
}
.contact-card-contact {
  color: white !important;
  font-size: 1.15rem;
  font-weight: 500;
  font-family: Visby;
  margin-bottom: 2rem;
  text-align: left;
}
.simu-badge{
    border-radius: 10000px !important;

}

.contact-card-simu .button.is-white {
  background: white;
  color: var(--noir-950);
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  width: 100%;
  max-width: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.contact-card-simu .button.is-white .mask,
.contact-card-simu a .mask {
  display: inline-flex;
  overflow: hidden;
  position: relative;
}

.contact-card-simu .button.is-white .link-container,
.contact-card-simu a .link-container {
  display: inline-block;
  position: relative;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  transform: translateY(0);
}

.contact-card-simu .button.is-white:hover .link-container,
.contact-card-simu a:hover .link-container {
  transform: translateY(-100%);
}

.contact-top-mobile{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.contact-card-simu .button.is-white .link-title1,
.contact-card-simu .button.is-white .link-title2,
.contact-card-simu a .link-title1,
.contact-card-simu a .link-title2 {
  display: block;
  height: 100%;
}

.contact-card-simu .button.is-white .link-title2,
.contact-card-simu a .link-title2 {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}

.contact-card-simu .button.is-white i {
  font-size: 1.3em;
}
.contact-card-simu a {
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  margin-top: 0.5rem;
  display: inline-block;
  transition: color 0.2s;
}
.contact-card-simu a:hover {
  color: var(--violet-400);
}
@media (max-width: 900px) {
  .contact-card-simu {
    min-width: 100%;
    max-width: 100%;
    padding: 2rem 1rem;
  }
}
@media (max-width: 600px) {
  .contact-card-simu {
    min-width: 100%;
    max-width: 100%;
    padding: 16px;
    border-radius: 12px;
    align-items: flex-start;
  }
  .contact-card-simu h2, .contact-card-simu p {
    text-align: left;
  }
}


.form-div{
    border: 2px solid var(--noir-950);
    border-radius: 10px;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .form-div {
        border: none !important;
    }
}

@media screen and (min-width: 769px) {
    .is-hidden-mobile-border {
        border: none !important;
    }
}

/* Écran de contact */
.contact-screen-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.contact-form-container {
    box-shadow: none;
    border: none;
    position: relative;
}

.contact-tags-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
}

.contact-close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.contact-close-icon-mobile {
    position: relative;
 
    font-size: 24px;
   
}

.contact-close-icon-mobile-fixed {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1001;
    font-size: 24px;
   
}

.contact-notification {
    background: #ededed;
    font-family: Visby;
    font-weight: 500;
    border-radius: 14px;
}

.contact-submit-button {
    width: 100%;
    max-width: 370px;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 2rem;
}

.buttons-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.buttons-container .contact-submit-button {
    flex: 0 0 auto;
    width: auto;
    min-width: 300px;
}

@media screen and (max-width: 768px) {
    .buttons-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .buttons-container .contact-submit-button {
        width: 100%;
        min-width: auto;
    }

    .contact-screen-container {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .contact-screen-container h1,
    .contact-screen-container p,
    .contact-screen-container .tagline {
        text-align: left !important;
    }

    .contact-screen-container br {
        display: none;
    }
}

.message-sent-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.message-sent-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .message-sent-container {
        min-height: 300px;
    }

    .message-sent-container h1 {
        font-size: 2rem;
    }
}

.field-checkbox {
    position: relative;
    margin-bottom: 1.5rem;
}

.field-checkbox .checkbox {
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.field-checkbox input[type="checkbox"] {
    margin-right: 0.75em;
    cursor: pointer;
    position: relative;
    z-index: 100;
    accent-color: var(--noir-950);
    width: 15px;
    height: 15px;
}

.field-checkbox .checkbox-sub-text {
    margin-top: 0.5rem;
    display: block;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
}

.accordion-content.is-active {
    max-height: 1000px;
    opacity: 1;
}

.accordion-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid var(--noir-950);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.accordion-arrow i {
    transition: transform 0.3s ease;
}

.accordion-arrow.is-active i {
    transform: rotate(-90deg);
}

.white-cursor {
    cursor: url('/assets/cursor.svg'), auto !important;
}

.white-cursor:hover {
    cursor: url('/assets/cursor.svg'), auto !important;
}

.black-cursor {
    cursor: url('/assets/cursor-dark.svg'), auto !important;
}

.black-cursor:hover {
    cursor: url('/assets/cursor-dark.svg'), auto !important;
}

.sticky-column {
    background-color: var(--light) !important;
    height: 500px !important;
    overflow-y: auto !important;
    
    padding-right: 1rem;
    scroll-behavior: smooth;
}

/* Style de la barre de défilement */
.sticky-column::-webkit-scrollbar {
    width: 6px;
}

.sticky-column::-webkit-scrollbar-track {
    background: var(--noir-100);
    border-radius: 3px;
}

.sticky-column::-webkit-scrollbar-thumb {
    background: var(--noir-300);
    border-radius: 3px;
}

.sticky-column::-webkit-scrollbar-thumb:hover {
    background: var(--noir-400);
}

.separator{
    background-color: black;
    height: 1px;
    margin-top: 50px;
}

.transition-shape-mobile.configurateur-light-frame {
    background-color: white !important;
    border-color: #ddd !important;
}

@media screen and (max-width: 768px) {
    .configurateur-navigation {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0rem;
        gap: 0;
    }
    .configurateur-navigation .button {
        width: auto;
        padding: 1rem;
        min-width: 120px;
    }
}

/* Effet menu animé type Hello Robo */
.link {
  height: 30px;
  align-items: center;
  color: #fff;
  text-decoration: none;
  display: flex;
  position: relative;
}

.mask {
  position: relative;
  padding: 0;
  height: 18px;
  overflow: hidden;
  display: block;
}

.link-container {
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  position: relative;
  display: flex;
  flex-direction: column;
  /* height: 36px;  // optionnel, auto suffit */
}

.title {
  display: block;
  font-size: 18px;
  line-height: 18px;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  color: inherit;
  /* Pas de position absolute ici ! */
}

.link-title1 {
  transform-origin: right center;
  font-weight: 500;
}

.link-title2 {
    transform: translateY(18px) rotate(-20deg);
    font-weight: 500;
  }

.link:hover .link-container,
.link:focus .link-container {
  transform: translateY(-42px);
}

.link:hover .link-title1,
.link:focus .link-title1 {
  transform: rotate(20deg);
}

.link:hover .link-title2,
.link:focus .link-title2 {
  transform: rotate(0);
}

.partners-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
.partners-row {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  justify-content: center;
}
.partners-row img {
  max-width: 180px;
  max-height: 80px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .partners-grid {
    gap: 0.5rem;
  }
  .partners-row {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .partners-row img {
    max-width: 140px;
    max-height: 60px;
  }
}

@media screen and (max-width: 768px) {
  .partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
    justify-items: center;
    align-items: center;
  }
  .partners-row {
    display: contents;
  }
  .partners-row img, .partners-grid img {
    max-width: 120px;
    max-height: 60px;
    width: 100%;
    height: auto;
   
  }
}

.partners-grid img, .partners-row img {
  max-width: 180px;
  height: auto;
  opacity: 1;
  transition: opacity 0.3s ease;
  animation: floating 3s ease-in-out infinite;
}

.partners-grid img:nth-child(2), .partners-row img:nth-child(2) {
  animation-delay: 0.5s;
}

.partners-grid img:nth-child(3), .partners-row img:nth-child(3) {
  animation-delay: 1s;
}

.partners-grid img:hover, .partners-row img:hover {
  opacity: 1;
}

.result-card-header-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.result-card-title-desktop{
    font-size: 1.6rem;
    cursor: default;
}

@media (max-width: 600px) {
  .result-card-header-row {
    justify-content: flex-start;
    gap: 0.5rem;
  }
  .result-card-title {
    font-size: 1.2rem;
  }
}

/* EXTRA CARDS ICON COLOR NOIR PAR DÉFAUT, BLANC EN SELECTED */
.extra-card .extra-icon {
  color: #181818;
}
.extra-card.selected .extra-icon {
  color: #fff;
}

/* Pour la rétrocompatibilité, on garde les backgrounds colorés */
.extra-card.extra-purple .extra-icon { background: var(--violet); }
.extra-card.extra-green .extra-icon { background: var(--vert); }
.extra-card.extra-blue .extra-icon { background: var(--bleu); }
.extra-card.extra-orange .extra-icon { background: var(--orange); }

.fadeup-on-hover .btn-fadeup-text {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(.77,0,.18,1), opacity 0.35s cubic-bezier(.77,0,.18,1);
}
.fadeup-on-hover:hover .btn-fadeup-text {
  transform: translateY(-16px);
  opacity: 0;
}

.fadeup-on-hover {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.fadeup-on-hover .btn-fake-width {
  display: none;
}

.fadeup-on-hover .btn-fadeup-text,
.fadeup-on-hover .btn-fadein-text {
  display: block;
  position: relative;
}

.fadeup-on-hover .btn-fadeup-text {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1), opacity 0.35s cubic-bezier(.77,0,.18,1);
}

.fadeup-on-hover .btn-fadein-text {
    display: block;
    position: relative;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1), opacity 0.35s cubic-bezier(.77,0,.18,1);
}

.fadeup-on-hover:hover .btn-fadeup-text {
  transform: translateY(-100%);
  opacity: 0;
}

.fadeup-on-hover:hover .btn-fadein-text {
  opacity: 1;
  transform: translateY(0);
}

/* Style spécifique pour le bouton avec effet de rotation */
.button .mask {
  position: relative;
  padding: 0;
  height: 20px;
  overflow: hidden;
  display: inline-block;
}

.button .link-container {
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
}

.button .link-title1,
.button .link-title2 {
  display: block;
  line-height: 22px;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  color: inherit;
}

.button .link-title1 {
  transform-origin: right center;
}

.button .link-title2 {
  transform: translateY(22px) rotate(-22deg);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1), opacity 0.4s cubic-bezier(.77,0,.18,1);
}

.button:hover .link-container {
  transform: translateY(-22px);
}

.button:hover .link-title1 {
  transform: rotate(22deg);
}

.button:hover .link-title2 {
  transform: rotate(0);
  opacity: 1;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Style spécifique pour le hover-button avec effet de rotation */
.hover-button .mask {
  position: relative;
  padding: 0;
  height: 20px;
  overflow: hidden;
  display: inline-block;
}

.hover-button .link-container {
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
}

.hover-button .link-title1,
.hover-button .link-title2 {
  display: block;
  line-height: 22px;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  color: inherit;
  white-space: nowrap;
}

.hover-button .link-title1 {
  transform-origin: right center;
}

.hover-button .link-title2 {
  transform: translateY(22px) rotate(-22deg);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1), opacity 0.4s cubic-bezier(.77,0,.18,1);
}

.hover-button:hover .link-container {
  transform: translateY(-22px);
}

.hover-button:hover .link-title1 {
  transform: rotate(22deg);
}

.hover-button:hover .link-title2 {
  transform: rotate(0);
  opacity: 1;
}

/* Style spécifique pour les liens textuels avec effet de rotation */
.is-textuel .mask {
  position: relative;
  padding: 0;
  height: 20px;
  overflow: hidden;
  display: inline-block;
}

.is-textuel .link-container {
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
}

.is-textuel .link-title1,
.is-textuel .link-title2 {
  display: block;
  line-height: 22px;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  color: inherit;
  white-space: nowrap;
}

.is-textuel .link-title1 {
  transform-origin: right center;
}

.is-textuel .link-title2 {
  transform: translateY(22px) rotate(-22deg);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1), opacity 0.4s cubic-bezier(.77,0,.18,1);
}

.is-textuel:hover .link-container {
  transform: translateY(-22px);
}

.is-textuel:hover .link-title1 {
  transform: rotate(22deg);
}

.is-textuel:hover .link-title2 {
  transform: rotate(0);
  opacity: 1;
}

.icon-align-fix {
  position: relative;
  top: 2px;
}

@media screen and (max-width: 900px) {
    .parallax-cols-wrapper,
    .parallax-col,
    .parallax-col-left,
    .parallax-col-right {
        display: none !important;
    }
    .parallax-rows-wrapper {
        width: 100%;
        overflow: hidden;
        display: block;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .parallax-row {
        display: flex;
        z-index: 2000;
        flex-direction: row;
        white-space: nowrap;
        transition: transform 0.4s cubic-bezier(.77,0,.18,1);
        width: max-content;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        gap: 0.75rem;
    }
    .parallax-row h3 {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .parallax-row h3.special {
        font-size: 1rem !important;
        padding-left: 1.75em !important;
        padding-right: 1.75em !important;
    }
    .activities-section {
        height: auto;
        min-height: 320px;
    }
    .columns.h-100 > .column {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .parallax-row-top {
        margin-bottom: 1.2rem;
        transform: translateX(-40px);
    }
}

@media screen and (max-width: 768px) {
    .client-image img {
        height: 60px;
        width: auto;
        max-width: 90px;
        border-radius: 2px;
        object-fit: cover;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    #gers-agriculture{
        font-size: 1rem !important;
    }

    #aprilyos{
        font-size: 1rem !important;
    }

    #xp-metal{
        font-size: 1rem !important;
    }


    #total-energies{
        font-size: 1rem !important;
    }

    #total-energies{
        font-size: 1rem !important;
    }

    .client-locked h4{
        font-size: 1rem !important;
    }
    



}

.rellax-bg-girasole {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/miniatures/girasole-square.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.rellax-bg-noviscore {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/miniatures/noviscore-square.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.rellax-bg-nac {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/miniatures/NAC-square.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.rellax-bg-abelio {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/miniatures/abelio-square.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.rellax-bg-mixeaty {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/miniatures/mixeaty-square.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.rellax-bg-rte {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/miniatures/rte-square.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}



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


}


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

  .rellax-bg-noviscore,
  .rellax-bg-nac,
  .rellax-bg-abelio,
  .rellax-bg-mixeaty {
    position: static !important;
    width: 100% !important;
    height: 180% !important;
  
  }

  .rellax-bg-girasole,
  .rellax-bg-rte {
    position: static !important;
    width: 100% !important;
    height: 100% !important;
    
  }
}

.bg-girasole {
  background-color: #599b6e;
  position: relative;
}
.bg-noviscore {
  background-color: #d1f1f5;
  position: relative;
}
.bg-nac {
  background-color: #ffaa4a;
  position: relative;
}
.bg-abelio {
  background-color: #5b98d0;
  position: relative;
}
.bg-mixeaty {
  background-color: #ffd9a8;
  position: relative;
}
.bg-rte {
  background-color: #b9edfe;
  position: relative;
}

.bg-wilbi {
  height: 200px;
  border-radius: 10px;
  background-image: url('/assets/images/miniatures/wilbi-min.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}
.bg-eido {
  height: 200px;
  border-radius: 10px;
  background-image: url('/assets/images/miniatures/eido-min.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}



.parallax-col {
  position: absolute;
  top: 0;
  height: 100%;
  overflow: hidden;
}

.parallax-col-left {
  left: 0;
  width: 50%;
}

.parallax-col-right {
  left: 50%;
  width: 50%;
}

html, body {
    scroll-behavior: initial !important;
}

.img-fill-card {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

@keyframes scroll-row-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scroll-row-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.parallax-row {
  display: flex;
  width: max-content;
  /* Pour éviter le retour à la ligne */
}

.parallax-row-top {
  animation: scroll-row-left 18s linear infinite;
}
.parallax-row-bottom {
  animation: scroll-row-right 22s linear infinite;
}

/* Masquer la scrollbar sur tous les navigateurs */
.sticky-column {
  scrollbar-width: none;      
  -ms-overflow-style: none;  
}
.sticky-column::-webkit-scrollbar {
  display: none;           
}

.big-m{
    margin-bottom: 500px;
}

@media screen and (max-width: 768px) {
  .stats-mobile-stack {
    flex-direction: column !important;
    gap: 1.5rem !important;
  }

  .stats-mobile{
    display: flex;
    
    align-items: center;
    gap: 1rem;
  }

  .challenge-badge{
    margin-left: 0px !important;
  
    font-size: 1.10rem !important;
  }

  
}

.force-cinc{
    font-family: Visby;
    font-weight: 500;
}

/* Ajoute ceci dans ton CSS */
.parallax-col {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.parallax-col-inner {
   
  display: flex;
  flex-direction: column;
  animation: scroll-vertical 25s linear infinite;
}

.parallax-col-right .parallax-col-inner {
  animation-direction: reverse;
}

@keyframes scroll-vertical {
  0% { transform: translateY(0); }
  100% { transform: translateY(-300%); }
}

.hareng{
    display: flex;
    width: 100%;
    gap: 20px;
    height: 320px; /* ou la hauteur de ta zone visible */
}

.hareng > .parallax-col-inner {
  flex: 1 1 0;
  /* L'animation de base est déjà là */
}

.hareng > .parallax-col-inner:last-child {
  animation-direction: reverse;
}

.img-lightbox-overlay {
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.img-lightbox-overlay img {
  max-width: 95vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}

.body-no-scroll {
  overflow: hidden !important;
  height: 100vh;
  touch-action: none;
}

.radius-10{
    border-radius: 10px;
}

.zoomable-img{
    cursor: default !important;

}


.underline-text{
    text-decoration: underline !important;
}

.badge-align {
  display: flex;
  align-items: center;
}

.badge-icon {
  font-size: 18px;
}

.eido-ui-block {
  background-color: var(--bleu-100);
  padding: 2rem;
  border-radius: 10px;
}

.bleu-950-text {
  color: var(--bleu-950) !important;
}

.wilbi-ui-block {
  background-color: var(--violet-100);
  padding: 2rem;
  border-radius: 10px;
}

.violet-950-text {
  color: var(--violet-950) !important;
}

.form-sended{
    text-align: center;
}

@media screen and (max-width: 768px) {
    .form-sended{
        text-align: left;
    }

}

.sticky-inner {
    width: 100%;
    will-change: transform;
}



.is-sticky {
    position: sticky;
    top: 2rem;
    align-self: flex-start;
    height: fit-content;
}

.sticky-section {
 
    top: 0;
    z-index: 1;
    background: var(--light);
    height: 100vh;
    overflow-y: auto;
}   

.sticky-section .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media screen and (max-width: 768px) {
    .is-sticky {
        position: static;
    }
    .sticky-section {
        position: static;
        height: auto;
        overflow-y: visible;
    }
}

.blocker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: transparent;
    pointer-events: auto;
}

/* Masquer le placeholder tant que l'input n'est pas focus pour éviter le double texte */
.field input:not(:focus):placeholder-shown::placeholder,
.field textarea:not(:focus):placeholder-shown::placeholder {
    opacity: 0;
}

.mail-footer{
    font-weight: bold;
    margin-right: 10rem;
}

@media screen and (max-width: 768px) {
    .mail-footer{
        margin-bottom: 25px;
        margin-right: 0rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-sub-menu {
        flex-direction: column;
        gap: 1em;
    }
    .footer-left {
        order: 3;
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .footer-center {
        order: 1;
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .footer-right {
        order: 2;
        flex-direction: column;
        gap: 0.5em;
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}





