:root {
    --fituring-globla-vert: #D9FF9C;
    --black-fituring: #000000;
    --white-fituring: #ffffff;
    --font-family-card-h3: 'Poppins', sans-serif;
    --font-family-card-p: 'Raleway', sans-serif;
    --font-weight-card-text-h3-p: 400px;
    --text-box-trim: "trim-both";
    --text-box-edge: "cap alphabetic";
}

body {
    overflow-x: hidden;
    background-color: #fff;
}

/* SECTION AVANTAGES */
.advantages-section {
    background-color: var(--black-fituring);
    color: var(--white-fituring);
    padding: 80px 0;
    text-align: center;
}

.advantage-item .advantage-icon {
    font-size: 48px;
    color: var(--fituring-globla-vert);
    margin-bottom: 25px;
    width: 48px;
    height: 48px;
}

.advantage-item .advantage-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--fituring-globla-vert);
}

.advantage-item .advantage-description {
    color: #cccccc;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
    text-align: justify;
}

/* Mobile responsiveness for advantages section */
@media (max-width: 768px) {
    .advantages-section .col-md-4 {
        margin-bottom: 40px;
    }

    .advantage-item {
        padding: 0 15px;
    }

    .advantage-item .advantage-title {
        font-size: 18px;
        text-align: left;
        text-align-last: center;
        
    }
    .advantage-item .advantage-description {
        font-size: 14px;
        text-align: left;
        margin-left: 24px;
        
        
    }

    .row > .col-md-4:last-child .advantage-title{
        margin-left: 10px;
    }
    .row > .col-md-4:last-child .advantage-description{
        margin-left: 10px;
    }
   
}

/* ===== STYLES GÉNÉRAUX POUR CAROUSEL WEB & ===== */
.fullscreen-carousel-section {
    background-color: #000;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible !important;
}

.fullscreen-carousel-container {
    width: 100%;
    height: 100%;
}

.fullscreen-carousel-track-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.fullscreen-carousel-track {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.8s ease-in-out;
}

.fullscreen-carousel-slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

/* ===== STYLES DESKTOP UNIQUEMENT ===== */
.fullscreen-carousel-slide .desktop-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* CACHER MOBILE SUR DESKTOP */
.fullscreen-carousel-slide .mobile-image {
    display: none;
}

/* Styles spécifiques desktop */
.fullscreen-carousel-track > .fullscreen-carousel-slide:nth-child(n+8):nth-child(-n+11) .desktop-image {
    max-width: 50%;
    height: auto;
}

.fullscreen-carousel-track > .fullscreen-carousel-slide:nth-child(n+5):nth-child(-n+7) .desktop-image {
    max-width: 55%;
    height: auto;
}

/* ===== STYLES MOBILE UNIQUEMENT ===== */
@media (max-width: 768px) {
    /* SUPPRIMER TOUTES LES LIMITES */
    .fullscreen-carousel-section,
    .fullscreen-carousel-container,
    .fullscreen-carousel-track-wrapper,
    .fullscreen-carousel-track,
    .fullscreen-carousel-slide {
        overflow: visible !important;
        height: 100vh !important;
    }
    
    /* IMAGE PLEIN ÉCRAN */
    .fullscreen-carousel-slide .mobile-image {
        display: block !important;
        width: 100vw !important;
        height: 100vh !important;
        object-fit: contain !important;
        object-position: center center !important;
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        margin: 0 !important;
        z-index: 1 !important;
    }
    
    .fullscreen-carousel-slide .desktop-image {
        display: none !important;
    }
    
    /* CONTROLES VISIBLES */
    .fullscreen-carousel-controls {
        z-index: 9999 !important;
        position: relative !important;
    }
}


