*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    outline-style: none;
}

html {
    font-size: 12px;
    color: #5c5b5b;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --txtaccent: #F5F5F5; /* Texte clair */
    --txtaccent1: #B0BEC5; /* Texte secondaire (gris clair) */
    --textaccent2: #78909C; /* Texte gris pour les détails */
    --textaccent3: #424242; /* Texte sombre */
    --txtaccent4: #1A237E; /* Bleu profond pour le texte principal */
    --txtaccent5: #ECEFF1; /* Texte très clair */

    --haccent: #078fff; /* Jaune doré pour les accents */
    --haccent_withOpacity: rgba(7, 247, 255, 0.6); /* Jaune avec opacité */
    --haccent2: #64B5F6; /* Bleu clair pour les interactions */

    --bgaccent: #1A237E; /* Bleu profond pour les arrière-plans */
    --bgaccent_withOpacity: rgba(26, 35, 126, 0.96); /* Bleu profond avec opacité */
}

.container{
    width: 95%;
    margin: 0px auto;
    padding: 0px;
}
/* SECTION ZERO = LANDING VIEW */
#sec-0{
    background: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)), url(../Images/chantier1.webp) no-repeat top center/cover;
}
#sec-0 header.top {
    background-color: var(--haccent);
    font-size: 0.85rem;
    color: var(--txtaccent4);
    padding-top: 6px;
}
#sec-0 header.top .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
#sec-0 header.top p {
    display: flex;
    width: 45%;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0px;
}
#sec-0 header.top p:nth-of-type(2) {
    justify-content: flex-end;
}
#sec-0 .top p::before{
    font-family: fontAwesome;
    display: inline-flex;
    width: 2em;
    justify-content: center;
    font-size: 1.2em;
}
#sec-0 .top p:first-of-type::before{
    content: "\f3cd";
}
#sec-0 .top p:nth-of-type(2)::before{
    content: "\f0e0";
}
#sec-0 .top p:last-of-type::before{
    content: "\f017";
}
#sec-0 .top .social {
    display: flex;
    width: 45%;
    justify-content: flex-end;
    gap: 5px;
}
#sec-0 .top .social a{
    font-size: 1.2rem;
    display: inline-block;
    padding: 5px 0px 5px 5px;
    color: inherit;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}
#sec-0 .top .social a:hover{
    transform: scale(1.15);
}
#sec-0 .top .social a img{
    height: 1.2em;
    margin-top: -5px;
}
#sec-0 header:last-of-type{
    background-color: var(--bgaccent);
    position: relative;
}
#sec-0 header:last-of-type .container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0px;
    position: relative;
}
#sec-0 header:last-of-type h1{
    font-size: 1.5rem;
    font-style: italic;
    font-weight: bold;
    color: var(--haccent);
    padding: 0px;
    margin: 0px;
}
#sec-0 header:last-of-type h1>span{
    color: var(--txtaccent);
}
#sec-0 header:last-of-type h1 p{
    font-size: 0.85rem;
    font-style: normal;
    color: var(--textaccent2);
    margin: 0px;
}
#sec-0 header label{
    color: var(--haccent);
    font-size: 2rem;
}
#sec-0 header nav a {
    display: block;
    text-decoration: none;
    color: var(--txtaccent1);
    text-align: center;
    padding: 10px;
    transition: background-color 0.6s ease;
    border-bottom: solid 1px var(--txtaccent1);
}
#sec-0 header nav a:hover{
    background-color: var(--haccent_withOpacity);
    color: var(--txtaccent);
}
#sec-0 header nav i {
    display: flex;
    text-decoration: none;
    color: var(--haccent);
    text-align: center;
    align-items: center;
    padding: 10px;
    font-size: 1.2em;
    transition: transform 0.3s ease-in-out;
    width: fit-content;
    margin: 0px auto;
}
#sec-0 header nav i:hover {
    transform: scale(1.3);
    cursor:pointer;
}
#sec-0 #searchBar {
    justify-content: center;
    align-items: flex-start;
    background: linear-gradient(rgba(0,0,0,0.9),rgba(0,0,0,0.9));
    backdrop-filter: blur(4px);
    position: absolute;
    width: 100%;
    height: 110vh;
    top: 100%;
}
#sec-0 #searchBox {
    display: block;
    min-width: 45%;
    padding: 10px 15px;
    text-align: center;
    border-radius: 30px;
    border-style: none;
    transform: translateY(25px);
}
#sec-0 #searchBox:focus {
    box-shadow: inset 0px 0px 25px var(--haccent2);
}
.show{
    display: flex;
}
.hide{
    display: none;
}

#sec-0 header input {
    display: none;
}
#sec-0 input + nav {
    display: none;
    width: 100%;
}
#sec-0 input:checked + nav {
    display: block;
}
#sec-0 article{
    display: flex;
    align-items: center;
    text-align: center;
    padding: 3rem 0px;
}
#sec-0 article h1{
    font-weight: normal;
    font-size: 1.25rem;
    color: var(--txtaccent);
    margin-bottom: 10px;
}
#sec-0 article h2{
    text-transform: uppercase;
    font-size: 1.85rem;
    color: var(--txtaccent);
    line-height: 1em;
    margin-bottom: 15px;
    font-weight: 700;
}
#sec-0 article h2 span{
    color: var(--haccent);
}
#sec-0 article p{
    color: var(--txtaccent);
    margin-bottom: 3rem;
    padding-left: 4rem;
    padding-right: 4rem;
}
#sec-0 article a{
    color: var(--haccent2);
    background-color: var(--txtaccent4);
    display: inline-block;
    padding: 8px 15px;
    margin-left: 5px;
    border: solid 1px var(--haccent2);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
}
#sec-0 article a:hover{
    background-color: var(--haccent2);
    color: var(--txtaccent);
}
/* SECTION ONE */
#sec-1 {
    background-color: var(--txtaccent);
}
#sec-1 article{
    padding-top: 20px;
    text-align: center;
}
#sec-1 article h1{
    font-size: 1.85rem;
    color: var(--haccent);
    font-weight: 700;
    text-transform: uppercase;
}
#sec-1 article h2{
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--textaccent3);
}
#sec-1 article p{
    font-size: 0.85rem;
    text-align: justify;
    margin: 1.3rem 0px 1.1rem;
}
#sec-1 article a{
    color: var(--txtaccent);
    background-color: var(--haccent);
    text-transform: uppercase;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 5px;
    display: inline-block;
    width: fit-content;
}
#sec-1 aside {
    width: 95%;
    margin: 25px auto 0px;
}
#sec-1 aside img{
    max-width: 100%;
}

