/* Variables CSS */

:root {

    --primary-color: #4a9f4e;

    --secondary-color: #ff6b35;

    --text-dark: #2E2D2B;

    --text-light: #666;

    --bg-light: #f8f9fa;

    --white: #ffffff;

    --border-color: #e0e0e0;

    --shadow: 0 2px 10px rgba(0,0,0,0.1);

    --transition: all 0.3s ease;

}



html, body {

    margin: 0;

    padding: 0;

    width: 100%;

    overflow-x: hidden;

}

.th_conta_page_ {    

    min-height: 91vh;

}



/* EmpÃƒÂªche tout dÃƒÂ©bordement latent dans les sections */

* {

    box-sizing: border-box;

}



/* VÃƒÂ©rifie que les conteneurs ne dÃƒÂ©passent pas */

.container {

    max-width: 100%;

    overflow-x: hidden;

}



/* Si flex est utilisÃƒÂ©, empÃƒÂªcher les dÃƒÂ©bordements */

.tax-credit .container,

.zone .container {

    flex-wrap: wrap;

}



/* Images et autres ÃƒÂ©lÃƒÂ©ments visuels */

img {

    max-width: 100%;

  height: auto;

  display: block;

  image-rendering: auto;        

  image-rendering: crisp-edges;

}



h2 {

    font: normal normal bold 2.5rem/60px Poppins;

}



/* Reset et base */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}





body {

    font-family: 'Poppins', sans-serif;

    line-height: 1.6;

    color: var(--text-dark);

    overflow-x: hidden;

}



.container {

    width: calc(100% - 30px);

    max-width: 1200px;

    margin: 0 auto;

}



/* Header */

.header {

    /* background: var(--white); */

    background: hwb(0deg 0% 100% / 23%);

    box-shadow: var(--shadow);

    position: absolute;

    width: 100%;

    top: 0;

    z-index: 1000;

}



.header.sticky {

    background: hwb(0deg 0% 100% / 75%);

    position: fixed;

    top: 0;

    z-index: 888;

}

.navbar {

    padding: 1rem 0;

    background: transparent !important;

}

.header.sticky .navbar {

    padding: 0.5rem 0;

}





.navbar .container {

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.logo {

    height: 50px;

    width: auto;

    min-width: 55px;

}



.nav-menu {

    display: flex;

    list-style: none;

    gap: 2rem;

    justify-content: center;

    align-items: center;

}



.nav-menu a {

    text-decoration: none;

    color: var(--white);

    font-weight: 500;

    transition: var(--transition);

    display: flex;

    justify-content: center;

    align-items: center;

}



.nav-menu a:hover {

    color: var(--primary-color);

}



.nav-actions {

    display: flex;

    gap: 1rem;

    align-items: center;

}



.btn-phone {

    text-decoration: none;

    color: var(--text-dark);

    display: flex;

    align-items: center;

    gap: 0.5rem;

    padding: 0.5rem 1rem;

    border: 2px solid var(--border-color);

    border-radius: 5px;

    transition: var(--transition);

}



.btn-phone:hover {

    border-color: var(--primary-color);

    color: var(--primary-color);

}



/* Buttons */

.btn-primary, .btn-secondary, .btn-cta, .btn-submit {

    display: inline-block;

    padding: 15px 30px;

    text-decoration: none;

    border-radius: 30px;

    font-weight: 600;

    text-transform: uppercase;

    transition: var(--transition);

    border: none;

    cursor: pointer;

    font-size: 14px;

}



.btn-primary {

    background: var(--primary-color);

    color: var(--white);

}



.btn-primary:hover {

    background: #3a8f3e;

    transform: translateY(-2px);

}



.btn-secondary {

    background: var(--secondary-color);

    color: var(--white);

}



.btn-secondary:hover {

    background: #e55a2b;

    transform: translateY(-2px);

}



.btn-cta {

    background: var(--secondary-color);

    color: var(--white);

    padding: 15px 40px;

    font-size: 16px;

}

.btn-cta:hover {

    background: #e55a2b;

    transform: translateY(-2px);

}

.btn {    

    display: flex;

    justify-content: center;

    align-items: center;

    width: fit-content;

}

.btn-cta span, .btn span, .btn span {

    margin-left: 8px;

    position: relative;

    display: flex;

    width: 14px !important;

    height: 18px;

    background-image: url(/images/Soustraction_14.svg);

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

}



.btn-submit {

    background: var(--primary-color);

    color: var(--white);

    width: auto;

    margin: auto;

    margin-top: 40px;

}



.btn-submit:hover {

    background: #3a8f3e;

}



/* Hamburger Menu */

.hamburger {

    display: none;

    flex-direction: column;

    cursor: pointer;

}



.hamburger span {

    width: 25px;

    height: 3px;

    background: var(--text-dark);

    margin: 3px 0;

    transition: var(--transition);

}



/* Hero Section */

.hero {

    color: var(--white);

    padding: 224px 0 200px;

    position: relative;

    z-index: 10;

    overflow: hidden;

    background-image: url(/images/Groupe_de_masques_3.png);

    background-size: cover !important;

    background-position: center !important;

    background-repeat: no-repeat !important;

    clip-path: ellipse(140% 100% at 50% 0);

}



.hero::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,0 L100,0 L100,80 Q50,100 0,80 Z" fill="rgba(255,255,255,0.1)"/></svg>'); */

    background-size: 100% 100%;

}