/* ===== RÉDUIRE ESPACE ENTRE CAROUSEL ET AVANTAGES - MOBILE ONLY ===== */
@media (max-width: 768px) {
    /* Réduire l'espace après la section avantages */
    .advantages-section {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    /* Réduire le div d'espace noir */
    .advantages-section + div[style*="height: 160px"] {
        height: 5px !important; 
    }

    .testimony-section + div[style*="height: 160px"] {
        height: 3px !important; 
    }
    
    
    .fullscreen-carousel-section {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}



/* ===== CONTROLES  ===== */
.fullscreen-carousel-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0 0 30px 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.fullscreen-carousel-indicators {
    display: flex;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.fullscreen-carousel-indicators.visible {
    opacity: 1;
}

.fullscreen-indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.fullscreen-indicator-dot.active {
    background-color: transparent;
    border: 1px solid white;
    position: relative;
}

.fullscreen-indicator-dot.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: white;
}


    
    



.fullscreen-indicator-dot.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: white;
}

.fullscreen-carousel-cta {
    display: inline-block;
    background-color: #c8ff00;
    color: #000;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fullscreen-carousel-cta:hover {
    background-color: #b3e600;
    transform: scale(1.05);
}

:root {
    --bs-gutter-x: 1.5rem;
    --container-offset: calc((100vw - 540px) / 2);
}

/*@media (min-width: 768px) {
    :root {
        --container-offset: calc((100vw - 720px) / 2);
    }
}*/

/*@media (min-width: 992px) {
    :root {
        --container-offset: calc((100vw - 960px) / 2);
    }
}

@media (min-width: 1200px) {
    :root {
        --container-offset: calc((100vw - 1140px) / 2);
    }
}*/

/* SECTION HÉRO */
.hero-section-black {
    background-color: black;
}

.hero-content h6,
.hero-content .hero-subtitle {
    color: white;
}

.hero-highlight {
    color: #D9FF9C;
}

.hero-highlighte{
    color: #d9a900;
    

}

.phone-input-wrapper {
    border: 2px solid #000000;
}

.hero-section .mega-title {
    font-weight: 900;
    letter-spacing: -1px;
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.2px;
}

.hero-section .mega-title .word {
    display: inline-block;
    opacity: 0;
    animation: fadeInWord 0.8s ease forwards;
}

.hero-section .mega-title .word:nth-child(1) {
    animation-delay: 0.3s;
}

.hero-section .mega-title .word:nth-child(2) {
    animation-delay: 0.6s;
}

.hero-section .mega-title .word:nth-child(3) {
    animation-delay: 0.9s;
}

.hero-section .mega-title .word:nth-child(4) {
    animation-delay: 1.2s;
}

@keyframes fadeInWord {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

#phone {
    padding: 12px;
    background: transparent;
    border: 1px solid white;
    color: white;
    border-radius: 8px;
}

.custom-btn {
    background-color: var(--fituring-globla-vert);
    color: black;
    padding: 12px;
    border: 2px solid #000;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 16px;
    font-weight: bold;
}

.custom-btn:hover {
    background-color: white;
    color: black;
}

/* AUTRES SECTIONS */
.lottie-animation-section {
    background-color: #000;
}

.lottie-animation-section #lottie-container {
    width: 100%;
    margin: 0 auto;
}

.lottie-animation-section {
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

.app-feature-section .mega-title {
    font-weight: 900;
    font-size: 90.38px;
}

.product-card {
    width: 80%;
    overflow: hidden;
    margin: 0 auto 40px auto;
    border-radius: 30px;
}

.product-card .content-wrapper {
    display: flex;
    min-height: 550px;
}

.product-card .text-section {
    flex: 0 0 50%;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-card .carousel-section {
    flex: 0 0 50%;
    overflow: hidden;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    position: relative;
}

.product-card .carousel,
.product-card .carousel-inner,
.product-card .carousel-item {
    height: 100%;
}

.product-card .carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product-card .carousel-inner,
.product-card .carousel-item {
    height: 100%;
}

.product-card .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.dynamic-text-wrapper {
    position: relative;
    min-height: 120px;
    margin-bottom: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dynamic-text-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-out, visibility 0s linear 0.2s;
    text-align: left;
}


.dynamic-text-item.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease-in 0.2s;
    position: static;
    text-align: left;
}

.card-word {
    display: inline-block;
    opacity: 0;
    animation: fadeInCardWord 0.5s ease forwards;
}

@keyframes fadeInCardWord {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

.product-card .card-main-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 30px;
    text-box-trim: var(--text-box-trim);
    text-box-edge: var(--text-box-edge);
    font-weight: 900 !important;
    margin-bottom: 20px;
    text-align: left;
    letter-spacing: 0;
    line-height: 100% !important;

}

.product-card h3 {
    margin-bottom: 1.5rem;
     font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 25px;
    text-align: left;
    letter-spacing: 0;
    text-box-trim: "trim-both";
    text-box-edge: "cap alphabetic";
}

.product-card p {
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
}


.product-card .card-footer {
    margin-top: auto;
    text-align: left;
}

.product-card .btn-custom {
    margin-bottom: 10px;
    display: inline-block;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
}

.product-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 25px;
    gap: 10px;
}