#sec-2{
    background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url(../Images/bg4.jpg) no-repeat center center/cover;
    text-align: center;
    padding: 3rem 0px 1.8rem;
}
#sec-2 .container>h1{
    color: var(--haccent);
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}
#sec-2 .container>p {
    color: var(--txtaccent);
    margin-bottom: 30px;
}
#sec-2 article{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#sec-2 article figure{
    text-align: center;
    max-width: 63%;
    margin-top: 40px;
}
#sec-2 article .cont{
    background: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3));
    border-radius: 10px;
    padding: 95px 10px 20px;
    text-align: center;
    margin-top: -75px;
}
#sec-2 article figure div:first-of-type{
    width: 10em;
    height: 10em;
    background-color: var(--haccent2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
    position: relative;
    z-index: 1;
}
#sec-2 article figure img{
    max-width: 55%;
}
#sec-2 article figure h2{
font-size: 1.2rem;
text-transform: uppercase;
font-weight: 700;
margin-bottom: 10px;
color: var(--haccent2);
}
#sec-2 article figure p{
color: var(--txtaccent);
font-size: 0.88rem;
text-shadow:1px 1px #73757E;
}

#sec-3{
    background-color: var(--txtaccent);
    padding-top: 30px;
    padding-bottom: 30px;
}
#sec-3 h1{
    text-transform: uppercase;
    font-size: 1.7rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--bgaccent);
    font-weight: 900;
}
#sec-3 .cont{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
    align-content: space-around;
}
#sec-3 .card{
    width: 90%;
    margin-bottom: 30px;
}
#sec-3 .card p{
    text-align: justify;
    word-break: break-all;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}
#sec-3 .card>div{
    position: relative;
}
#sec-3 .caption{
    width: 100%;
    text-align: center;
    margin: 0px;
    color: var(--txtaccent);
    background-color: rgba(0,0,0,0.65);
    padding: 8px 15px 15px;
    position: absolute;
    bottom: 0px;
    font-size: 1.5rem;
    font-weight: 400;
}
#sec-3 a{
    color: var(--txtaccent);
    background-color: var(--haccent);
    text-transform: uppercase;
    text-decoration: none;
    padding: 6px 15px;
    border-radius: 5px;
    display: inline-block;
}
/* SECTION 4 */
#sec-4{
    background: linear-gradient(rgba(78, 76, 70, 0.8),rgba(78, 76, 70, 0.8)), url(../Images/chantier1.webp) no-repeat center center/cover;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 4rem;
}
#sec-4 h1{
    text-transform: uppercase;
    font-size: 1.7rem;
    margin-bottom: 1.6rem;
    color: var(--txtaccent);
    font-weight: 800;
}
#sec-4 p{
    color: var(--txtaccent);
    font-size: 0.9rem;
    padding: 0px 6rem;
    margin-bottom: 2rem;
}
#sec-4 .filter{
    margin-bottom: 2rem;
    padding: 0px 6rem;
}
#sec-4 .filter a{
    display: inline-block;
    padding: 3px 20px 5px;
    border-radius: 15px;
    color: var(--txtaccent);
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.65s ease;
    font-size: 0.85rem;
}
#sec-4 .filter a:hover{
    background-color: var(--bgaccent);
}
#sec-4 .cont{
    width: 90%;
    margin: 0px auto;
}
#sec-4 .cont>img{
    width: 100%;
    display: block;
    margin: 0px auto 20px;
}
#sec-4 aside{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
#sec-4 aside img{
    margin-bottom: 10px;
    width: 48%;
}
/* SECTION 5 */
#sec-5{
    background: url(../Images/bg3.jpg) no-repeat center center/cover;
    text-align: center;
    padding-top: 2rem;
    font-size: 0.9rem;
}
#sec-5 h1{
    text-transform: uppercase;
    font-size: 1.7rem;
    margin-bottom: 1.6rem;
    color: var(--txtaccent4);
    font-weight: 800;
}
#sec-5 h1+p{
    color: var(--txtaccent4);
    padding: 0px 2rem;
    margin-bottom: 4rem;
}
#sec-5 .cont{
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    gap: 5vh;
}
#sec-5 article{
    width: 70%;
}
#sec-5 .quotetxt{
    display: flex;
    align-items: stretch;
    padding: 1.8em 1.7em 2em 1em;
    background-color: var(--txtaccent5);
    text-align: justify;
    word-break: break-all;    
    position: relative;
}
#sec-5 .quotetxt p:first-child{
    padding-right: 0.7em;
}
#sec-5 .quotetxt p:first-child img{
    min-width: 100%;
}
#sec-5 .quotetxt p:last-child{
    padding-top: 3px;
}
#sec-5 .arrow:after {
    content: '';
    position: absolute;
    border: 15px solid transparent;
    border-top-color: var(--txtaccent5);
    left: calc(50% - 15px);
    top: 100%;
}
#sec-5 figure{
    margin-top: 1.85rem;
}
#sec-5 .customer{
    display: block;
    margin: 0px auto;
    border-radius: 50%;
}
#sec-5 figcaption{
    text-transform: uppercase;
    font-weight: 600;
    text-shadow:1px 1px #73757E;
}
#sec-5 article:nth-of-type(2) div.quotetxt{
    color: var(--txtaccent);background-color: var(--haccent);
}
#sec-5 article:nth-of-type(2) .arrow:after{
    border-top-color: var(--haccent);
}
#sec-5 .contactUs{
    padding-top: 1.5rem;
    background-color: var(--haccent_withOpacity);
    border-bottom: solid 2rem var(--textaccent3);
}
#sec-5 .contactUs h1{
    color: var(--textaccent3);
    text-transform: uppercase;
    font-size: 1.52rem;
    font-weight: 800;
    margin: 0px;
}
#sec-5 .contactUs h2{
    font-size: 2rem;
    font-weight: normal;
    text-transform: uppercase;
    margin: 0px;
}
#sec-5 .contactUs form{
    padding: 10px 0px 1.7rem;
    position: relative;
}
#sec-5 .contactUs form input{
    padding: 6px 15px;
    margin: 0px 5px 10px 0px;
    border-radius: 6px;
    border-style: none;
    color: var(--textaccent3);
}
#sec-5 .contactUs form input[type=submit]{
    padding: 6px 20px;
    text-transform: uppercase;
    font-weight: 600;
    background-color: var(--textaccent3);
    color: var(--txtaccent5);
}
#sec-5 .contactUs form input:focus{
    box-shadow: inset 0px 0px 10px var(--txtaccent1);
}
#sec-5 .contactUs form input[type=submit]:hover{
    box-shadow: inset 0px 0px 10px var(--txtaccent1);
}
#sec-5 .contactUs form input+p{
    width: 100%;
    margin: 0px auto;
    color:#ff0000;
    font-style: italic;
    font-size: 0.8rem;
    line-height: 1.1em;
    padding: 0px 6px;
    position: absolute;
    bottom: 2px;
}
.invalid{
    box-shadow: inset 0px 0px 10px #e67a7a;
}
/* SECTION SIX */
#sec-6{
    background: linear-gradient(rgba(0, 0, 0,0.9),rgba(0, 0, 0,0.9)), url(../Images/rascacielos-nueva-york.jpg) no-repeat center center/cover;
    padding-top: 2rem;
    padding-bottom: 4rem;
    font-size: 0.8rem;
}
#sec-6 .container{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    row-gap: 15px;
    color: var(--txtaccent5);
}
#sec-6 h1{
    font-weight: 400;
    font-size: 1.25rem;
    margin-bottom: 1.1rem;
}
#sec-6 .about h2{
    font-size: 1.3rem;
    font-weight: 800;
    font-style: italic;
    color: var(--haccent);
    padding-bottom: 5px;
    margin-bottom: 1rem;
}
#sec-6 .about h2 p{
    color: var(--txtaccent1);
    font-size: 0.8rem;
    font-weight: 400;
    margin-bottom: 0px;
}
#sec-6 .about>p{
    margin-bottom: 1.5rem;
}
#sec-6 .about a{
    display: inline-flex;
    padding: 5px;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    border-radius: 50%;
    background-color: var(--haccent);
    font-size: 1.25rem;
    color: var(--bgaccent);
    justify-content: center;
    align-items: center;
    transition: background-color ease-in;
    margin-top: 5px;
    text-decoration: none;
}
#sec-6 .about i{
    vertical-align: baseline;
}
#sec-6 .about a:hover{
    background-color: var(--txtaccent5);
}
#sec-6 .links a{
    color: inherit;
    text-decoration: none;
    display: block;
}
#sec-6 .links a{
    position: relative;
    padding: 0.2em;
    padding-left: 25px;
}
#sec-6 .links a::before{
    content: '';
    position: absolute;
    border: 0.35em solid transparent;
    border-left-color: var(--txtaccent5);
    left: 0px;
    top: 0.8em;
}
#sec-6 .links a:hover{
    text-decoration: underline;
}
#sec-6 .posts a{
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 1.1em;
    transition: background-color 0.7s ease-out;
    margin-left: -5px;
}
#sec-6 .posts a:hover{
    background-color: var(--haccent_withOpacity);
    color: var(--txtaccent);
}
#sec-6 .posts a span{
    display: inline-flex;
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
    border: solid 2px var(--txtaccent5);
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 25px;
    margin-right: 10px;
}
#sec-6 .contact p{
    margin-bottom: 15px;
    display: flex;
    margin-left: -1em;
}
#sec-6 .contact p::before{
    font-family: fontAwesome;
    display: inline-flex;
    min-width: 2em;
    justify-content: center;
    font-size: 1.2em;
}
#sec-6 .contact p:first-of-type::before{
    content: "\f3c5";
}
#sec-6 .contact p:nth-of-type(2)::before{
    content: "\f0e0";
}
#sec-6 .contact p:last-of-type::before{
    content: "\f3cd";
}
/* SECTION SEVEN */
#sec-7 {
    background-color: var(--bgaccent);
    padding: 20px 0px 10px;
    text-align: center;
    font-size: 0.7rem;
}
#sec-7 p{
    color: var(--txtaccent5);
}
#sec-7 p span{
    color: var(--haccent);
}