.hero-content .container {

    display: flex;

    justify-content: flex-start;

    align-items: center;

    position: relative;

    z-index: 1;

}



.hero-text {

    max-width: 830px;

}



.hero h1 {

    font-size: 3rem;

    margin-bottom: 1rem;

    line-height: 1.2;

}

.hero h2 {

    font-size: 30px;
    line-height: normal;
    display: flex;
    margin-bottom: 1em;
}



.hero p {
    max-width: 630px;
    font-size: 1.1rem;

    margin-bottom: 2rem;

    opacity: 0.9;

}



.hero-image img {

    width: 100%;

    height: auto;

    border-radius: 10px;

    box-shadow: 0 20px 40px rgba(0,0,0,0.2);

}



/* About Section */

.about {

    padding: 150px 0 70px;

    background-image: url(/images/Groupe_de_masques_6.png);

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    margin-top: -50px;

    position: relative;

}

img.th_img_fleur_ {

    position: absolute;

    bottom: 0;

    right: 0;

    z-index: 1;

    width: 100%;

    max-width: 200px;

}

.about .container {

    position: relative;

    z-index: 5;

}



.about-content {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 6rem;

    align-items: center;

}



.about-images img {

    width: 100%;

    border-radius: 10px;

    box-shadow: var(--shadow);

}



.about h2 {

    margin-bottom: 1rem;
    line-height: 1.2em;
    color: var(--text-dark);
    
}

.about h3{
    color: var(--secondary-color);
}


.about p {

    font-size: 1rem;

    margin-bottom: 1.5rem;

    color: var(--text-light);

}



.highlight-box {

    border-radius: 10px;

    margin-top: 2rem;

}



.highlight-box h3 {

    color: var(--secondary-color) !important;

    margin-bottom: 0.5rem;

}



/* Services Section */

.services {

    padding: 80px 0 100px;

    background: var(--white);

}



.section-header {

    text-align: center;

    margin-bottom: 3rem;

}



.section-header h2 {

    margin-bottom: 1rem;

}



.highlight {

    color: var(--primary-color);

}



.services-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 2rem;

    margin-bottom: 3rem;

}



.service-card {

    border-radius: 30px;

    overflow: hidden;

    box-shadow: var(--shadow);

    transition: var(--transition);

    position: relative;

    background-size: cover !important;

    background-position: center !important;

    background-repeat: no-repeat !important;

    min-height: 250px;

    display: flex;

    justify-content: center;

    align-items: center;

}



.service-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 30px rgba(0,0,0,0.15);

}



.service-card img {

    width: 100%;

    height: 200px;

    object-fit: cover;

}



