@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

#back-to-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: none;
    z-index: 200;
    text-align: center;
}

    #back-to-top .far {
        background-color: #66B4FF;
        color: #000000;
        width: 40px;
        height: 40px;
        font-size: 18px;
        line-height: 40px;
        border-radius: 5px;
    }

    a {
        text-decoration:none;
    }

a:not(.btn):not(.action-btn):not(.btn-hero-primary) {
    color: #4A90E2;
    text-decoration: none;
}

    a:not(.btn):not(.action-btn):not(.btn-hero-primary):hover,
    a:not(.btn):not(.action-btn):not(.btn-hero-primary):active,
    a:not(.btn):not(.action-btn):not(.btn-hero-primary):focus {
        text-decoration: underline;
    }

    a:hover,
    a:active,
    a:focus {
        text-decoration: none
    }


.bg-perso {
    display: none;
}

h1.title {
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 80px;
}

h2 {
    font-size: 40px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 30px;
    text-transform: uppercase;
}

@media(max-width:767px){
    h2 {
        word-break:break-word;
    }
}

.btn-default {
    background: linear-gradient(135deg, #216EBB 0%, #4A90E2 100%);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    display: inline-block;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .btn-default:hover,
    .btn-default:focus,
    .btn-default:active {
        background: linear-gradient(135deg, #4A90E2 0%, #216EBB 100%);
        border: none;
        transform: translateY(-3px);
    }

.btn-secondary-alt {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    padding: 1.2rem 2.5rem;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    text-transform: uppercase;
}

    .btn-secondary-alt:hover,
    .btn-secondary-alt:active,
    .btn-secondary-alt:focus {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-3px);
    }

/* Header */
header {
    background: #000000;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
}

    header .logo p {
        font-family: "Russo One";
        font-size: 26px;
        color: #2885E2;
        display: inline-block;
        margin: 0;
        margin-left: 30px;
        vertical-align: middle;
    }

    @media(min-width:992px){
        header .logo p {
            margin-left: 30px;
        }
    }

header + section, header + div {
    margin-top: 89px;
}

@media (max-width: 767px) {
    header + section, header + div {
        margin-top: 179px;
    }
}

@media(max-width:991px) {
    header .logo p {
        margin:5px 0;
        text-align:center;
        display:block;
    }
}

        header .logo p i {
            color: #66B4FF;
            text-shadow: 0 0 7.8px rgba(255, 255, 255, 0.40);
            font-size: 30px;
            margin-right: 10px;
            vertical-align: middle;
        }

    header .logo a {
        display: inline-block;
    }

    header .logo img {
        max-width: 360px;
    }

@media(max-width:767px) {
    header .logo img {
        max-width: 300px;
    }
}


.btn-devis {
    background: linear-gradient(135deg, #216EBB 0%, #4A90E2 100%);
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 110, 187, 0.3);
}

    .btn-devis:hover,
    .btn-devis:active,
    .btn-devis:focus{
        background: linear-gradient(135deg, #4A90E2 0%, #216EBB 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(33, 110, 187, 0.4);
    }

.btn-tel {
    background-color: transparent;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

    .btn-tel:hover,
    .btn-tel:active,
    .btn-tel:focus {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-3px);
    }

@media(max-width:767px){
    .btn-devis, .btn-tel {
        font-size: 13px;
        padding: 12px 15px;
    }
}


/* Hero Section */


.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 180px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url(/docs/pages/43/bg-hero-brperformance-2.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .hero-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(33, 110, 187, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    max-width: 100%;
}

    .hero-content .title-hero {
        font-size: 60px;
        font-weight: 900;
        margin-bottom: 1.5rem;
        line-height: 1.1;
        text-transform: uppercase;
        color: #ffffff;
    }

@media(max-width:991px) {

    .hero {
        padding: 0 15px;
        margin-top: 179px;
        height:calc(100vh - 179px);
    }
}

@media(min-width:992px) {


    .hero-content .title-hero + p span {
        display:block;
    }
}

    .hero-content h2 {
        font-size: 36px;
        line-height: 1.2;
        margin: 30px 0;
        font-weight: 800;
    }

    @media(max-width:767px) {
        .hero-content .title-hero {
            font-size: 26px;
        }

        .hero-content h2 {
            font-size: 17px;
            margin: 10px 0;
        }

        .hero-content .title-hero + p span {
            font-size: 15px;
        }
    }

    .liste-hero {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px 30px;
        max-width: 780px;
    }

        .liste-hero p {
            font-family: "Russo One";
            font-size: 30px;
            margin: 0;
            white-space: nowrap;
        }

            .liste-hero p span {
                color: #4A90E2;
            }


    .hero-cta {
        margin-top: 3rem;
    }

@media(max-width:767px) {
    .liste-hero {
        grid-template-columns: 1fr;
        gap: 5px 0;
    }

        .liste-hero p {
            font-size: 16px;
        }

            .liste-hero p span {
                text-shadow: 2px 0px 6px #000000;
            }

    .hero-cta {
        margin-top: 15px;
    }
}

    .btn-hero-primary {
        background: linear-gradient(135deg, #216EBB 0%, #4A90E2 100%);
        color: #ffffff;
        padding: 1.5rem 3rem;
        border: none;
        border-radius: 50px;
        font-weight: 800;
        font-size: 1.3rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.4s ease;
        box-shadow: 0 8px 30px rgba(33, 110, 187, 0.4);
        display: inline-flex;
        align-items: center;
        gap: 1rem;
        position: relative;
        overflow: hidden;
    }

        .btn-hero-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.6s ease;
        }

        .btn-hero-primary:hover::before,
        .btn-hero-primary:focus::before,
        .btn-hero-primary:active::before {
            left: 100%;
        }

        .btn-hero-primary:hover,
        .btn-hero-primary:focus,
        .btn-hero-primary:active {
            background: linear-gradient(135deg, #4A90E2 0%, #216EBB 100%);
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 15px 40px rgba(33, 110, 187, 0.6);
        }

        .btn-hero-primary i {
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }

        .btn-hero-primary:hover i,
        .btn-hero-primary:focus i,
        .btn-hero-primary:active i {
            transform: translateX(5px);
        }

@media (max-width: 768px) {
    .btn-hero-primary {
        font-size: 1rem;
        padding: 1.1rem 2rem;
    }
}

    /* Présentation */

    .presentation-centre {
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }

        .presentation-centre:before {
            content: "";
            position: absolute;
            height: 570px;
            width: 686px;
            left: 0;
            top: -135px;
            z-index: -1;
            background: url(/docs/pages/43/diagonales.svg);
        }

        .presentation-centre h1 {
            font-size: 46px;
            font-family: "Russo One";
            margin-bottom: 30px;
            text-transform: uppercase;
        }

            .presentation-centre h1 span {
                color: #4A90E2;
            }

        .presentation-centre span.first {
            font-size: 58px;
        }

    @media(max-width:991px) {
        .presentation-centre {
            padding: 40px 0;
        }

            .presentation-centre h1 {
                font-size: 30px;
            }

            .presentation-centre span.first {
                font-size: 38px;
            }

            .presentation-centre:before {
                height: 394px;
                width: 483px;
                left: -135px;
                background-size: contain !important;
            }
    }



    .presentation-centre h1 + h2 {
        font-family: "Russo One";
        font-size: 20px;
        font-weight: 400;
    }

    .presentation-centre h2 + p {
        font-weight: 500;
        margin: 30px 0;
    }


    .cta {
        display: flex;
        gap: 1.5rem;
    }

    @media(max-width:991px) {
        .cta {
            flex-direction: column;
        }
    }

    .action-btn {
        background: linear-gradient(135deg, rgba(33, 110, 187, 0.9) 0%, rgba(74, 144, 226, 0.8) 100%);
        border: none;
        border-radius: 15px;
        padding: 1.5rem;
        display: flex;
        align-items: center;
        gap: 1.2rem;
        text-decoration: none;
        color: #ffffff;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        flex: 1;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

        .action-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .action-btn:hover::before {
            left: 100%;
        }

        .action-btn:hover {
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.9) 0%, rgba(33, 110, 187, 0.9) 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(33, 110, 187, 0.2);
        }

    .btn-icon {
        width: 55px;
        height: 55px;
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

        .btn-icon i {
            color: #ffffff;
            font-size: 1.4rem;
        }

    .action-btn:hover .btn-icon {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
        transform: scale(1.1);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    }

        .action-btn:hover .btn-icon i {
            color: #ffffff;
            transform: scale(1.1);
        }


    .btn-content {
        display: flex;
        flex-direction: column;
        text-align: left;
        gap: 0.3rem;
    }

    .btn-title {
        color: rgb(255, 255, 255);
        font-weight: 700;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        line-height: 1.2;
    }

    .btn-subtitle {
        font-size: 0.85rem;
        font-weight: 500;
        line-height: 1.3;
    }

    .presentation-centre h2 {
        font-size: 40px;
        font-weight: 800;
        margin-top: 0;
        margin-bottom: 30px;
        text-transform: uppercase;
    }

    @media(max-width:991px) {
        .presentation-centre h2 {
            font-size: 32px;
        }
    }

    .presentation-centre h3 {
        font-size: 20px;
        font-weight: 700;
    }

    .mapContainer {
        border-radius: 20px;
    }

    .gps {
        margin-top: 30px;
    }

        .gps .row {
            justify-content: flex-start !important;
        }

        .gps a {
            text-align: center;
            color:white !important;
        }

            .gps a i {
                width: 55px;
                height: 55px;
                background: rgba(33, 110, 187, 0.2);
                border: 2px solid rgba(33, 110, 187, 0.3);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 24px;
                color: #ffffff;
                text-decoration: none;
                transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                position: relative;
            }

                .gps a i:hover,
                .gps a i:active,
                .gps a i:focus {
                    background: rgba(33, 110, 187, 0.3);
                    border-color: rgba(33, 110, 187, 0.5);
                    color: #ffffff;
                    transform: translateY(-3px);
                }

                .gps a:hover,
                .gps a:active,
                .gps a:focus {
                    text-decoration:none !important;
                }

        .gps p {
            margin-top: 10px;
            font-size: 18px;
            text-transform: uppercase;
            font-weight: 700;
        }

    /*******************************************************
INFOWINDOW
********************************************************/

    .gm-style .gm-style-iw-c {
        padding: 0;
        max-height: 290px !important;
    }

    .gm-style .gm-style-iw-d {
        max-height: 290px !important;
    }

.gm-ui-hover-effect {
    position: absolute !important;
    width: 40px !important;
    height: 40px !important;
    right: 0;
}

.gm-style .gm-style-iw-t::after {
    height: 0;
}

    .gm-style-iw .infowindows {
        font-size: 15px;
        color: #020407;
        padding: 15px;
        line-height: 1.3;
        font-family: Montserrat !important;
    }

    .infowindows [itemprop=name] {
        margin-bottom: 10px;
        font-size: 18px;
    }

        .infowindows [itemprop=name] b {
            font-weight: 700;
            color: #2885E2;
        }

    .infowindows .map-phone-number,
    .infowindows .map-opening-time {
        margin: 10px 0;
        position: relative;
        padding-left: 25px;
    }

        .infowindows .map-phone-number:before,
        .infowindows .map-opening-time:before {
            position: absolute;
            font-family: 'Font Awesome 6 Pro';
            font-weight: 300;
            color: #4A90E2;
            left: 0;
            top: 1px;
        }

        .infowindows .map-phone-number:before {
            content: "\f095";
        }

        .infowindows .map-opening-time:before {
            content: "\f017";
        }

    .infowindows .map-bt-itineraire {
        display: none;
    }

    .infowindows .map-phone-number {
        font-weight: 700;
    }


    .bloc-horaire {
        border-radius: 20px;
        border: 2px solid rgba(33, 110, 187, 0.30);
        padding: 35px;
    }

    @media(max-width:767px) {
        .bloc-horaire {
            padding: 20px;
        }
    }

    .bloc-horaire h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

        .bloc-horaire h3 i {
            color: #4A90E2;
            font-size: 32px;
            margin-right: 15px;
            vertical-align: middle;
        }

    .bloc-horaire .horaires {
        margin: 0;
        padding: 0;
    }

        .bloc-horaire .horaires li {
            padding: 10px 0;
            font-size: 16px;
            display: flex;
            justify-content: flex-end;
        }

            .bloc-horaire .horaires li span:first-child {
                flex: 1 0 0%;
            }

            .bloc-horaire .horaires li:last-child {
                padding-bottom: 0;
            }

            .bloc-horaire .horaires li + li {
                border-top: 1px solid rgba(255, 255, 255, 0.10);
            }

            .bloc-horaire .horaires li.closed span:last-child {
                color: #FF6B6B;
            }

    #carouselPhotos .carousel-indicators {
        display: none;
    }

    #carouselPhotos .carousel-indicators {
        display: none;
    }

    .carousel a {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.7);
        color: #ffffff;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 2;
    }

        .carousel a span {
            width: 20px;
        }

    .carousel-control-next {
        right: 10px;
    }

    .carousel-control-prev {
        left: 10px;
    }

    #carouselPhotos .carousel-inner {
        border-radius: 20px;
    }

    .info-bflash {
        padding: 60px 0 45px 0;
    }

        .info-bflash img {
            border-radius: 20px;
        }

    @media(max-width:767px) {
        .info-bflash {
            padding: 10px 0 20px 0;
        }
    }

    @media(max-width:991px) {
        .info-bflash h2 {
            font-size: 32px;
        }
    }

    .info-conversion-ethanol {
        padding: 45px 0 70px 0;
        position: relative;
    }

        .info-conversion-ethanol img {
            padding: 30px 40px;
            border: 2px solid rgba(33, 110, 187, 0.30);
            border-radius: 20px;
        }

        .info-conversion-ethanol::before {
            content: "";
            position: absolute;
            height: 570px;
            right: 117px;
            top: -40px;
            z-index: -1;
            width: 686px;
            transform: scaleX(-1);
            background: url(/docs/pages/43/diagonales.svg);
        }

    @media(max-width:767px) {


        .info-conversion-ethanol {
            padding: 20px 0 40px 0;
            position: relative;
        }

            .info-conversion-ethanol::before {
                height: 394px;
                width: 502px;
                background-size: contain !important;
            }
    }

    @media(max-width:991px) {
        .info-conversion-ethanol h2 {
            font-size: 32px;
        }
    }

    @media(min-width:768px) {
        .solutions-br-performance {
            padding: 45px 0;
        }
    }

    .solutions-br-performance h2 {
        margin-bottom: 60px;
    }

    @media(max-width:991px) {
        .solutions-br-performance h2 {
            font-size: 32px;
        }
    }

    .solutions-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        max-width: 970px;
        margin: 0 auto;
    }

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

    .solution-card {
        background: transparent;
        border: 2px solid rgba(33, 110, 187, 0.3);
        border-radius: 25px;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        backdrop-filter: blur(15px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
        opacity: 1;
        transform: translateY(0px);
        transition: opacity 0.6s, transform 0.6s;
    }

        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(33, 110, 187, 0.1) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 1;
        }

        .solution-card:hover::before {
            opacity: 1;
        }

        .solution-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(33, 110, 187, 0.6);
            background: rgba(33, 110, 187, 0.1);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(33, 110, 187, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

    .solution-header {
        padding: 3rem 2.5rem 2rem;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .solution-icon {
        width: 85px;
        height: 85px;
        background: transparent;
        border: 3px solid #216EBB;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 2.5rem auto;
        transition: all 0.5s ease;
        position: relative;
        box-shadow: 0 8px 25px rgba(33, 110, 187, 0.3), inset 0 2px 10px rgba(255, 255, 255, 0.05);
    }

        .solution-icon::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: rgba(33, 110, 187, 0.1);
            border-radius: 50%;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

    .solution-card:hover .solution-icon::before {
        opacity: 1;
    }

    .solution-icon i {
        color: #ffffff;
        font-size: 2rem;
        transition: all 0.5s ease;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .solution-card:hover .solution-icon {
        background: rgba(33, 110, 187, 0.15);
        border-color: #4A90E2;
        transform: scale(1.1);
        box-shadow: 0 12px 35px rgba(33, 110, 187, 0.6), inset 0 3px 15px rgba(255, 255, 255, 0.1);
    }

        .solution-card:hover .solution-icon i {
            transform: scale(1.1);
            color: #4A90E2;
        }

    .solution-header h3 {
        color: #ffffff;
        font-size: 1.4rem;
        font-weight: 700;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        line-height: 1.3;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .solution-content {
        padding: 0 2.5rem 3rem;
        position: relative;
        z-index: 2;
    }

        .solution-content p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
            font-size: 1.05rem;
            margin: 0;
            text-align: center;
        }

    .type-vehicule {
        padding: 45px 0;
        background: linear-gradient(192deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgb(33 110 187 / 40%) 100%);
    }

        .type-vehicule h2 {
            text-align: center;
            margin-bottom: 80px;
        }

    @media(max-width:991px) {
        .type-vehicule h2 {
            font-size: 32px;
        }
    }

    .type-vehicule .img-container {
        aspect-ratio: 3 / 4;
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        display: block;
        background-position: center;
        background-size: 100%;
        transition: all .3s ease;
    }

    @media(max-width:991px) {
        .type-vehicule .img-container {
            margin-bottom: 30px;
        }
    }

@media(max-width:767px) {
    .type-vehicule .img-container {
        aspect-ratio: 1/1;
    }
}

    .type-vehicule .img-container:hover {
        background-size: 120%;
        transition: all .3s ease;
    }


    .type-vehicule .img-container p {
        font-family: "Russo One";
        font-size: 40px;
        position: absolute;
        bottom: 40px;
        left: 40px;
        z-index: 3;
        line-height: 1;
        color:white;
        margin: 0;
    }

    .type-vehicule .img-container::before {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        background-color: #093E73;
        opacity: 0.6;
        left: 0;
        z-index: 2;
    }

    .engagements {
        background: linear-gradient(342deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgb(33 110 187 / 40%) 100%);
    }

    @media(min-width:768px) {
        .engagements {
            padding: 45px 0;
        }
    }


    @media(max-width:991px) {
        .engagements h2 {
            font-size: 30px;
        }
    }

    .commitment-list {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        max-width: 1000px;
        margin: 0 auto;
    }

    .commitment-item {
        background: transparent;
        border: 2px solid rgba(33, 110, 187, 0.3);
        border-radius: 20px;
        padding: 3rem;
        display: flex;
        align-items: center;
        gap: 3rem;
        transition: all 0.4s ease;
        backdrop-filter: blur(15px);
        position: relative;
        opacity: 1;
        transform: translateY(0px);
        transition: opacity 0.6s, transform 0.6s;
        overflow: hidden;
    }

    @media(max-width:991px) {

        .commitment-item {
            padding: 30px;
            align-items: flex-start;
            flex-direction: column;
        }
    }

    .commitment-item::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
        transform: rotate(45deg);
        transition: all 0.6s ease;
    }

    .commitment-item:hover::before {
        right: 100%;
    }

    .commitment-item:hover {
        transform: translateY(-5px);
        border-color: rgba(33, 110, 187, 0.5);
        background: rgba(0, 0, 0, 0.5);
        box-shadow: 0 20px 40px rgba(33, 110, 187, 0.2);
    }

    .commitment-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-right: 1.5rem;
        margin-bottom: 0.5rem;
    }

        .commitment-icon i {
            font-size: 3rem;
            color: #66B4FF;
            text-shadow: 0px 0px 7.8px rgba(255, 255, 255, 0.40);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            filter: drop-shadow(0 2px 4px rgba(33, 110, 187, 0.2));
        }

    .commitment-item:hover .commitment-icon i {
        color: #4A90E2;
        transform: scale(1.2);
        filter: drop-shadow(0 6px 20px rgba(74, 144, 226, 0.4));
    }

    .commitment-details {
        flex: 1;
    }

        .commitment-details h3 {
            color: #ffffff;
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .commitment-details p {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
            font-size: 1.1rem;
            margin: 0;
        }

    .avis-client {
        padding: 45px 0;
    }

        .avis-client h2 {
            text-align: center;
        }

            .avis-client h2 span {
                font-family: "Russo One";
                color: #4A90E2;
                display: block;
            }

    @media(max-width:991px) {
        .avis-client h2 {
            font-size: 32px;
        }
    }

.avis-client .note-google {
    display: inline-block;
    border: 1px solid rgba(33, 110, 187, 0.30);
    background: rgba(33, 110, 187, 0.10);
    padding: 15px 20px;
    margin-bottom: 60px;
    border-radius: 15px;
}

.avis-client .note-google p{
    margin:0;
    text-align:left;
    line-height:1;
}

    .avis-client .note-google .global-score {
        font-size: 42px;
        font-weight: 700;
    }

        .avis-client .note-google .global-score span {
            font-size: 26px;
        }

    .avis-client .note-google .total-review {
        font-size: 14px;
        font-weight: 500;
        margin-top:10px;
    }

    .avis-client .avis {
        background-color: transparent;
        padding: 30px;
        height: 100%;
        border-radius: 15px;
        border: 2px solid rgba(255, 255, 255, 0.30);
    }

    @media(max-width:767px) {
        .avis-client .col-md {
            margin-bottom: 30px;
        }
    }


    .avis-client .name {
        font-weight: 600;
        display: inline-block;
        margin-right: 5px;
        position: relative;
        margin-top: 0;
        margin-bottom: 10px;
        padding-left: 60px;
    }

    .avis-client .avis .name img {
        position: absolute;
        left: 0;
        max-width: 50px;
        margin: 0;
    }

    .avis-client .avis .name span {
        font-weight: 300;
        display: block;
        font-size: 14px;
        color: #868686;
    }

    .avis-client .avis .star {
        display: inline-block;
        vertical-align: top;
        line-height: 1.4;
        float: right;
        margin: 0;
    }

    .home-avis .avis .star .fas {
        font-size: 13px;
        color: #ffc100;
    }



    footer {
        background: #000000;
        padding-top: 60px;
        color: #ffffff;
        border-top: 1px solid rgba(33, 110, 187, 0.2);
    }

        footer .copyright {
            display: none;
        }

        footer .footer-bottom a {
            text-decoration: none;
        }

    .footer-content {
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(250,250,250,0.2);
    }

    @media(min-width:768px) {
        .footer-content {
            display: flex;
        }

        .footer-section img {
            max-width: 425px;
        }
    }

    .footer-section h3 {
        color: #ffffff;
        margin-bottom: 1.5rem;
        font-size: 1.3rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .footer-section p {
        margin-bottom: 0.8rem;
        font-weight: 500;
    }

        .footer-section .score {
            font-size: 18px;
            font-weight: 700;
            margin-left:20px;
        }

    .footer-section a {
        color: white !important;
    }

        .footer-section a:hover,
        .footer-section a:active,
        .footer-section a:focus {
            color: #216EBB;
        }

    footer ul {
        margin-left: 0;
        padding: 0;
    }

    @media(max-width:767px) {
        .footer-section .score {
            display:block;
            margin:0;
        }

        footer ul li {
            list-style: none;
        }

            footer ul li a {
                padding: 10px 0;
                color:white;
                display: inline-block;
                text-decoration: none;
            }
    }


    @media(min-width:768px) {
        footer ul {
            margin-top: 30px;
        }

            footer ul li {
                display: inline-block;
                list-style: none;
                position: relative;
            }

                footer ul li + li:before {
                    content: "";
                    position: absolute;
                    width: 6px;
                    height: 6px;
                    border-radius: 100%;
                    background-color: #ffffff;
                    left: -3px;
                    top: 9px;
                }

                footer ul li a {
                    font-weight: 500;
                    font-size: 16px;
                    text-decoration: none;
                    padding: 0 20px;
                }
    }

    @media(min-width:992px) {

        footer ul li:first-child a {
            padding-left: 0;
        }
    }


    .social-icons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }


        .social-icons a {
            width: 45px !important;
            height: 45px !important;
            background: rgba(33, 110, 187, 0.2) !important;
            border: 2px solid rgba(33, 110, 187, 0.3) !important;
            border-radius: 50% !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            color: #ffffff !important;
            text-decoration: none !important;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
            position: relative !important;
        }

            .social-icons a:hover,
            .social-icons a:active,
            .social-icons a:focus {
                background: rgba(33, 110, 187, 0.3) !important;
                border-color: rgba(33, 110, 187, 0.5) !important;
                color: #ffffff !important;
                transform: translateY(-3px) !important;
            }

            .social-icons a i {
                font-size: 1.1rem !important;
                position: absolute !important;
                top: 50% !important;
                left: 50% !important;
                transform: translate(-50%, -50%) !important;
                color: #ffffff !important;
            }

    .footer-bottom {
        text-align: center;
        margin: 30px 0;
        font-weight: 500;
    }


    .form {
        text-align: center;
        padding: 80px 0;
        position: relative;
    }

    @media (max-width: 767px) {
        .form {
            padding: 35px 0;
        }
    }

    .form::before {
        content: "";
        position: absolute;
        height: 570px;
        width: 686px;
        left: 0;
        top: -135px;
        z-index: -1;
        background: url(/docs/pages/43/diagonales.svg);
    }

    @media (max-width: 767px) {
        .form::before {
            height: 394px;
            width: 483px;
            left: -135px;
            background-size: contain !important;
        }
    }

    .form h2 {
        margin-bottom: 40px;
    }


        .form h2 + h3 {
            font-size: 26px;
            font-weight: 400;
            color: #4A90E2;
            font-family: "Russo One";
        }

    .form .form-group label {
        font-size: 17px;
        font-weight: 700;
        margin-bottom: 5px;
        text-transform: uppercase;
    }

    .form form {
        margin-top: 40px;
        padding: 0 15px;
    }

    .form-group small {
        display: block;
    }


    @media(min-width:992px) {
        .form form {
            padding: 0 80px;
        }
    }

    @media(max-width:991px) {
        .form h2 {
            font-size: 32px;
        }
    }


    .form-group {
        text-align: left;
    }

    .form-control {
        padding: 15px;
        background-color: transparent;
        border: 2px solid rgba(255,255,255,0.3);
        border-radius: 15px;
        color: white;
    }

        .form-control:focus {
            background-color: transparent;
            border: 2px solid #4A90E2;
            box-shadow: none;
            outline: none;
            color: white;
        }

        .form-control.input-validation-error {
            border: 2px solid #FF6987;
            box-shadow: none;
            outline: none;
        }

    .field-validation-error {
        color: #FF6987 !important;
        font-size: 13px;
        line-height: 1.2;
        display: inline-block;
        margin-top: 5px;
        font-weight: 500;
        font-style: italic;
    }

    form .alert-danger {
        border: 2px solid #FF6987;
        background-color: #2e1318;
        color: white;
        border-radius: 15px;
    }

    /*.form-control:-webkit-autofill,
.form-control:-internal-autofill-selected {
    box-shadow: inset 0 0px 0 40px #000000 !important;
    transition: none;
    color:white;
}*/

    .form small {
        font-style: italic;
    }

    input[type="checkbox"] {
        width: 18px;
        height: 18px;
        vertical-align: middle;
        display: inline-block;
        appearance: none;
        border: 2px solid #4A90E2;
        border-radius: 3px;
    }

        input[type="checkbox"]:checked {
            accent-color: #4A90E2;
            appearance: auto;
        }


        input[type="checkbox"] + label {
            padding: 5px;
        }


    .grecaptcha-badge {
        margin: 20px auto;
    }


    #form-confirm-modal .close {
        background-color: transparent;
        float: right;
        font-size: 25px;
    }

    #form-confirm-modal .modal-content {
        background-color: #000000;
        border: 2px solid #376aa7;
    }

    #form-confirm-modal .modal-footer {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    #form-confirm-modal .btn {
        background: transparent;
        color: #ffffff;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        padding: 10px 15px;
        display: inline-block;
        font-size: 1.1rem;
        font-weight: 700;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
    }

        #form-confirm-modal .btn:hover,
        #form-confirm-modal .btn:active,
        #form-confirm-modal .btn:focus {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-3px);
        }




    /* gestion des cookies*/
    #cookiesModal .modal-content {
        background-color: #000000;
        border: 2px solid #376aa7;
    }

    #cookiesModal .modal-header button {
        background-color: transparent;
    }

        #cookiesModal .modal-header button span {
            color: white;
            font-size: 40px;
            line-height: 1;
        }

    #cookiesModal .modal-title {
        font-weight: 700;
        font-size: 26px;
        color: #4A90E2;
    }

    #cookiesModal h2,
    #cookiesModal h3 {
        font-size: 24px;
    }

    #cookiesModal .form-group {
        margin-bottom: 15px;
    }

    #cookiesModal .btn {
        font-weight: 600;
    }

        #cookiesModal .btn.notActive {
            color: #585858;
        }

    #cookiesModal .modal-footer {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    #cookiesModal .modal-header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