/*MEDIA QUERRIES*/
/*Smart phones */
@media (min-width: 576px) {
    html{
        font-size: 13px;
    }
    .container {
        width: 520px;
    }
    #sec-0 header nav a {
        background-color: transparent;
    }
    #sec-0 input + nav {
        background-color: var(--bgaccent_withOpacity);
        position: absolute;
        top: 100%;
        right: 0%;
        width: 35%;
        border-bottom-left-radius: 10px;
    }
    #sec-0 #searchBox {
        transform: translateY(25px);
    }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    html{
        font-size: 14px;
    }
    .container {
        width: 720px;
    }
    #sec-0 header.top {
        padding-top: 0px;
    }
    #sec-0{
        background-position: center center;
    }
    #sec-0 header.top .container {
        justify-content: flex-start;
    }
    #sec-0 header.top p {
        width: fit-content;
        margin-right: 10px;
    }
    #sec-0 .top .social {
        width: fit-content;
        flex-grow: 1;
    }
    #sec-0 header label{
        display: none;
    }
    #sec-0 header nav a {
        border-style: none;
    }
    #sec-0 input + nav {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-end;
        width: fit-content;
        position: static;
        border-radius: none;
        font-size: 0.8rem;
    }
    #sec-0 input:checked + nav {
        display: flex;
    }
    #sec-0 article{
        padding: 5rem 0px;
    }
    #sec-0 article h1{
        font-size: 2rem;
    }
    #sec-0 article h2{
        font-size: 3.5rem;
    }
    #sec-0 #searchBox {
        min-width: 35%;
    }
    #sec-1 .container{ 
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #sec-1 article{
        padding: 0px;
        text-align: left;
        width:51%;
        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
    }
    #sec-1 article p{
        padding-right: 1rem;
    }
    #sec-1 aside {
        width: 48%;
        margin: 0px;
        text-align: right;
    }
    #sec-2{
        padding: 4rem 0px 2.5rem;
    }
    #sec-2 article{
        justify-content: space-between;
    }
    #sec-2 article figure{
        max-width: 40%;
    }
    #sec-2 article figure img{
        max-width: 55%;
    }
    #sec-3 {
        padding-top: 40px;
        padding-bottom: 50px;
    }
    #sec-3 .cont{
        flex-direction: row;
    }
    #sec-3 .card{
        width: 48%;
    }
    #sec-3 .card:last-child{
        margin-left: auto;
        margin-right: auto;
    }
    #sec-4 .cont{
        width: 100%;
        margin: 0px;
    }
    #sec-4 aside img{
        margin-bottom: 15px;
        width: 48%;
    }
    #sec-5 h1+p{
        padding: 0px 6rem;
    }
    #sec-5 .cont{
        gap: 5vw;
    }
    #sec-5 article{
        width: 43%;
    }
    #sec-5 .contactUs form input+p{
        bottom: 4px;
    }
    #sec-6 .container{
        justify-content: space-between;
        row-gap: 25px;
    }
    #sec-6 .about{
        width: 65%;
    }
    #sec-6 .links{
        width: 20%;
    }
    #sec-6 .posts {
        width: 65%;
    }
    #sec-6 .contact {
        width: 20%;
    }
}
/* Standard PC screens */
@media (min-width: 1200px) {
    html{
        font-size: 15px;
    }
    .container {
        width: 1140px;
    }
    #sec-0 .top .social {
        gap: 10px ;
    }
    #sec-0 header:last-of-type .container{
        padding: 0.95rem 0px;
    }
    #sec-0 header nav a {
        margin-right: 10px;
        font-size: 0.92rem;
    }
    #sec-0 article p{
        padding-left: 14rem;
        padding-right: 14rem;
    }
    #sec-1 article h1{
        font-size: 2.7rem;
    }
    #sec-1 article h2{
        font-size: 1.8rem;
    }
    #sec-2{
        background-position: center top;
    }
    #sec-2 article{
        justify-content: space-evenly;
    }
    #sec-2 article figure{
        max-width: 21%;
    }
    #sec-3 {
        padding-top: 70px;
        padding-bottom: 60px;
    }
    #sec-3 .card{
        width: 31%;
    }
    #sec-3 .card:last-child{
        margin-left: 0px;
        margin-right: 0px;
    }
    #sec-4 .cont{
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
    }
    #sec-4 .cont>img{
        width: 50%;
        margin: 0px;
    }
    #sec-4 aside{
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        width: 49%;
        gap: 10px;
    }
    #sec-4 aside img{
        width: 49%;
        margin: 0px;
    }
    #sec-5{
        background-position: right center;
    }
    #sec-5 .cont{
        justify-content: space-between;
        gap: 0px;
        padding-bottom: 25px;
    }
    #sec-5 article{
        width: 30%;
    }
    #sec-5 .contactUs>.container {
        display: flex;
        justify-content: space-between;
    }
    #sec-5 .contactUs aside{
        width: 45%;
        text-align: left;
    }
    #sec-5 .contactUs form {
        width: 45%;
        padding-top: 0px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #sec-5 .contactUs form input {
        margin-right: 15px;
    }
    #sec-5 .contactUs form input:not(input[type=submit]) {
        flex-grow: 1;
    }
    #sec-5 .contactUs form input+p{
        text-align: left;
    }
    #sec-6 .container{
        justify-content: space-between;
        row-gap: 25px;
    }
    #sec-6 .about{
        width: 30%;
    }
    #sec-6 .links{
        width: 15%;
    }
    #sec-6 .posts {
        width: 20%;
    }
    #sec-6 .contact {
        width: 18%;
    }
}
@media (min-width: 1400px) {
    html{
        font-size: 17px;
    }
    .container {
        width: 1340px;
    }
}