.service-content {

    padding: 1.5rem;
    text-align: center;

}


.service-content h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: normal !important;
}
.service-content p {
  font-size: 1em !important;
  line-height: 1.2em;
  color: #fff !important;
}

.service-content p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    text-align: center;
    line-height: 1.4;
    margin: 0;
    height: 0 !important;
}

.service-card:hover .service-content p {
    opacity: 1;
    transform: translateY(0);
    height: auto !important;
}

.service-card:hover .service-content h3 {
    transform: translateY(-10px);
    transition: transform 0.8s ease;
}

.service-card {
    transition: transform 0.5s ease;
    cursor: pointer;
}




.services-cta {

    text-align: center;

}



.services .section-header p {

    max-width: 590px;

    margin: auto;

}



.services .services-cta a {

    margin: auto;

}







/* Cleaning Section */

.cleaning {

    

}

.cleaning .container {    

    padding: 0 20px;

    position: relative;

    top: -30px;

}



.cleaning_enf_ {

    background: var(--bg-light);

}



.cleaning-content {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 3rem;

    align-items



}

.cleaning-text {

    padding: 100px 0 130px;

}

body ul li {

    list-style-type: none !important;

}



body .cleaning li,
body .tax-credit li {

    display: flex;

    align-items: center;

    margin-bottom: 12px;

    color: #000 !important;

    font-weight: 600;

}



body li .icon_org_ {

    width: 20px !important;
    height: 15px;

    background-image: url(/images/Soustraction_5.svg);

    background-size: contain;

    background-position: center;

    background-repeat: no-repeat;

    display: flex;

    margin-right: 18px;

}



ul.cleaning-services {

    margin-left: 25px;

    margin-top: 20px;

    margin-bottom: 35px;

}





.cleaning-image {

    display: flex;

    justify-content: flex-end;

    position: relative;

}

.cleaning-image img {

    max-width: 556px !important;

    top: 0;

    right: 0;
    border-radius: 25px;

    position: absolute;

}





section.tax-credit {

    padding: 80px  0 20px;

    position: relative;

    z-index: 100;

    top: -50px;

    background: #fff;

    clip-path: ellipse(140% 100% at 50% 100%);

}



.tax-credit-content {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 5rem;

}



.tax-credit-image {

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    background-size: 78% !important;

    background-position: top right !important;

    padding-top: 100px;

    padding-right: 28px;

}



.tax-credit-image img {

    max-width: 450px;

}



.tax-credit-image p {

    text-align: center;

    font: normal normal normal 14px/24px Poppins;

    letter-spacing: 0px;

    color: #797979;

    margin-top: 30px;

    margin-bottom: 17px;

}



.tax-credit-text {

    max-width: 580px;s

}

.tax-credit-text h2 {

    max-width: 500px;

    margin-bottom: 20px;

}

.tax-credit-text img {

    max-width: 125px;

    margin-top: 25px;

}



/* * Map*/

section#zone {

    position: relative;

}



section#zone:before {

    content: '';

    background: #c7c7c782;

    position: absolute;

    top: 0;

    bottom: 0;

    left: 0;

    right: 0;

}



.zone-content {

    background: #40B656 0% 0% no-repeat padding-box;

    border-radius: 20px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    position: relative;

    padding: 0 40px 48px;

}

.zone_enf_ {

    position: absolute;

    top: 28%;

    bottom: 0;

    left: 0;

    right: 0;

}

.zone_map_iframe {

    background: #000;

}



.zone-map iframe {

  border-radius: 10px;

  box-shadow: 0 0 10px rgba(0,0,0,0.2);

}

.zone-map {

}



.zone-map img {

    width: 63px;

    height: auto;

    position: relative;

    top: -14px;

}



.zone-text {}



.zone-text h2 {

    text-align: center;

    letter-spacing: 0px;

    color: #FFFFFF;

    margin-bottom: 20px;

}