.product-carousel-controls .carousel-control-prev,
.product-carousel-controls .carousel-control-next {
    position: static;
    transform: none;
    width: 48px;
    height: 48px;
    opacity: 1;
    border-radius: 100px;
}

.product-carousel-controls .carousel-indicators {
    position: static;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
    margin-left: 10px;
}

.product-carousel-controls .carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    opacity: 1;
    padding: 0;
}

.product-card.card-1 .product-carousel-controls .carousel-control-prev,
.product-card.card-1 .product-carousel-controls .carousel-control-next,
.product-card.card-2 .product-carousel-controls .carousel-control-prev,
.product-card.card-2 .product-carousel-controls .carousel-control-next {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-card.card-1 .product-carousel-controls .carousel-control-prev-icon,
.product-card.card-1 .product-carousel-controls .carousel-control-next-icon,
.product-card.card-2 .product-carousel-controls .carousel-control-prev-icon,
.product-card.card-2 .product-carousel-controls .carousel-control-next-icon {
    filter: invert(1);
}

.product-card.card-1 .carousel-indicators button,
.product-card.card-2 .carousel-indicators button {
    background-color: rgba(255, 255, 255, 0.3);
}

.product-card.card-1 .carousel-indicators .active,
.product-card.card-2 .carousel-indicators .active {
    background-color: #fff;
}

.product-card.card-3 .product-carousel-controls .carousel-control-prev,
.product-card.card-3 .product-carousel-controls .carousel-control-next,
.product-card.card-4 .product-carousel-controls .carousel-control-prev,
.product-card.card-4 .product-carousel-controls .carousel-control-next {
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.product-card.card-3 .carousel-indicators button,
.product-card.card-4 .carousel-indicators button {
    background-color: rgba(0, 0, 0, 0.2);
}

.product-card.card-3 .carousel-indicators .active,
.product-card.card-4 .carousel-indicators .active {
    background-color: #000;
}

.product-card.card-1 .text-section {
    background: #000000;
    color: #CFFF06;
}

.product-card.card-1 h3 {
    color: white;
   
}

.product-card.card-1 p {
    color: #FFFFFF !important;
    font-family: 'Raleway', sans-serif;
}

.product-card.card-1 .btn-custom-card {
    background: transparent;
    color: #fff;
    border: 1px solid #FFFFFF4D;
    width: 184px;
    height: 60px;
    padding: 0 25px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-card.card-1 .carousel-indicators button {
    background-color: rgba(255, 255, 255, 0.3);
    gap: 30px;
}

.product-card.card-1 .carousel-indicators .active {
    background-color: #fff;
}

.product-card.card-1 .carousel-control-prev,
.product-card.card-1 .carousel-control-next {
    background-color: rgba(255, 255, 255, 0.2);
    filter: invert(1);
}

.product-card.card-2 .text-section {
    background: #02342C;
    color: white;
}

.product-card.card-2 .card-main-title {
    color: #FFD0B7;
}

.product-card.card-2 h3 {
    color: #FFFFFF !important;
}

.product-card.card-2 p {
    color: #FFFFFF !important;
}



.product-card.card-2 .btn-custom-card {
    

    border: 1px solid #FFFFFF;
    color: #FFFFFF !important;
    width: 184px;
    height: 60px;
    padding: 0 25px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-card.card-2 .carousel-indicators button {
    background-color: rgba(255, 255, 255, 0.3);
}

.product-card.card-2 .carousel-indicators .active {
    background-color: #fff;
}

.product-card.card-2 .carousel-control-prev,
.product-card.card-2 .carousel-control-next {
    background-color: rgba(255, 255, 255, 0.2);
    filter: invert(1);
}

.product-card.card-3 .text-section {
    background: #CFFF06;
    color: #000000;
}

.product-card.card-3 .card-main-title {
    color: #0E6E5F;
}

.product-card.card-3 h3 {
    color: #000000 !important;
}

.product-card.card-3 p {
    color: #000000 !important;
}

.product-card.card-3 .btn-custom-card {
    background: none;
    border: 1px solid #0000004D;
    color: #000000 !important;
    width: 184px;
    height: 60px;
    padding: 0 25px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-card.card-4 .text-section {
    background: #FFD0B7;

}

.product-card.card-4 h3,
.product-card.card-4 p {

    color: #02342C !important;
}

.product-card.card-4 .card-main-title {
    color: #0E6E5F;
}

.product-card.card-4 .btn-custom-card {
    background: none;
    border: 1px solid #02342C4D !important;
    color: #02342C !important;
    width: 184px;
    height: 60px;
    padding: 0 25px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.custom-btn-card {
    padding: 0 25px;
    gap: 10px;
    display: flex;
    flex-direction: row;
    border: 1px solid #000;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
    width: 224px;
    height: 60px;
}


.custom-btn-card:hover {
    background-color: white;
    border: 2px solid black;
}

.mega-title {
    font-weight: 800;
    font-size: 99.38px;
    letter-spacing: -1px;
    line-height: 99.2px;
    color: #FFFFFF;
}

.custom-btn {
    background-color: #D9FF9C;
    color: black;
    padding: 12px;
    border: none;
    border: 2px solid #000;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 16px;
    font-weight: bold;
}

.mega-title .word {
    display: inline-block;
    opacity: 0;
    animation: fadeInWord 0.8s ease forwards;
}

.mega-title .word:nth-child(1) {
    animation-delay: 0.3s;
}

.mega-title .word:nth-child(2) {
    animation-delay: 0.6s;
}

.mega-title .word:nth-child(3) {
    animation-delay: 0.9s;
}

.mega-title .word:nth-child(4) {
    animation-delay: 1.2s;
}

@keyframes fadeInWord {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

#phone {
    padding: 12px;
    background: transparent;
    border: 1px solid white;
    color: white;
    border-radius: 8px;
    transition: border 0.3s ease;
    outline: block;
}

 #phone_modal:focus{
    border-color: #D9FF9C;
    box-shadow: 0 0 5px rgba(0, 128, 0, 0.5);
    outline: none;
}

#phone:focus{
    border-color: #D9FF9C;
    box-shadow: 0 0 5px rgba(0, 128, 0, 0.5);
    outline: none;
}

#phone-modal,
 #phone_modal {
    padding: 12px;
    background-color: black !important;
    border: 1px solid grey;
    color: white !important;
    border-radius: 8px;
    transition: border 0.3s ease;
    outline: block;
}

.select-child {
    padding: 12px;
    background-color: black !important;
    border: 1px solid grey;
    color: white !important;
    border-radius: 8px;
    transition: border 0.3s ease;
    outline: block;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

#phone-modal:focus,
#phoneform:focus,
.select-child:focus {
    border-color: #D9FF9C;
    box-shadow: 0 0 5px rgba(0, 128, 0, 0.5);
    outline: none;
    background-color: black !important;
}

.select-child:invalid {
    color: grey;
}

.select-child option {
    background: black !important;
    color: white !important;
}

.select-child option:checked {
    background: black !important;
    color: white !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #000 inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}

.btn-finaliser {
    background: #D9FF9C;
    color: black;
}

.iti__country-name {
    display: none !important;
}

.iti__selected-dial-code {
    color: white !important;
    font-weight: normal;
}

.modal-header {
    border-bottom: none !important
}

.modal-title {
    border-bottom: none !important
}

.form-control::placeholder {
    color: grey;
}

.modal-content {
    border: none;
    border-radius: none;
    background: gray;
}

.modal .btn-close {
    filter: invert(1);
}

.store-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.store-btn a {
    display: inline-block;
    transition: transform 0.2s ease-in-out;
}

.store-btn a:hover {
    transform: scale(1.05);
}

.store-btn img {
    height: 50px;
    width: auto;
}





/* == SECTION TÉMOIGNAGES == */

.testimonial-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    animation: scroll-left 30s linear infinite;
    gap: 20px; 
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    flex: 0 0 auto;
    width: 450px; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-text {
 
    font-size: 0.7rem; 
    

}

.testimonial-card .card {
    min-height: 250px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}




.testimonial-card .card[style*="background: #000000"],
.testimonial-card .card[style*="background: black"],
.testimonial-card .card[style*="linear-gradient(135deg, #000000"],
.testimonial-card .card[style*="linear-gradient(135deg, black"] {
    border: 2px solid #D9FF9C !important;
}


@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%); 
    }
}

.testimonial-track-reverse {
    display: flex;
    gap: 20px;
    animation: scroll-right 25s linear infinite;
}

.testimonial-track-reverse:hover {
    animation-play-state: paused;
}

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

    100% {
        transform: translateX(0);
    }
}


.lottie-animation-section,
#lottie-container,
#lottie-container canvas {
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #000 !important;
    box-shadow: none !important;
}