/* Section Services Grid */
.services-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 30px; /* Spécifie l'espacement vertical */
    padding: 2rem 0;
    text-align: center;
}

.service-card {
    background: linear-gradient(145deg, var(--haccent), var(--haccent2));
    color: var(--txtaccent); /* Texte clair */
    width: 300px;
    height: 300px;
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1), inset 0px 4px 6px rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: center;
    padding: 1.5rem;
    word-wrap: break-word; /* Coupe les mots trop longs */
    overflow: hidden; /* Cache tout débordement d'image ou de texte */
}

.service-card i {
    font-size: 3.5rem; /* Augmenter la taille de l'icône */
    margin-bottom: 1rem;
    color: var(--txtaccent);
}

.service-card h3 {
    font-size: 1.8rem; /* Augmenter la taille du titre */
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--txtaccent4); /* Contraste plus fort */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); /* Ajouter une ombre légère */
}

.service-card p {
    font-size: 1rem; /* Taille légèrement réduite pour un bon contraste */
    color: #000000; /* Texte blanc pour un contraste maximal */
    line-height: 1.6;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.6); /* Ombre prononcée pour améliorer la lisibilité */
    margin-top: 0.5rem;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2), inset 0px 8px 12px rgba(255, 255, 255, 0.2);
    background: linear-gradient(145deg, var(--haccent2), var(--haccent)); /* Inverser les couleurs */
}

/* Références clients */
.references-clients {
    background: var(--txtaccent); /* Blanc simple */
    color: var(--textaccent3); /* Texte sombre */
    padding: 3rem 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.references-clients h1 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--txtaccent4); /* Bleu profond */
    margin-bottom: 2rem;
    text-transform: uppercase;
    display: inline-block;
    border-bottom: 3px solid var(--haccent2); /* Ligne bleue sous le titre */
    padding-bottom: 0.5rem;
}

.references-clients p {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: var(--textaccent2); /* Gris doux */
}

.references-clients ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
}

.references-clients ul li {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    color: var(--textaccent3);
    background: var(--txtaccent5); /* Gris clair */
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.references-clients ul li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.references-clients ul li i {
    color: var(--haccent); /* Jaune doré */
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* Certifications */
.certifications {
    background: linear-gradient(to right, var(--bgaccent), var(--bgaccent_withOpacity));
    color: var(--txtaccent);
    padding: 3rem 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.certifications h1 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--haccent2);
    margin-bottom: 2rem;
    text-transform: uppercase;
    border-bottom: 2px solid var(--haccent);
    display: inline-block;
    padding-bottom: 0.5rem;
}

.certifications p {
    margin-bottom: 2rem;
    font-size: 1.3rem;
    color: var(--txtaccent1);
}

.certifications ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
}

.certifications ul li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--txtaccent);
    background: var(--bgaccent_withOpacity);
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.certifications ul li:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.certifications ul li i {
    color: var(--haccent2);
    font-size: 1.8rem;
    margin-right: 1rem;
}

/* Contact Section */
.contact-section {
    background: transparent;
    color: var(--textaccent3);
    padding: 3rem 0;
    position: relative;
    text-align: center;
}

/* Titre principal de la section (au-dessus de la boîte) */
.contact-section .contact-title {
    font-size: 2.5rem;
    color: var(--txtaccent); /* Blanc */
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: bold;
    position: absolute;
    top: -2rem; /* Ajuster selon le positionnement */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* Conteneur principal de la boîte */
.contact-section .contact-box {
    background: rgba(0, 0, 0, 0.7); /* Fond semi-transparent */
    color: var(--txtaccent); /* Texte clair */
    padding: 2rem 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    width: 100%;
    text-align: left;
    margin: 3rem auto 0; /* Ajuster pour aligner la boîte sous le titre */
    position: relative;
}

/* Autres styles restent les mêmes */
.contact-section .contact-box p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-section .contact-box p i {
    color: var(--haccent); /* Jaune doré */
    font-size: 1.5rem;
}

.contact-section .contact-box a {
    color: var(--haccent2); /* Bleu clair */
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}

.contact-section .contact-box a:hover {
    color: var(--haccent); /* Jaune doré */
    text-decoration: underline;
}

/* Responsivité pour petits écrans */
@media (max-width: 576px) {
    .services-grid article {
        width: 90%;
    }
}

/* Styles généraux pour les nouvelles sections */
.new-services-section {
    padding: 50px 0;
}

.new-services-section:nth-child(odd) {
    background: #1A237E; /* Bleu profond, cohérent avec le site */
    color: #fff; /* Texte blanc pour un bon contraste */
}

.new-services-section:nth-child(even) {
    background: #E8EAF6; /* Bleu très clair pour un contraste doux */
    color: #1A237E; /* Texte bleu profond */
}

/* Titres des sections */
.new-services-section h2 {
    text-align: center;
    color: #078fff; /* Accent jaune doré pour attirer l'attention */
    margin-bottom: 20px;
    font-size: 28px;
    position: relative;
}

.new-services-section h2 i {
    margin-right: 10px;
    color: #078fff; /* Cohérence avec le titre */
}

/* Texte descriptif sous le titre */
.new-services-section p {
    text-align: center;
    margin-bottom: 30px;
    color: inherit; /* Automatique selon la section */
}

/* Grille des services */
.new-services-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Style des cartes individuelles */
.new-service-item {
    background: #fff; /* Blanc pour contraster avec le fond */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 300px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.new-service-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Titres des cartes */
.new-service-item h3 {
    font-size: 20px;
    color: #1A237E; /* Bleu profond pour les titres */
    margin: 15px 0;
}

/* Paragraphe des cartes */
.new-service-item p {
    font-size: 14px;
    color: #424242; /* Gris foncé pour un bon contraste */
    margin: 10px 15px;
    line-height: 1.5;
}

/* Images des cartes */
.new-service-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Bouton CTA (Call-to-Action) */
.new-service-item .cta {
    display: inline-block;
    margin: 15px 0;
    padding: 10px 20px;
    background: #1A237E; /* Fond bleu profond */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.new-service-item .cta:hover {
    background: #FFC107; /* Accent jaune doré au survol */
    color: #1A237E; /* Texte bleu profond pour contraste */
}

/* Nouvelle Section Contact */
#new-contact {
    background: #f4f8fc; /* Fond clair */
    padding: 40px 0;
}

.new-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.new-section-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #1A237E;
    margin-bottom: 10px;
}