/* cookie bar */

.weCookieBar .btn-default {
    padding: 10px 25px;
    margin: 5px;
    font-size: 14px;
}

.weCookieBar .btn-link {
    color: white;
}

/* 404 */

.page-error {
    text-align: center;
    background: linear-gradient(31deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgb(33 110 187 / 40%) 100%);
    padding: 100px 0;
}

    .page-error h1 {
        text-align: center;
        font-size: 90px;
        font-weight: 900;
        color: #4A90E2;
        line-height: 1;
    }

        .page-error h1 span {
            display: block;
            font-weight: 600;
            margin-top: 10px;
            font-size: 39px;
            color: white;
            text-transform: uppercase;
        }

    .page-error p {
        padding: 30px;
        color: white;
    }

    .page-error a {
        background: linear-gradient(135deg, #216EBB 0%, #4A90E2 100%);
        color: #ffffff;
        padding: 1.2rem 2.5rem;
        border: none;
        border-radius: 12px;
        font-weight: 700;
        font-size: 1.1rem;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: inline-block;
        color: white !important;
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

        .page-error a:hover,
        .page-error a:active,
        .page-error a:focus {
            background: linear-gradient(135deg, #4A90E2 0%, #216EBB 100%);
            color:white;
            text-decoration:none !important;
            border: none;
            transform: translateY(-3px);
        }

/* Mentions Légales */

.mentions-legales {
    background: linear-gradient(31deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgb(33 110 187 / 40%) 100%);
    padding: 80px 0;
}


    .mentions-legales dt {
        font-weight: 400;
    }

    .mentions-legales dt,
    .mentions-legales dd {
        display: inline-block;
    }


    .mentions-legales h2 {
        font-size: 32px;
        font-weight: 700;
        text-transform: uppercase;
        margin-top: 80px;
        margin-bottom: 30px;
    }

    .mentions-legales h3 {
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 30px;
    }