/*RESPONSIVE BLOCK HERE FOR MOBILE*/

/* Mobile-first : écran max 767px  FOR HERO SECTION*/
@media (max-width: 768px) {
    .hero-content h6, .hero-subtitle {
        color: white;
    }

    .mega-title {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }

    .mega-title .word {
        display: block;
        margin-bottom: 10px;
    }

    #phone, #ctaBtn {
        width: 100%;
    }

    .row > .col-md-7, .row > .col-md-5 {
        margin-bottom: 10px;
    }

    #swiper-1 {
        width: 100% !important;
    }

    .swiper-slide img {
        width: 100%;
        height: auto;
    }

    .store-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .p-5 {
        padding: 1rem !important;
    }

    .advantage-title{
        text-align: left !important;
        margin: 0 auto;

    }

    .advantage-description {
        text-align: left !important;
        margin: 0 auto;
    }

    .advantage-item {
        margin-top: 30px;
        
    }

    .advantages-section .row .col-md-4:first-child .advantage-item {
        margin-top: 0;
    }

    .hero-content h6, .hero-subtitle {
        color: white !important;
    }
}



/* Responsive Styles for mobile Carousel*/

@media (max-width: 768px) {
    .fullscreen-carousel-section {
        height:40vh; 
    }


    
}

/* Responsive Styles for mobile Product card*/
/*@media (max-width: 768px) {
    .product-card {
        width: 95%;
    }

    .product-card .content-wrapper {
        flex-direction: column;
        height: auto;
    }

    .product-card .text-section {
        height: auto;
        padding: 30px 20px;
        border-radius: 30px 30px 0 0;
    }

    .product-card .carousel-section {
        border-radius: 0 0 30px 30px;
        min-height: 300px;
    }

    .product-card .card-main-title {
        font-size: 24px;
    }

    .product-card h3 {
        font-size: 20px;
    }

    .dynamic-text-wrapper {
        min-height: unset;
    }

    .product-card .card-footer {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}*/