.new-description {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.new-contact-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.new-contact-map {
    flex: 1;
    max-width: 45%;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px;
    background: #fff;
}

.new-contact-details {
    margin-top: 15px;
    font-size: 14px;
    color: #424242;
    text-align: center;
}

.new-contact-form {
    flex: 1;
    max-width: 50%;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.new-contact-form .new-form-group {
    margin-bottom: 20px;
}

.new-contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #1A237E;
    font-weight: bold;
}

.new-contact-form input,
.new-contact-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.new-contact-form textarea {
    resize: both;
    min-height: 100px;
    max-height: 500px;
}

.new-btn-submit {
    display: block;
    width: 100%;
    padding: 15px;
    background: #1A237E;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.new-btn-submit:hover {
    background: #3F51B5;
}

/* Responsive Design for New Contact Section */
@media only screen and (max-width: 1200px) {
    .new-container {
        padding: 15px;
    }
    .new-contact-map,
    .new-contact-form {
        max-width: 48%; /* Réduit légèrement la largeur sur les écrans moyens */
    }
}

@media only screen and (max-width: 992px) {
    .new-contact-map,
    .new-contact-form {
        max-width: 100%; /* Passe en empilement sur des écrans plus petits */
        margin-bottom: 20px; /* Ajoute de l'espace entre les sections empilées */
    }

    .new-contact-content {
        flex-direction: column; /* Empile les éléments */
        align-items: center;
    }
}

@media only screen and (max-width: 768px) {
    .new-section-title {
        font-size: 24px; /* Réduit la taille des titres */
    }

    .new-description {
        font-size: 14px; /* Ajuste la taille de la description */
    }

    .new-contact-form {
        padding: 20px; /* Réduit le padding du formulaire */
    }

    .new-contact-form input,
    .new-contact-form textarea {
        padding: 10px; /* Réduit la hauteur des champs d'entrée */
        font-size: 13px; /* Réduit la taille du texte */
    }

    .new-btn-submit {
        font-size: 14px; /* Réduit la taille du bouton */
        padding: 12px; /* Ajuste la hauteur */
    }
}

@media only screen and (max-width: 576px) {
    .new-section-title {
        font-size: 20px; /* Réduit encore la taille du titre */
    }

    .new-description {
        font-size: 12px; /* Réduit encore la taille de la description */
    }

    .new-contact-map,
    .new-contact-form {
        margin-bottom: 15px; /* Réduit l'espace vertical */
    }

    .new-contact-form {
        padding: 15px; /* Réduit davantage le padding du formulaire */
    }

    .new-contact-form label {
        font-size: 12px; /* Réduit la taille des labels */
    }

    .new-contact-form input,
    .new-contact-form textarea {
        padding: 8px; /* Réduit la hauteur des champs */
        font-size: 12px; /* Ajuste encore la taille du texte */
    }

    .new-btn-submit {
        font-size: 12px; /* Ajuste la taille du texte du bouton */
        padding: 10px; /* Réduit la hauteur */
    }
}


/* Section Réalisations */
/* Section Réalisations */
.realisations-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef); /* Fond clair dégradé élégant */
    padding: 60px 0;
    color: var(--textaccent3); /* Texte secondaire harmonieux */
}

.realisations-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Titre principal */
.realisations-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: var(--txtaccent4); /* Couleur principale */
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.realisations-section p {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--textaccent2); /* Texte subtil */
    margin-bottom: 50px;
}

/* Grille des réalisations */
.realisation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Article des réalisations */
.realisation-item {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.realisation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

/* Image de la réalisation */
.realisation-item img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 3px solid var(--haccent);
}

/* Titre de la réalisation */
.realisation-item h3 {
    font-size: 1.5rem;
    color: var(--txtaccent4);
    margin: 15px 20px 10px;
    text-transform: capitalize;
}

/* Description de la réalisation */
.realisation-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--textaccent3);
    margin: 0 20px 20px;
}