.zone-text p {

    text-align: center;

    font: normal normal normal 18px/30px Poppins;

    letter-spacing: 0px;

    color: #FFFFFF;

    max-width: 735px;

    margin: auto;

}



.zone-content > img {

    position: absolute;

    bottom: 0;

    right: 0;

    z-index: 10;

    width: 250px;

}



section#zone img.th_img_personn_ {

    position: absolute !important;

    right: 0;

    bottom: 0;

    height: 290px;

    z-index: 50;

}



section#zone .container {

    position: relative;

    padding: 20px 80px 0;

}





/** Footer*/

.footer {

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    border-top: 4px solid var(--secondary-color);

    margin-top: -8px;

    position: relative;

    z-index: 10;

}

.body_index footer.footer {

    background-size: cover !important;

    background-position: bottom !important;

    background-repeat: no-repeat !important;

    border-top: unset !important;

    margin-top: -8px;

    position: relative;

    z-index: 10;

}



section#contact {

    padding: 100px 0 80px;

}



.contact-header {}



.contact-header h2 {

    text-align: center;

    /*font: normal normal bold 50px/60px Poppins;*/

    letter-spacing: 0px;

    color: #FFFFFF;

    margin-bottom: 20px;

}



.contact-header p {

    text-align: center;

    font: normal normal normal 18px/30px Poppins;

    letter-spacing: 0px;

    color: #F5F5F5;

    max-width: 535px;

    margin: auto;

}



.contact-content {

    margin-top: 20px;

}



.contact-content h3 {

    text-align: center;

    font: normal normal bold 20px/86px Poppins;

    letter-spacing: 0px;

    color: #E97813;

    text-transform: uppercase;

}



.form-group .form_grp {

    display: flex;

    flex-direction: column;

    width: 48%;

}

.form-group input {

    background: #F5F5F5 0% 0% no-repeat padding-box;

    border-radius: 14px;

    height: 45px;

    padding: 15px;

}

.form-group input::placeholder {

    opacity: 0.8;

    font-style: italic;

}



.form-group {

    margin-bottom: 20px;

    display: flex;

    gap: 2%;

}



form#contactForm {

    width: 100%;

    max-width: 768px;

    margin: auto;

}









/** Bar Footer*/

.footer-content {

    display: flex;

    justify-content: space-between;

    align-items: end;

    padding-bottom: 20px;

}



.footer-links {}



.footer-links ul {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 0.2rem 1rem;

}



.footer-links ul li, 

.footer-links ul a {

    text-align: center;

    font: normal normal normal 14px/32px Poppins;
    line-height: normal;

    letter-spacing: 0px;

    color: #FFFFFF;

    font-size: unset;

    text-decoration: unset !important;

}

.form-group label {

    text-align: left;

    font: normal normal normal 18px/24px Poppins;

    letter-spacing: 0px;

    color: #DDDDDD;

    margin-left: 10px;

}



.footer-bottom img {

    max-width: 24px;

}



.footer-links ul a:before {

    content: '-';

    margin-right: 1em;

}

.footer-links ul li:first-child a:before {

    display: none;

}



/**Page internes */

.conta_grd_ttr_ {

    height: 250px;

    display: flex;

    justify-content: center;

    align-items: center;

    padding-top: 80px;

}

.th_conta_page_ h1 {
    font-size: 2.5rem;
    line-height: normal;
    color: #fff;
    text-align: center;
}

.th_conta_page_ .container {

    padding: 50px 0;

}





body .cc-color-override-688238583 .cc-btn {

    background-color: #E97813 !important;

    padding: 5px 25px;

    border-radius: 33px;

}



body .cc-color-override-688238583 .cc-btn:hover{

    background: #e55a2b;

    transform: translateY(-2px);

}


body.body_politique_confidentialite,
body.body_politique_confidentialite,
body.body_conditions_utilisation,
body.body_gestion_des_cookies {

}


.th_about_towcol_ {
    margin-top: 2.5em;
}
.th_about_towcol_ .highlight-box {
    margin-top: 0;
}
.about .th_about_towcol_ p {
    margin-bottom: 0.5em;
}
.th_about_towcol_ .about-content {
    align-items: start !important;
    margin-top: 15px;
}