@media (max-width: 768px) {
    .product-card {
        width: 95%;
    }

    .product-card .content-wrapper {
        flex-direction: column;
        height: auto;
    }

    .product-card .text-section {
        height: auto;
        padding: 20px 15px; /* Réduction du padding */
        border-radius: 30px 30px 0 0;
    }

    .product-card .carousel-section {
        border-radius: 0 0 30px 30px;
        min-height: 250px; /* Réduction de la hauteur */
        height: 250px; /* Hauteur fixe pour contrôler l'espace */
    }

    .product-card .card-main-title {
        font-size: 20px; /* Réduction de la taille */
        margin-bottom: 15px; /* Espacement réduit */
    }

    .product-card h3 {
        font-size: 18px; /* Réduction de la taille */
        margin-bottom: 10px; /* Espacement réduit */
    }

    .product-card p {
        font-size: 14px; /* Réduction de la taille du texte */
        line-height: 1.4; /* Réduction de l'interligne */
        margin-bottom: 0;
    }

    .dynamic-text-wrapper {
        min-height: unset;
        max-height: 200px; /* Limitation de la hauteur */
        overflow-y: auto; /* Scroll si nécessaire */
    }

    .product-card .card-footer {
        margin-top: 15px; /* Réduction de l'espace */
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px; /* Réduction de l'espace entre éléments */
    }

    .btn-custom-card {
        padding: 10px 20px; /* Bouton plus compact */
        font-size: 14px;
    }

    /* Contrôles du carousel plus compacts */
    .product-carousel-controls {
        transform: scale(0.9); /* Réduction légère des contrôles */
    }

    .carousel-indicators button {
        width: 8px !important; /* Indicateurs plus petits */
        height: 8px !important;
        margin: 0 3px !important;
    }
}