/* Carrousel pour les images */
.realisation-carousel {
    margin-top: 40px;
    padding: 20px 0;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.realisation-carousel img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.realisation-carousel img:hover {
    transform: scale(1.05);
}

/* Bouton CTA */
.realisation-item .cta {
    display: inline-block;
    background-color: var(--haccent2);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 20px;
    margin: 10px 20px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.realisation-item .cta:hover {
    background-color: var(--haccent);
    transform: scale(1.05);
}

/* Animation pour les paragraphes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.realisation-detail p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--textaccent2);
    margin-bottom: 30px;
    opacity: 0; /* Invisible avant l'animation */
    animation: fadeInUp 1s ease-out forwards; /* Animation */
    color: #078fff; /* Texte blanc pour contraste */
}

.realisation-detail p:nth-of-type(1) {
    animation-delay: 0.3s; /* Premier paragraphe */
}

.realisation-detail p:nth-of-type(2) {
    animation-delay: 0.6s; /* Deuxième paragraphe */
}

.realisation-detail p:nth-of-type(3) {
    animation-delay: 0.9s; /* Troisième paragraphe */
}

/* Boîte de texte pour captions */
.carousel-caption {
    background: rgba(0, 0, 0, 0.7); /* Fond noir avec opacité */
    color: #fff; /* Texte blanc pour contraste */
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    max-width: 80%; /* Limiter la largeur */
    margin: 0 auto;
}

/* Animation pour les captions */
.carousel-caption[data-aos] {
    opacity: 0; /* Invisible avant l'animation */
    transform: translateY(20px); /* Légèrement décalé vers le bas */
    transition: all 0.5s ease-in-out;
}

.carousel-caption[data-aos].aos-animate {
    opacity: 1; /* Visible après l'animation */
    transform: translateY(0); /* Position finale */
}

.nav-tabs {
    justify-content: center;
    border-bottom: 2px solid #ddd;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--txtaccent4);
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 10px;
}

.nav-tabs .nav-link.active {
    color: #fff;
    background-color: var(--haccent2);
    border-radius: 5px;
}

.tab-content {
    margin-top: 30px;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    max-width: 90%;
    margin: 0 auto;
}

/* Style pour les paragraphes dans carousel-item */
.carousel-item p {
    font-weight: bold; /* Texte en gras */
    color: var(--haccent); /* Bleu principal du site */
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center; /* Centrer le texte */
    margin-top: 10px; /* Espacement supérieur */
}

/* Style pour limiter la taille des images dans le carrousel */
.carousel-inner img {
    max-height: 700px; /* Hauteur maximale des images */
    object-fit: cover; /* Recadre les images pour s'adapter sans déformation */
    width: 100%; /* S'assure que les images remplissent toute la largeur */
    margin: 0 auto; /* Centre les images si elles sont plus petites */
    border-radius: 10px; /* Ajoute des coins arrondis pour un design élégant */
}

/* Style pour la légende du carrousel */
.carousel-caption {
    background: rgba(0, 0, 0, 0.6); /* Fond semi-transparent */
    color: white; /* Texte blanc */
    padding: 1rem; /* Espacement intérieur */
    border-radius: 5px; /* Coins arrondis */
    font-size: 1rem; /* Taille du texte */
    text-align: center;
    max-width: 80%; /* Limite la largeur des légendes */
    margin: 0 auto; /* Centre les légendes */
}

/* Section Confidentialité */
.confidentialite {
    background-color: var(--txtaccent); /* Fond clair */
    color: var(--textaccent3); /* Texte sombre */
    padding: 3rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.confidentialite h2 {
    font-size: 1.8rem;
    color: var(--txtaccent4); /* Bleu profond */
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    display: inline-block;
    border-bottom: 2px solid var(--haccent); /* Ligne dorée */
}

.confidentialite p {
    font-size: 1rem;
    color: var(--textaccent2); /* Gris doux */
    margin-bottom: 1.5rem;
    text-align: justify;
}

.confidentialite ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.confidentialite ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.confidentialite ul li i {
    font-size: 1.2rem;
    color: var(--haccent); /* Couleur accent */
    margin-right: 0.5rem;
}

.confidentialite ul li strong {
    font-weight: 600;
    color: var(--txtaccent3); /* Texte sombre */
}

.confidentialite ul li a {
    color: var(--haccent2); /* Bleu clair */
    text-decoration: none;
}

.confidentialite ul li a:hover {
    text-decoration: underline;
}

.confidentialite a {
    color: var(--haccent2); /* Bleu clair */
    text-decoration: none;
}

.confidentialite a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .confidentialite {
        padding: 2rem 1rem;
    }

    .confidentialite h2 {
        font-size: 1.5rem;
    }

    .confidentialite p {
        font-size: 0.95rem;
    }

    .confidentialite ul li i {
        font-size: 1rem;
    }
}

/* Section Conditions Générales */
.conditions {
    background-color: var(--txtaccent); /* Fond clair */
    color: var(--textaccent3); /* Texte sombre */
    padding: 3rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.conditions h2 {
    font-size: 1.8rem;
    color: var(--txtaccent4); /* Bleu profond */
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    display: inline-block;
    border-bottom: 2px solid var(--haccent); /* Ligne dorée */
}

.conditions h2 i {
    margin-right: 0.5rem;
    color: var(--haccent); /* Couleur accent */
}

.conditions p {
    font-size: 1rem;
    color: var(--textaccent2); /* Gris doux */
    margin-bottom: 1.5rem;
    text-align: justify;
}

.conditions ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.conditions ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.conditions ul li i {
    font-size: 1.2rem;
    color: var(--haccent); /* Couleur accent */
    margin-right: 0.5rem;
}

.conditions ul li strong {
    font-weight: 600;
    color: var(--txtaccent3); /* Texte sombre */
}

.conditions ul li a {
    color: var(--haccent2); /* Bleu clair */
    text-decoration: none;
}

.conditions ul li a:hover {
    text-decoration: underline;
}

.conditions a {
    color: var(--haccent2); /* Bleu clair */
    text-decoration: none;
}

.conditions a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .conditions {
        padding: 2rem 1rem;
    }

    .conditions h2 {
        font-size: 1.5rem;
    }

    .conditions p {
        font-size: 0.95rem;
    }

    .conditions ul li i {
        font-size: 1rem;
    }
}

/* Plan du site */
.plansite {
    background-color: var(--txtaccent); /* Fond clair */
    color: var(--textaccent3); /* Texte sombre */
    padding: 3rem 1.5rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
    max-width: 1100px;
    margin: 0 auto;
}

.plansite h2 {
    font-size: 2rem;
    color: var(--txtaccent4); /* Bleu profond */
    margin-bottom: 1rem;
    position: relative;
    text-transform: uppercase;
    display: inline-block;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--haccent); /* Ligne dorée */
}

.plansite p {
    font-size: 1.2rem;
    color: var(--textaccent2); /* Gris doux */
    margin-bottom: 2rem;
}

.plansite-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.plansite-block h3 {
    font-size: 1.5rem;
    color: var(--txtaccent4); /* Bleu profond */
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plansite-block ul {
    list-style: none;
    padding: 0;
}

.plansite-block ul li {
    margin-bottom: 0.5rem;
}

.plansite-block ul li a {
    color: var(--haccent2); /* Bleu clair */
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.plansite-block ul li a i {
    margin-right: 0.5rem;
}

.plansite-block ul li a:hover {
    color: var(--txtaccent4); /* Bleu profond */
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .plansite h2 {
        font-size: 1.8rem;
    }

    .plansite-block h3 {
        font-size: 1.3rem;
    }

    .plansite p {
        font-size: 1rem;
    }
}



.faq {
    background-color: var(--txtaccent);
    color: var(--textaccent3);
    padding: 3rem 1.5rem;
}

.faq h1 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--txtaccent4);
    margin-bottom: 2rem;
}

.faq p {
    text-align: center;
    color: var(--textaccent2);
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--textaccent5);
    padding-bottom: 1rem;
}

.faq-item h3 {
    font-size: 1.5rem;
    color: var(--txtaccent4);
    cursor: pointer;
}

.faq-item p {
    font-size: 1rem;
    color: var(--textaccent3);
    display: none; /* Hidden by default */
}

.faq-item h3:hover {
    color: var(--haccent2);
}

.faq-item h3.active + p {
    display: block; /* Show on click */
}

.comparateur {
    background-color: #f8f9fa; /* Couleur de fond claire */
    color: #333; /* Couleur du texte plus sombre pour contraste */
    padding: 3rem 1.5rem;
    text-align: center;
    border-radius: 8px; /* Coins arrondis pour un effet doux */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Légère ombre */
    margin: 2rem 0; /* Espacement au-dessus et en dessous */
}