/* * Rectifs*/

.footer-logo {
  width: 100%;
  max-width: 120px;
  height: auto;
}
body .cleaning li strong, body .tax-credit li strong {
    display: contents !important;
}


/* * Rectifs*/

body:not(.body_index) {

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.7;
        color: #2c3e50;
        background-color: #f8faf9;
    }

    /* Container */
    .container {
        max-width: 900px;
        margin: 30px auto 0;
        padding: 0 20px;
    }

    /* Content */
    .content {
        background: white;
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.08);
        overflow: hidden;
        position: relative;
        z-index: 10;
    }

    .content-inner {
        padding: 50px;
    }

    /* Intro */
    .intro {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 30px;
        border-radius: 12px;
        margin-bottom: 40px;
        border-left: 5px solid #4CAF50;
    }

    .intro p {
        margin-bottom: 15px;
        font-size: 1rem;
    }

    .intro p:last-child {
        margin-bottom: 0;
    }

    /* Sections */
    .cont_pg_legs_ {
        margin-bottom: 40px;
    }

    .cont_pg_legs_ h2 {
        color: #2c3e50;
        font-size: 1.5rem;
        font-weight: 600;
        margin-top: 30px;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #4CAF50;
        display: flex;
        align-items: center;
        gap: 12px;
        line-height: normal;
    }

    .cont_pg_legs_ h2::before {
        content: '';
        width: 6px;
        height: 6px;
        background: #4CAF50;
        border-radius: 50%;
    }

    .subsection {
        margin: 25px 0;
    }

    .subsection h3 {
        color: #34495e;
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 15px;
        padding-left: 20px;
        position: relative;
    }

    .subsection h3::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 12px;
        height: 2px;
        background: #FF7043;
        border-radius: 1px;
    }

    /* Info cards */
    .info-card {
        background: #f8faf9;
        border: 1px solid #e8f5e8;
        border-radius: 12px;
        padding: 25px;
        margin: 20px 0;
        transition: all 0.3s ease;
    }

    .info-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(76, 175, 80, 0.1);
    }

    .info-card strong {
        color: #2c3e50;
        font-weight: 600;
    }

    /* Contact section */
    .contact-section {
        background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
        color: white;
        border-radius: 12px;
        padding: 30px;
        margin: 40px 0;
        text-align: center;
    }

    .contact-section h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .contact-section p {
        opacity: 0.95;
        line-height: 1.6;
    }

    /* Links */
    .cont_pg_legs_ a {
        color: #4CAF50;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .cont_pg_legs_ a:hover {
        color: #45a049;
        text-decoration: underline;
    }

    .contact-section a {
        color: white;
        text-decoration: underline;
        font-weight: 600;
    }

    .contact-section a:hover {
        opacity: 0.8;
    }

    /* Footer */
    .footer-note {
        text-align: center;
        padding: 40px 20px;
        color: #7f8c8d;
        font-size: 1.1rem;
        font-weight: 500;
        background: white;
        margin-top: 60px;
        border-top: 3px solid #4CAF50;
    }

    /* Responsive */
    @media (max-width: 768px) {
                    
        .content-inner {
            padding: 30px 25px;
        }
        
        .intro {
            padding: 20px;
        }
        
        .cont_pg_legs_ h2 {
            font-size: 1.3rem;
        }
        
        .info-card {
            padding: 20px;
        }
        
        .contact-section {
            padding: 25px;
        }
    }

    @media (max-width: 480px) {
        .container {
            padding: 0 15px;
        }
        
        .content-inner {
            padding: 25px 20px;
        }
        
        .cont_pg_legs_ h2 {
            font-size: 1.2rem;
        }
        
        .subsection h3 {
            font-size: 1rem;
            padding-left: 15px;
        }
    }

    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
    }

    .th_about_towcol_ .about-content {
        gap: 0 !important;
        flex-direction: column !important;
    }

}