/* Media query supplémentaire pour les très petits écrans */
@media (max-width: 576px) {
    .product-card .text-section {
        padding: 15px 12px;
    }

    .product-card .card-main-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .product-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .product-card p {
        font-size: 13px;
        line-height: 1.3;
    }

    .dynamic-text-wrapper {
        max-height: 180px;
    }

    .product-card .carousel-section {
        min-height: 220px;
        height: 220px;
    }
}



/* JE METS UN ESPACE ENTRE CAROUSEL PLEIN ECRAN ET LOTTIE */
@media (max-width: 768px) {
    .scroll-animate[data-bs-target="#staticBackdrop"] + div[style*="height: 120px"] {
        height: 100px !important; 
    }

    

}





/* SECTION DEUX COULEURS */
.two-colors-section {
    display: flex;
    align-items: center;
}

.two-colors-wrapper {
    display: flex;
    width: 100%;
    height: 50vh;
}

.two-colors-box {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.two-colors-box-1 {
    background-color: #D9FF9C;
}

.two-colors-box-2 {
    background-color: #0E6E5F;
}

.two-colors-title {
    line-height: 130px;
    font-family: var(--font-family-card-p);
    font-weight: 900;
    font-size: 120px;
    text-align: left;
    letter-spacing: 0;
}

.two-colors-box-1 .two-colors-title {
    color: #000000;
    left: -2px;
}

.two-colors-box-2 .two-colors-title {
    color: #FFFFFF;
    position: relative;
    left: 80px;
}





/* SECTION DEUX COULEURS RESPONSIVE HERE */
@media (max-width: 768px) {
    .two-colors-wrapper {
        flex-direction: column;
        height: auto;
    }

    .two-colors-box {
        padding: 40px 20px;
    }

    .two-colors-title {
        font-size: 60px;
        line-height: 1.2;
        text-align: center;
    }

    .two-colors-box-2 .two-colors-title {
        left: 0;
    }
}

/* SECTION TEMOIGNAGES */
.temoignages-section {
    background-color: black;
    color: white;
    padding: 120px 0;
    font-family: var(--font-family-card-h3);
    letter-spacing: 0;
}

.stat-item {
  display: flex;
  flex-direction: column; 
  align-items: center;   
}

.stat-number {
    font-size: 80px;
    font-weight: normal;
    color: white;
    margin-bottom: 0.5rem;
    flex:1; 
    gap:30px; 
}

 



.stat-label {
    font-size: 25px;
    color: grey;
}

.temoignages-footer-title {
    color: #D9FF9C;
    line-height: 130px;
    font-family: var(--font-family-card-p);
    font-weight: 900;
    font-size: 160px;
    text-align: center;
    letter-spacing: 0;
    margin-top: 2rem;
}

.comment-ca-marche{
    color: #D9FF9C;
    line-height: 130px;
    font-family: var(--font-family-card-p);
    font-weight: 900;
    font-size: 120px;
    text-align: center;
    letter-spacing: 0;
    margin-top: 2rem;
}

.tesitmony{
    color: #D9FF9C;
    line-height: 130px;
    font-family: var(--font-family-card-p);
    font-weight: 900;
    font-size: 120px;
    text-align: center;
    letter-spacing: 0;
    margin-bottom: 3rem;
     

}


/* --- STYLES  POUR LES ANIMATIONS DE TITRES --- */

/* Titres (Plus lents et plus "sentis") */
.comment-ca-marche,
.tesitmony,
.temoignages-footer-title {
    opacity: 0;
    transform: translateX(-80px); /* Augmenté de -50px */
    /* Ralenti de 1.5s à 1.8s */
    transition: opacity 1.8s ease-out, transform 1.8s ease-out; 
    visibility: hidden;
}
.comment-ca-marche.is-visible,
.tesitmony.is-visible,
.temoignages-footer-title.is-visible {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

/* Sous-titres (Plus lents et plus "sentis") */
.advantages-section .discover,
.testimony-para.discover {
    opacity: 0;
    transform: translateY(30px); /* Augmenté de 20px */
    visibility: hidden;
    /* Ralenti de 1.2s à 1.5s, délai augmenté à 0.3s */
    transition: opacity 1.5s ease-out 0.3s, transform 1.5s ease-out 0.3s;
}
.advantages-section .discover.is-visible,
.testimony-para.discover.is-visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* --- FIN DES NOUVEAUX STYLES --- */

/* SECTION TEMOIGNAGES RESPONSIVE */
@media (max-width: 768px) {
    .temoignages-section {
        padding: 60px 0;
    }

    .comment-ca-marche{
       
        color: #D9FF9C;
        font-family: var(--font-family-card-p);
        font-weight: 900;
        font-size: 50px;
        line-height: 1.1;
        letter-spacing: 0;
        text-align: left;
        position: relative;
        bottom: 1rem;
    
}
.tesitmony{
    margin-top: 1rem;
    margin-left: 1.8rem;
    color: #D9FF9C;
    font-family: var(--font-family-card-p);
    font-weight: 900;
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: 0;
    text-align: left;

}

    .stat-number {
        font-size: 60px !important;
    }

   

    .stat-label {
        font-size: 18px;
    }

    .temoignages-footer-title {
        font-size: 70px;
        line-height: 1.1;
        text-align: left;
        margin-left: 4rem;
    }

    .discover{
        font-size: 1.2rem;
    }
}

/* SECTION ADVANTAGES HEADER */
.advantages-header-section {
    background-color: #fff;
}



.advantages-header-title {
    font-weight: 500;
    font-size: 36px;
    color: #000000;
    line-height: 50px;
    text-box-edge: var(--text-box-edge);
    font-family: var(--font-family-card-h3);
}

.advantages-header-text {
    font-size: 16px;
    color: #000000;
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 100%;
    text-box-trim: var(--text-box-trim);
    text-box-edge: var(--text-box-edge);
    font-family: var(--font-family-card-h3);
    letter-spacing: 0;
}

.advantages-header-btn {
    border-radius: 30px;
    padding: 10px 25px;
    background-color: #000000;
    color: #FFFFFF;
    gap: 10px;
    font-family: var(--font-family-card-h3);
    font-weight: 700;
    font-size: 16px;
    text-box-trim: var(--text-box-trim);
    text-box-edge: var(--text-box-edge);
    letter-spacing: 0;
    width: 179px;
    height: 50px;
}

/* SECTION ADVANTAGES HEADER RESPONSIVE */
@media (max-width: 768px) {
    .advantages-header-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .advantages-header-text {
        font-size: 14px;
    }
}



/* Responsive Styles for mobile Footer Contact*/

@media (max-width: 768px) {
    .footer-title {
        font-size: 40px !important; 
        position:relative;
        bottom:70px;
        text-align:center; 
    }

    .footer-country-code, .footer-phone-number, .footer-country, .whatsapp-icon{
        font-size: 20px !important;
        position:relative;
        bottom:50px;
    }

    .footer-phone-number{
        margin-top: 10px !important;
        
        position:relative; 
        right:10px;
        position:relative;
        bottom:50px;
        
    }

    .text-reset .bi-instagram, .text-reset .bi-facebook, .text-reset .bi-linkedin, .text-reset .bi-twitter {
        color:white;
    }

    /* Product cards mobile improvements */
    .product-card .text-section {
        padding-top: 40px !important;
        padding-bottom: 30px !important;
    }

    .product-card .card-main-title {
        text-align: center !important;
        margin-bottom: 30px !important;
        font-size: 18px !important;
        font-weight: bolder !important;
    }

    .product-card h3 {
        text-align: center !important;
        margin-top: 20px !important;
        font-size: 12px !important;
        text-align:left; 
        
    }

    .product-card p {
        text-align: center !important;
        margin-top: 15px !important;
        font-size: 12px !important;
        text-align:left; 
        justify-content: center;
        display:none; 
    }

    .product-card .card-footer {
        text-align: center !important;
        padding-top: 20px;
       
    }

    .product-card .btn-custom,
    .product-card .btn-custom-card {
        padding: 5px 8px !important;
        font-size: 14px !important;
        display: inline-block;
    }

    .product-carousel-controls {
        justify-content: center !important;
    }
}

@media (max-width: 768px) {
    .testimonial-section-mobile-hide {
        display: none !important;
    }
}