.comparateur h1 {
    font-size: 2.5rem;
    color: #0056b3; /* Bleu profond pour le titre */
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.comparateur p {
    color: #555; /* Texte légèrement plus clair */
    margin-bottom: 2rem;
    font-size: 1.1rem; /* Taille légèrement augmentée */
}

.comparateur-table {
    width: 100%;
    max-width: 1200px; /* Limite de largeur pour un meilleur rendu */
    margin: 0 auto;
    border-collapse: collapse;
    border: 1px solid #dee2e6; /* Bordure claire */
}

.comparateur-table th,
.comparateur-table td {
    padding: 1.5rem; /* Espacement intérieur augmenté */
    text-align: center;
    border: 1px solid #dee2e6; /* Bordure pour séparation nette */
    font-size: 1rem;
}

.comparateur-table th {
    background-color: #007bff; /* Bleu clair */
    color: #fff; /* Texte blanc pour contraste */
    text-transform: uppercase;
}

.comparateur-table tr:nth-child(even) {
    background-color: #f1f3f5; /* Lignes claires alternées */
}

.comparateur-table tr:nth-child(odd) {
    background-color: #ffffff; /* Fond blanc pour contraste */
}

.comparateur-table td {
    color: #333; /* Texte sombre pour lisibilité */
}

.comparateur-table td:first-child {
    font-weight: bold;
    text-align: left;
}

@media (max-width: 768px) {
    .comparateur {
        padding: 1.5rem;
    }

    .comparateur-table {
        font-size: 0.9rem;
    }

    .comparateur-table th,
    .comparateur-table td {
        padding: 1rem;
    }
}

/* Section Isolation des Toitures */
.isolation-toitures {
    background: linear-gradient(135deg, #4A90E2, #50C9C3);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
}

.isolation-toitures h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.isolation-toitures .intro-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.isolation-toitures .features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.isolation-toitures .features .col-md-3 {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    width: calc(50% - 10px); /* Deux colonnes avec un espace entre elles */
    box-sizing: border-box;
}

.isolation-toitures .features .col-md-3:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.isolation-toitures .features i {
    color: #0056b3; /* Or pour les icônes */
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.isolation-toitures .features .col-md-3:hover i {
    color: #013368; /* Accentuation sur survol */
}

.isolation-toitures .features h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.isolation-toitures .features p {
    font-size: 1rem;
    font-weight: 300;
    color: #f9f9f9;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .isolation-toitures .features .col-md-3 {
        width: 100%; /* Une seule colonne sur les petits écrans */
    }
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
}

.features .col-md-4 {
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features .col-md-4:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.features i {
    font-size: 3rem;
    color: #0056b3;
    margin-bottom: 1rem;
}

.features h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.features p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Processus Section */
.processus {
    background: #f9f9f9;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 15px;
    margin: 4rem 0;
}

.processus h2 {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.timeline {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.timeline .step {
    background: #ffffff;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline .step:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.timeline .step i {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 1rem;
}

.timeline .step h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.timeline .step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, #ffffff, #f1f1f1);
    padding: 3rem 2rem;
    border-radius: 15px;
}

.faq h2 {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-align: center;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
    cursor: pointer;
    position: relative;
}

.faq-item h3::after {
    content: "+";
    position: absolute;
    right: 10px;
    font-size: 1.5rem;
    color: #0056b3;
    transition: transform 0.3s ease;
}

.faq-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    display: none;
}

.faq-item.active h3::after {
    transform: rotate(45deg);
}

.faq-item.active p {
    display: block;
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

[data-aos="fade-up"] {
    transform: translateY(0);
    opacity: 1;
}

/* Styles personnalisés pour la scrollbar */
::-webkit-scrollbar {
    width: 12px; /* Largeur de la scrollbar */
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #1a237e, #0056b3); /* Couleur de fond */
    border-radius: 10px; /* Bord arrondi */
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0056b3, #90caf9); /* Couleur de la barre */
    border-radius: 10px; /* Bord arrondi */
    border: 2px solid #ffffff; /* Ajoute un effet d'encadrement */
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #90caf9, #0056b3); /* Changement de couleur au survol */
}

::-webkit-scrollbar-thumb:active {
    background: #1a237e; /* Couleur au clic */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible; 
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #003366;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #0077b6;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Section Introduction */
.introduction {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(180deg, #0077b6, #003366);
    color: #ffffff;
}

.introduction h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.introduction p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #1a0101;
}

.introduction .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.introduction .col {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: #003366;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.introduction .col:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.introduction .col i {
    font-size: 3rem;
    color: #0077b6;
    margin-bottom: 15px;
}

/* Section Techniques */
.techniques {
    background: linear-gradient(180deg, #e3f2fd, #f7fcff);
    padding: 80px 20px;
    border-top: 5px solid #003366;
}

.techniques .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.techniques .col {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    color: #003366;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.techniques .col:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.techniques .col i {
    font-size: 3rem;
    color: #0077b6;
    margin-bottom: 15px;
}

.techniques .col h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.techniques .col p {
    font-size: 1rem;
    line-height: 1.5;
    color: #4a4a4a;
}

/* Section Supports */
.supports {
    background: linear-gradient(180deg, #f7fcff, #e3f2fd);
    text-align: center;
    padding: 80px 20px;
}

.supports ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
}

.supports li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #003366;
}

.supports li i {
    font-size: 1.5rem;
    color: #0077b6;
}

/* Section Surfaces */
.surfaces {
    background: #ffffff;
    padding: 80px 20px;
    border-top: 5px solid #0077b6;
}

.surfaces .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.surfaces .col {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    background: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.surfaces .col:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.surfaces .col h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #003366;
}

.surfaces .col p {
    font-size: 1rem;
    line-height: 1.5;
    color: #4a4a4a;
}

/* Section Avantages */
.advantages {
    background: linear-gradient(180deg, #0077b6, #003366);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.advantages .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.advantages .col {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    color: #003366;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantages .col:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.advantages .col i {
    font-size: 3rem;
    color: #0077b6;
    margin-bottom: 15px;
}

/* Section Introduction */
@media (max-width: 768px) {
    .introduction .row {
        flex-direction: column;
    }

    .introduction .col {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

/* Section Techniques */
@media (max-width: 1024px) {
    .techniques .row {
        flex-direction: column;
    }

    .techniques .col {
        flex: 1 1 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

/* Section Supports */
@media (max-width: 768px) {
    .supports ul {
        padding: 0 20px;
    }

    .supports li {
        justify-content: flex-start;
        text-align: left;
    }
}

/* Section Surfaces */
@media (max-width: 1024px) {
    .surfaces .row {
        flex-direction: column;
    }

    .surfaces .col {
        flex: 1 1 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

/* Section Avantages */
@media (max-width: 1024px) {
    .advantages .row {
        flex-direction: column;
    }

    .advantages .col {
        flex: 1 1 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

/* General Container Adjustments for Smaller Screens */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    p {
        font-size: 0.9rem;
    }
}

/* General Animation Optimization for Smaller Screens */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Section Contact */
.contact-us {
    background: linear-gradient(180deg, #003366, #0077b6);
    color: #ffffff;
    text-align: center;
    padding: 60px 20px;
    border-top: 5px solid #004080;
    animation: fadeIn 1.5s ease;
    overflow-x: hidden; /* Masque tout débordement horizontal */
    overflow-y: hidden;
}

.contact-us h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
}

.contact-us p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #d6eaff;
}

.contact-us .cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    background: #0077b6;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    margin: 0 auto; /* Centrer le bouton */
}

/* Hover animation for the button */
.contact-us .cta-button:hover {
    background: #005a99;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
}

/* Focus state for accessibility */
.contact-us .cta-button:focus {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
}

/* Button Animation */
.contact-us .cta-button::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    opacity: 0;
    transition: opacity 0.4s, transform 0.4s;
    transform: scale(1.2);
    z-index: -1;
}

.contact-us .cta-button:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-us h2 {
        font-size: 1.8rem;
    }

    .contact-us p {
        font-size: 1rem;
    }

    .contact-us .cta-button {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

.contact-us .container {
    max-width: 1200px; /* Limite la largeur maximale */
    margin: 0 auto; /* Centre horizontalement */
    padding: 0 20px; /* Évite les débordements */
    box-sizing: border-box; /* Inclut le padding dans la largeur totale */
}

/* General reset to avoid horizontal bars */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Empêche les barres horizontales sur tout le site */
}

/* Section Examples */
.examples {
    background: linear-gradient(180deg, #ffffff, #f4f8fc);
    padding: 60px 20px;
}

.examples .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.examples h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #003366;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
}

.examples h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #0077b6;
    margin: 10px auto 0;
    border-radius: 2px;
}

.examples .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.examples .col {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    padding: 15px;
}

.examples .col:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
}

.examples .col img {
    width: 100%;
    border-bottom: 3px solid #0077b6;
    border-radius: 8px 8px 0 0;
    transition: transform 0.3s ease;
}

.examples .col:hover img {
    transform: scale(1.05);
}

.examples .col h3 {
    font-size: 1.3rem;
    color: #003366;
    margin-top: 15px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.examples .col:hover h3 {
    color: #0077b6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .examples .col {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .examples .col {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Section Services */
.services-section {
    padding: 60px 20px;
    background: #f4f8fc;
}

.services-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #003366;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    text-transform: uppercase;
}

.services-section h2 i {
    color: #0077b6;
    margin-right: 10px;
}

.services-section p {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
}

/* Service Cards */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
}

.service-card img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #0077b6;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #003366;
    margin: 15px 0;
}

.service-card p {
    font-size: 1rem;
    color: #000000;
    padding: 0 10px 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-grid {
        flex-wrap: wrap;
        gap: 15px;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }

    .cta-button {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        gap: 20px;
    }

    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .introduction h2 {
        font-size: 2rem;
    }

    .introduction p {
        font-size: 1rem;
    }
}
.services-section, .introduction {
    overflow: visible; /* S'assure que rien ne soit masqué */
    padding: 40px 20px;
}

/* Section Services Uniques */
.custom-services-section {
    background-color: var(--bgaccent); /* Fond clair */
    padding: 60px 20px;
}

.custom-services-section h1 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--txtaccent); /* Bleu profond */
    margin-bottom: 40px;
    position: relative;
}

.custom-services-section h1::after {
    content: "";
    width: 80px;
    height: 4px;
    background: var(--haccent);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

/* Custom Services Wrapper */
.custom-services-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Unique Service Cards */
.custom-service-card-refection,
.custom-service-card-neufs,
.custom-service-card-autres {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    max-width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.custom-service-card-refection:hover,
.custom-service-card-neufs:hover,
.custom-service-card-autres:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
}

.custom-service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.custom-service-content {
    padding: 20px;
    flex-grow: 1;
}

.custom-service-content h5 {
    font-size: 1.5rem;
    color: var(--txtaccent4);
    margin-bottom: 15px;
}

.custom-service-content p {
    font-size: 1rem;
    color: var(--textaccent2);
    margin-bottom: 20px;
    line-height: 1.6;
}

.custom-service-link {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    background: var(--haccent);
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.custom-service-link:hover {
    background: var(--haccent2);
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .custom-services-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .custom-service-card-refection,
    .custom-service-card-neufs,
    .custom-service-card-autres {
        max-width: 90%;
    }
}

/* Section Random Services */
.random-services-section {
    background: url('/Images/chantier2.webp') no-repeat center center/cover;
    position: relative;
    padding: 80px 20px;
    color: var(--txtaccent5); /* Texte clair */
}

.random-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Couche sombre */
    backdrop-filter: blur(5px); /* Effet flou */
    z-index: 1;
}

.random-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.random-container h1 {
    font-size: 2.5rem;
    color: var(--txtaccent5);
    margin-bottom: 40px;
    position: relative;
}

.random-container h1::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--haccent);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

/* Grid Styling */
.random-services-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Individual Service Cards */
.random-service-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 300px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.random-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);
}

.random-service-icon {
    font-size: 3rem;
    color: var(--haccent);
    margin-bottom: 20px;
}

.random-service-card h3 {
    font-size: 1.5rem;
    color: var(--txtaccent4);
    margin-bottom: 10px;
}

.random-service-card p {
    font-size: 1rem;
    color: var(--textaccent3);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .random-services-grid {
        flex-direction: column;
        align-items: center;
    }

    .random-service-card {
        width: 90%;
    }
}

/* Section Bienvenue */
.unique-welcome {
    background: linear-gradient(to right, var(--bgaccent), var(--bgaccent_withOpacity));
    color: var(--txtaccent5); /* Texte clair */
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* Pour un affichage responsive */
    gap: 30px;
}

/* Texte Bienvenue */
.welcome-text {
    flex: 1;
    text-align: left;
    color: var(--txtaccent5);
    z-index: 2;
}

.welcome-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.welcome-text h2 {
    font-size: 1.8rem;
    color: var(--haccent2);
    margin-bottom: 20px;
}

.welcome-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.welcome-button {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    color: var(--txtaccent5);
    background: var(--haccent);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.welcome-button:hover {
    background: var(--haccent2);
    transform: translateY(-5px);
}

/* Image Bienvenue */
.welcome-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .welcome-container {
        flex-direction: column; /* Passage en colonne pour les petits écrans */
        text-align: center;
    }

    .welcome-text h1 {
        font-size: 2rem;
    }

    .welcome-text h2 {
        font-size: 1.5rem;
    }

    .welcome-text p {
        font-size: 0.9rem;
    }
}

/* END OF SHEET */