/*
*	SimoninToitures by AM Web Solutions Ltd
*	01/19/2025
*/ 

:root {
    --primary-brown: #8B4513;
    --light-brown: #D2691E;
    --warm-brown: #A0522D;
    --light-grey: #f8f9fa;
    --brand-primary-700:#A8631F; 
    --gap-lg: 32px;
    --gap-sm: 16px;
    --radius-md: 12px;
    --neutral-dark-blue: #141D28;
    --neutral-neutral-500: #6D6D6D;
}

#fe-buttons button { background:none; border:none; }

/* Layout sanity: avoid width blowups from padding/borders */
*, *::before, *::after {
    box-sizing: border-box;
}

.alert .alert-close { display:none; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: #F9F7F5;
}

/* Prevent horizontal scrollbars at any viewport width */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Ensure media never overflow the viewport */
img, video, canvas, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

.header { 
    padding: 1rem 0;
    background: var(--neutral-white, #FFF);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
    /* position: relative; */
    position: fixed;
    width: 100%;
    z-index: 100;
}

/* Ensure header/footer content doesn't touch viewport edges while keeping full-width background */
.header .container-fluid,
.footer .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (min-width: 992px) {
    .header .container-fluid,
    .footer .container-fluid {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (min-width: 1200px) {
    .header .container-fluid,
    .footer .container-fluid {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

/* widget customised css */

.PQP-widget--C .PQP-widget__n-reviews {
        /* max-width: 125px; */
        min-width: 123px;
        width: 100%;
        
}

@media (max-width: 1320px) {
    
    .PQP-widget--C .PQP-widget__n-reviews {
        min-width: unset;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-link {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #333 0%, #333 60%, #D2691E 60%, #D2691E 100%);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo::before {
    content: '';
    width: 30px;
    height: 20px;
    background: #333;
    clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
}

.company-info h1 {
    color: var(--warm-brown);
    font-size: 64px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.company-info .tagline {
    color: #333;
    font-size: 0.8rem;
    margin: 0;
    font-weight: 400;
}

.tagline .dash {
    color: var(--primary-brown);
}

span { display:inline-block; min-height:1em; }

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-brown) !important;
}

.dropdown-toggle::after {
    top: 2px;
    vertical-align: 0;
    position: relative;
    content: "\F282";
    font-family: "bootstrap-icons";
    border: none;
    font-size: 0.8rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Ensure dropdown parent has relative positioning */
.nav-item.dropdown {
    position: relative;
}

/* Nos métiers dropdown styling */
.dropdown-menu {
    display: inline-flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    border-radius: 0 0 var(--radius-md, 12px) var(--radius-md, 12px);
    background: var(--neutral-dark-blue, #141D28);
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    min-width: 320px;
    margin-top: 0;
    z-index: 1000;
    border-top: none;
}

.dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
}

.dropdown-menu .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(4px);
}

.dropdown-menu .dropdown-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.dropdown-menu .dropdown-item:hover .dropdown-icon {
    filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(15deg);
}

/* Ensure dropdown shows on click and is properly positioned */
.dropdown-menu.show {
    display: inline-flex !important;
}

/* Override Bootstrap's default dropdown positioning */
.nav-item.dropdown .dropdown-menu { 
    transform: none !important;
    display: none;
    border: none; 
    margin-top: 32px;
}

/* Only show dropdown when it has the 'show' class */
.nav-item.dropdown .dropdown-menu.show {
    display: inline-flex !important;
}

.btn-primary-header {
    background-color: var(--brand-primary-700);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary-header:hover {
    background-color: var(--warm-brown);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 69, 19, 0.3);
}

.rating-box {
    background: white;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    margin-right: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-icon {
    color: #28a745;
    font-size: 1.2rem;
}

.rating-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.content-wrapper {
    display: flex;
    align-items: center;
}

@media (max-width: 991.98px) {
    /* Full-screen overlay for mobile menu */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: white;
        z-index: 9999;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: none;
        border: none;
    }
    
    .navbar-collapse.show {
        transform: translateX(0);
    }
    
    /* Close button for mobile menu */
    .menu-close-btn {
        position: absolute;
        top: 2rem;
        right: 2rem;
        width: 40px;
        height: 40px;
        border: none;
        background: #f8f9fa;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10000;
        transition: all 0.3s ease;
        font-size: 1.5rem;
        color: #333;
        pointer-events: auto;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    .menu-close-btn:hover {
        background: #e9ecef;
        transform: scale(1.1);
    }
    
    .menu-close-btn span {
        line-height: 1;
    }
    .contact-section {
        margin-top: 1rem;
        text-align: center;
        width: 100%;
    }
    .rating-box {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    /* Keep logo and burger on the same line on tablet/mobile */
    .header .container-fluid {
        position: relative;
        min-height: 64px;
    }
    .logo-container {
        justify-content: flex-start;
        margin-bottom: 0;
    }
    .navbar-toggler {
        position: absolute;
        right: 2rem;
        top: -2rem;
        z-index: 1020;
    }
    /* Hide contact CTA at these widths */
    .contact-section,
    .btn-primary-header {
        display: none !important;
    }
    
    /* Responsive navigation items */
    .navbar-nav {
        width: 100%;
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 1rem 0 !important;
        font-size: 1.2rem !important;
        border: none !important;
        background: transparent !important;
        color: #333 !important;
        font-weight: 500 !important;
        border-bottom: 1px solid #f0f0f0 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .navbar-nav .nav-link:hover {
        color: var(--primary-brown) !important;
        background: transparent !important;
    }
    
    /* Responsive dropdown styling */
    .dropdown-menu {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin-top: 0 !important;
        position: static !important;
        min-width: auto !important;
        border-radius: 0 !important;
        display: none !important;
    }
    
    .dropdown-menu.show {
        display: block !important;
    }
    
    /* Ensure dropdown toggle works on mobile */
    .dropdown-toggle {
        cursor: pointer !important;
    }
    
    .dropdown-toggle::after {
        transition: transform 0.3s ease !important;
    }
    
    .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg) !important;
    }
    
    .dropdown-menu .dropdown-item {
        color: #666 !important;
        font-size: 1rem !important;
        padding: 0.8rem 0 !important;
        background: transparent !important;
        border-radius: 0 !important;
        transform: none !important;
        text-align: center !important;
        border: none !important;
        border-bottom: 1px solid #f0f0f0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
    }
    
    .dropdown-menu .dropdown-item:hover {
        background: rgba(139, 69, 19, 0.05) !important;
        color: var(--primary-brown) !important;
        transform: none !important;
    }
    
    .dropdown-menu .dropdown-icon {
        filter: brightness(0) !important;
        width: 20px !important;
        height: 20px !important;
        opacity: 1 !important;
        display: inline-block !important;
    }
    
    .dropdown-menu .dropdown-item:hover .dropdown-icon {
        filter: brightness(0) sepia(1) saturate(3) hue-rotate(15deg) !important;
    }
}

/* Hide close button on desktop */
@media (min-width: 992px) {
    .menu-close-btn {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .logo-container {
        justify-content: flex-start;
        margin-bottom: 0;
    }
    /* Keep logo and burger on the same line */
    .header .container-fluid {
        position: relative;
        min-height: 64px;
    }
    .navbar-toggler {
        position: absolute;
        right: 2rem;
        top: -2rem;
        z-index: 1020;
    }
    /* Hide contact CTA on mobile */
    .contact-section,
    .btn-primary-header {
        display: none !important;
    }
    .company-info h1 {
        font-size: 48px;
    }
    .company-info .tagline {
        font-size: 0.7rem;
    }
}

/* Very small phones: keep logo and burger on one line */
@media (max-width: 545px) {
    .site-logo {
        height: 44px;
        width: auto;
    }
    .header .container-fluid {
        min-height: 56px;
    }
    .navbar-toggler {
        position: absolute;
        right: 1rem;
        top: -2rem;
    }
}

/* Footer Styles */
.footer {
    background-color: #141D28;
    color: #e6e6e6;
    padding: 3rem 0 0 0;
    position: relative;
}

.footer-logo-container {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo-inner {
    width: 80px;
    height: 50px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-graphic {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roof-lines {
    position: absolute;
    top: 5px;
    left: 10px;
    width: 20px;
    height: 15px;
    background: repeating-linear-gradient(
        90deg,
        #333 0px,
        #333 2px,
        transparent 2px,
        transparent 4px
    );
}

.st-monogram {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    color: white;
}

.logo-text h3 {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.logo-tagline {
    color: #e6e6e6;
    font-size: 0.7rem;
    margin: 0.3rem 0 0 0;
    font-weight: 400;
}

.logo-tagline .dash {
    color: #d4af37;
}

.company-description {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 531px;
}

.footer-divider {
    border-color: #333;
    margin: 1.5rem 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #fff;
    font-size: 18px;
}

.contact-item i {
    color: #C47F3B;
    font-size: 1rem;
    width: 16px;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-heading {
    color: #C47F3B;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    
}

.footer-links li {
    margin-bottom: 0.8rem;
    
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #C47F3B;
}

.footer-dots {
    height: 60px;
    background-image: 
        radial-gradient(circle, rgba(212, 175, 55, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(212, 175, 55, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(212, 175, 55, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(212, 175, 55, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(212, 175, 55, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(212, 175, 55, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(212, 175, 55, 0.3) 1px, transparent 1px);
    background-size: 
        8px 8px,
        8px 8px,
        8px 8px,
        8px 8px,
        8px 8px,
        8px 8px,
        8px 8px;
    background-position: 
        0 0,
        0 10px,
        0 20px,
        0 30px,
        0 40px,
        0 50px,
        0 60px;
    background-repeat: repeat-x;
    margin-top: 2rem;
}

@media (max-width: 991.98px) {
    .footer {
        padding: 2rem 0 0 0;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-section {
        text-align: center;
    }
    
    /* Make footer menus display side by side on tablet */
    .footer .row > div:not(:first-child) {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .footer .row > div:not(:first-child) .footer-section {
        flex: 1;
        text-align: left;
        margin-bottom: 0;
    }
}

@media (max-width: 767.98px) {
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    .logo-text h3 {
        font-size: 1rem;
    }
    .logo-tagline {
        font-size: 0.6rem;
    }
    
    /* Adjust footer menus for mobile - keep side by side but with smaller gap */
    .footer .row > div:not(:first-child) {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .footer .row > div:not(:first-child) .footer-section {
        min-width: 120px;
        text-align: left;
    }
    
    .footer-heading {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
}

/* Very small screens - ensure footer menus remain side by side */
@media (max-width: 576px) {
    .footer .row > div:not(:first-child) {
        gap: 0.5rem;
        justify-content: space-between;
    }
    
    .footer .row > div:not(:first-child) .footer-section {
        min-width: 100px;
        flex: 1;
    }
    
    .footer-heading {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-links a {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .footer-links li {
        margin-bottom: 0.4rem;
    }
}

/* Main Content Styles */
.main-content {
    /* background-image: radial-gradient(circle, #e0e0e0 1px, transparent 1px); */
    /* background-size: 20px 20px; */
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.60) 0%, rgba(255, 255, 255, 0.00) 100%), linear-gradient(270deg, rgba(249, 246, 245, 0.00) 0%, var(--neutral-beige, rgba(249, 247, 245, 0.80)) 20%, var(--neutral-beige, rgba(249, 247, 245, 0.80)) 80%, rgba(249, 246, 245, 0.00) 100%);
     width: 100%;
     height: 100%;
    /* padding: 2rem 0; */
    /* min-height: 50vh; */
    display: flex;
    align-items: center;
    padding: 196px 0px 110px;
}

.main-content-gradient {
    background-image: url(../images/large-bg-dots.png);
    width: 100%;
    /* height: 853px; */
}

.main-content-contact {
     min-height: 40vh !important;
}

.welcome-section {
    text-align: center; 
    margin: 0 auto;
    /* background-image: url(../images/dots-bg-gradient.png); */
}

.welcome-title {
    color: var(--neutral-dark-blue, #141D28);
    text-align: center;
    font-family: Poppins;
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    /* margin-bottom: 2rem; */
    max-width: 912px;
    margin: 0 auto 2rem;
}

.welcome-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
    margin:0 auto;
    max-width: 611px;
}

@media (max-width: 768px) {
    .main-content {
        padding: 156px 0px 60px;
        /* min-height: 35vh; */
    }
    .welcome-title {
        font-size: 48px;
        margin-bottom: 1.5rem;
    }
    .welcome-text {
        font-size: 1rem;
    }

    .main-content {
        background-image: none;
    }

    .main-content-gradient {
        background-image: none;
    }
}

@media (max-width: 576px) {
    .welcome-title {
        font-size: 36px;
        margin-bottom: 1rem;
    }
    .welcome-text {
        font-size: 0.95rem;
    }
}

/* Hero Banner Styles */
.hero-banner-section {
    padding: 2rem 0;
    position: relative;
    margin-top: -50px;
}

.scroll-arrow {
    position: absolute;
    top: 4%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.hero-banner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 1857px;
    height: 841px;
    flex-shrink: 0;
    border-radius: var(--radius-xl, 30px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: var(--radius-xl, 30px); */
}


@media (max-width: 1920px) {
    .hero-image {
        width: 100%;
        max-width: 1857px;
        height: auto;
        aspect-ratio: 1857 / 841;
    }
}

@media (max-width: 768px) {
    .hero-banner-section {
        padding: 2rem 0;
    }
    .hero-image {
        border-radius: 20px;
    }

    .scroll-arrow {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-image {
        border-radius: 15px;
    }
}

/* About Us Section Styles */
.about-us-section {
    padding: 5rem 0 0;
}

.seperator {
    width: 100%;
    border: 1px solid #e8e6e6;
    margin-bottom: 70px;
}

/* Partners Section Styles */
.partners-section {
    padding: 4rem 0;
}

/* Partners Slider Styles */
.partners-slider {
    margin: 0 auto;
}

.partner-slide {
    padding: 0 4rem;
    height: 100px;
}

.partner-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Slick carousel customizations */
.partners-slider .slick-track {
    display: flex;
    align-items: center;
}

.partners-slider .slick-slide {
    height: auto;
}

/* Hide default slick dots and arrows */
.partners-slider .slick-dots,
.partners-slider .slick-prev,
.partners-slider .slick-next {
    display: none !important;
}

.about-overview {
    margin-bottom: 3rem;
}

.about-title {
    color: #141D28;
    font-family: Poppins;
    font-size: 54px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.about-label {
    color: var(--brand-primary-500, #C47F3B);
    font-family: Poppins;
    font-size: var(--misc-overline, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 2.56px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.about-description {
    color: var(--neutral-dark-blue, #141D28);
    font-family: Poppins;
    font-size: var(--body-md, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    margin: 0;
    /* padding-top: 52px; */
}

 /* Entreprise page */
.about-description-entreprise {
padding-top: 52px;
}

.about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-list {
    color: var(--neutral-dark-blue, #141D28);
    font-family: Poppins;
    font-size: var(--body-md, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    margin: 1rem 0 0 0;
    padding-left: 1.5rem;
}

.about-list li {
    margin-bottom: 0.5rem;
}

.about-list li:last-child {
    margin-bottom: 0;
}

.about-separator {
    border: none;
    height: 1px;
    background-color: #D3D3D3 ;
    margin: 3rem 0;
    opacity: 100%;
}

.about-stats {
    width: 100%;
}

.stat-item {
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 1rem;
}

.stat-number {
    color: var(--neutral-dark-blue, #141D28);
    font-family: Poppins;
    font-size: 120px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -4.8px;
    display: block;
}

.stat-label {
    color: var(--neutral-neutral-500, #6D6D6D);
    font-family: Poppins;
    font-size: var(--body-sm, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    max-width: 150px;
    margin-bottom: 0.5rem;
}



.left-para-section {
 padding: 0px 3rem 0px 0px;
}

.about-right {
        display: flex
;
    align-items: center;
    height: 100%;
    } 

.about-left-container {
    padding: 2rem 3rem 2rem 4rem;
}

@media (max-width: 991px) {
    .stat-number {
        font-size: 80px;
        line-height: 84px;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 3rem 0;
    }
    .about-description {
        font-size: 16px;
    }
    .about-left {
        margin-bottom: 2rem;
        text-align: center;
       /* padding: 0 1rem; */
    }

    .about-left-container {
        padding: 2rem 1.5rem;
    }

    .left-para-section {
     padding: 0 1rem;
    }
    .about-right {
        text-align: center;
    }
    .stat-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    .stat-number {
        font-size: 80px;
        line-height: 1;
    }
    .stat-label {
        max-width: none;
        margin-bottom: 0;
    }

    .partner-slide {
    padding: 0 2rem;
}
}

/* Services Section Styles */
.services-section {
    padding:128px 0px 5rem;
     /* background-image: radial-gradient(circle, #e0e0e0 1px, transparent 1px);
    background-size: 20px 20px; */
    position: relative;
}

.services-section .bg-dots {
    position: absolute;
    /* width: 100%; */
    height: 917px;
    top: 30%;
    right: 0;

}



.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-label {
    color: var(--brand-primary-500, #C47F3B);
    font-family: Poppins;
    font-size: var(--misc-overline, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 2.56px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.services-title {
    color: var(--neutral-dark-blue, #141D28);
    font-family: Poppins;
    font-size: 54px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    margin: 0;
}


.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border-radius: var(--radius-xl, 30px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
}

.card-image {
    height: 331px;
    align-self: stretch;
    border-radius: var(--radius-xl, 30px) var(--radius-xl, 30px) 0 0;
    background-color: #eaeaea;
    position: relative;
    overflow: hidden;
}

.card-image-inner {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 400ms ease, filter 400ms ease;
    will-change: transform;
}


.warning .inner { padding:64px; border-radius:20px; background:#141D28; color:#e6e6e6; /*max-width:1000px;*/ margin:50px auto; }
.warning h2 { margin-bottom:1em; }
.warning p { font-size:18px; }
.warning .picto { display:flex; flex-direction:column; align-items:center; }
.warning .text { padding-left:64px; }

.service-card:hover .card-image-inner {
    transform: scale(1.05);
}

/* .card-icon {
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
    background: white;
    border: 1px solid var(--brand-primary-500, #C47F3B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary-500, #C47F3B);
    font-size: 1.2rem;
    margin: 0 auto;
    margin-top: -20px;
    margin-bottom: 0;
} */

.card-content {
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    background: white;
    /* border-radius: var(--radius-xl, 30px); */
    /* margin: 0 1rem 1rem 1rem; */
        border-radius: 30px;
    margin-top: -35px;
    z-index: 10;
    width: 100%;
}

.card-title {
    color: var(--neutral-dark-blue, #141D28);
    text-align: center;
    font-family: Poppins;
    font-size: var(--heading-H3, 24px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin: 0;
}

.card-text {
    color: var(--neutral-neutral-500, #6D6D6D);
    text-align: center;
    font-family: Poppins;
    font-size: var(--body-sm, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin: 0;
    max-width: 400px;
}



@media (max-width: 1200px) {
    .service-card {
        width: auto;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 3rem 0;
    }
    .services-title {
        font-size: 36px;
    }
    .services-cards {
        gap: 1.5rem;
    }
    .card-image {
        height: 250px;
    }
    .card-content {
        padding: 1.5rem;
    }
}

/* Responsive titres sections */
.welcome-title {
    font-size: 64px;
}
@media (max-width: 1200px) {
    .welcome-title, .services-title {
        font-size: 48px;
    }
}
@media (max-width: 900px) {
    .welcome-title, .services-title {
        font-size: 36px;
    }
}
@media (max-width: 600px) {
    .welcome-title, .services-title {
        font-size: 26px;
        line-height: 1.2;
    }
}

.realisations-header {
    margin-bottom: 3rem;
}

.realisations-desc { color:var(--neutral-neutral-500); }

/* Titres de cards */
.card-title {
    font-size: 24px;
}
@media (max-width: 900px) {
    .card-title {
        font-size: 20px;
    }
}
@media (max-width: 600px) {
    .card-title {
        font-size: 18px;
    }
}

/* Valeurs Section */
.valeurs-section {
    padding: 6rem 0 6rem 0;
}

.valeurs-title {
    color: #141D28;
    font-family: Poppins;
    font-size: 54px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 2rem;
}
.valeurs-section .container-fluid {
    padding-left: 0;
}
.valeurs-img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    border-radius: 0;
    display: block;
}
.valeurs-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 3rem;
    min-height: 680px;
}
.valeurs-label {
    color: var(--brand-primary-500, #C47F3B);
    font-family: Poppins;
    font-size: var(--misc-overline, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 2.56px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.valeurs-desc {
    color: var(--neutral-dark-blue, #141D28);
    font-family: Poppins;
    font-size: var(--body-md, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    margin-bottom: 2.5rem;
}
.valeurs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2.5rem;
    width: 100%;
}

.valeurs-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
}
.valeur-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}
.valeur-num {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--neutral-dark-blue, #141D28);
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border: 1px solid var(--neutral-neutral-500, #6D6D6D);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    margin-top: 2px;
    /* padding: 6px 8px; */
}

.valeur-title {
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 28.8px;
}

.valeur-desc {
    align-self: stretch;
    color: var(--neutral-neutral-500, #6D6D6D);
    font-family: Poppins;
    font-size: var(--body-sm, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}
@media (max-width: 1400px) {
    .valeurs-img {
        height: 500px;
    }
    .valeurs-content-col {
        min-height: 500px;
        padding: 3rem 2rem;
    }
}
@media (max-width: 992px) {
    .valeurs-img {
        height: 400px;
    }
    .valeurs-content-col {
        min-height: auto;
        padding: 3rem 2rem;
    }
    .valeurs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
@media (max-width: 768px) {
    .valeurs-img {
        height: 300px;
    }
    .valeurs-content-col {
        padding: 2rem 1.5rem;
    }

    /* Valeurs Section */
.valeurs-section {
    padding: 3rem 0;
}
}

/* Réalisations Section */
.realisations-section {
    padding: 196px 0px;
}

.realisations-title {
    color: #141D28;
    font-family: Poppins;
    font-size: 54px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 2rem;
}
/* Suppression de l'ancienne classe realisations-header */

.realisations-label {
    color: var(--brand-primary-500, #C47F3B) !important;
    font-family: Poppins !important;
    font-size: 14px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 140% !important;
    text-transform: uppercase !important;
    letter-spacing: 1.4px !important;
    margin-bottom: 1rem !important;
    display: block !important;
}


.filter-buttons {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    justify-content: flex-start !important;
}

.filter-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 48px !important;
    padding: 0 20px !important;
    border-radius: 16px !important;
    background: transparent !important;
    color: #8B4513 !important;
    font-family: Poppins !important;
    font-size: 14px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    border: 1px solid #8B4513 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
}

.filter-btn:hover {
    background: #8B4513 !important;
    color: white !important;
    border-color: #8B4513 !important;
}

.filter-btn.active {
    background: #8B4513 !important;
    color: white !important;
    border-color: #8B4513 !important;
}

.realisations-description {
    color: var(--neutral-dark-blue, #141D28);
    font-family: Poppins;
    font-size: var(--body-md, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    margin: 0;
    padding-top: 40px;
}
.realisations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    /* grid-template-rows: repeat(8, auto); */
}
.real-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    min-width: 0;
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.real-card.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    display: none !important;
}

.real-card.showing {
    display: flex !important;
    opacity: 0;
    transform: scale(0.8);
}
.real-img {
    height: 392px;
    aspect-ratio: 1/1;
    align-self: stretch;
    border-radius: var(--radius-md, 12px);
    background: lightgray 50% / cover no-repeat;
    background-size: cover;
    background-position: top center;
    margin-bottom: 0;
}
.real-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    margin-top: 0.75rem;
    gap: 0.5rem;
}
.real-city {
    color: var(--brand-primary-700, #A8631F);
    font-family: Poppins;
    font-size: var(--body-sm, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 0.2rem;
}
.real-link {
    color: var(--neutral-dark-blue, #141D28);
    font-family: Poppins;
    font-size: var(--body-sm, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    transition: color 0.2s;
}
.real-link:hover {
    color: var(--brand-primary-700, #A8631F);
}
@media (max-width: 768px) {
    .realisations-description {
       
        padding-top: 0px;
    }
}

@media (max-width: 1400px) {
    .realisations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 900px) {
    .realisations-grid {
        grid-template-columns: 1fr;
    }
    .real-img {
        height: 260px;
    }
}
@media (max-width: 900px) {
    .filter-buttons {
        gap: 8px;
    }
    .filter-btn {
        height: 40px;
        font-size: 12px;
        padding: 0 16px;
    }
}

@media (max-width: 600px) {
    .real-content {
        padding: 1rem;
    }
    .filter-buttons {
        gap: 8px;
    }
    .filter-btn {
        height: 44px;
        font-size: 14px;
        padding: 0 18px;
    }
}

/* CTA Dotted Section */
.cta-dotted-section {
    width: 100%;
    padding: 5rem 0 5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.cta-dotted-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background-image: radial-gradient(circle, #e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
    background-repeat: repeat;
    pointer-events: none;
}
.cta-dotted-section .container-fluid {
    position: relative;
    z-index: 1;
}
.cta-dotted-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.cta-dotted-subtitle {
    color: var(--neutral-dark-blue, #141D28);
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    margin-bottom: 2.5rem;
}
@media (max-width: 900px) {
    .cta-dotted-content {
        max-width: 100%;
        padding: 0 1rem;
    }
}
.contact-label {
  color: #A8631F;
  font-size: 1rem;
  /* letter-spacing: 0.2em; */
  font-weight: 600;
  /* text-transform: uppercase; */
  /* margin-bottom: 1rem; */
  display: inline-block;
}
.contact-card {
  display: flex;
  width: 669px;
  height: 404px;
  padding: var(--section-2xl, 64px);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--gap-xl, 48px);
  border-radius: var(--radius-xl, 30px);
  background: var(--neutral-white, #FFF);
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.07);
  max-width: 100%;
  margin: 0 auto;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xl, 48px);
  width: 100%;
}
/* .contact-row {
  display: grid;
  grid-template-columns: 40px 160px 1fr;
  column-gap: 1rem;
  align-items: center;
} */

.contact-icon {
  flex-shrink: 0;
  aspect-ratio: 1/1;
  display: flex;
  align-items:self-start;
  justify-content: center;
  
}

.contact-icon-footer {
  flex-shrink: 0;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.contact-icon-footer img {
      max-width: 24px;
    max-height: 24px;
  
}

.contact-label-bold {
  color: var(--neutral-dark-blue, #141D28);
  font-family: Poppins;
  font-size: var(--body-md, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  margin-right: 0.5rem;
}
.contact-value {
  color: var(--neutral-neutral-500, #6D6D6D);
  font-family: Poppins;
  font-size: var(--body-md, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
@media (max-width: 991px) {
  .contact-card {
    margin-top: 2rem;
    max-width: 100%;
    width: 100%;
    height: auto;
    padding: 2rem 1rem;
  }
}

/* Bootstrap grid overrides for services */
.services-cards {
    display: flex;
    flex-wrap: wrap;
   
}
/* Remove any lingering width constraints for service cards */
.services-cards .service-card,
.service-card {
    width: auto;
    max-width: none;
}
.services-cards .card-image img { height:100%; width:100%; object-fit: cover;border-radius: var(--radius-xl, 30px);}
.services-cards .card-content {
    height: 100%;
}

/* Contact alignment improvements */
.cta-dotted-section .row > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.cta-dotted-section .row > div:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-row {
    display: grid;
    grid-template-columns: 40px 160px 1fr;
    column-gap: 1rem;
    align-items: center;
}
.contact-label-bold,
.contact-value {
    display: inline-block;
}
@media (max-width: 575.98px) {
    .contact-row {
        grid-template-columns: 40px 1fr;
        row-gap: 0.25rem;
        align-items: start;
    }
    .contact-label-bold {
        grid-column: 2 / 3;
    }
    .contact-value {
        grid-column: 2 / 3;
    }
}

/* Header responsive refinements */
.contact-section {
    gap: 0.75rem;
    flex-wrap: nowrap;
}
.btn-primary-header {
    white-space: nowrap;
}
@media (max-width: 1200px) {
    .btn-primary-header {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
        border-radius: 20px;
    }
    .rating-box {
        display: none !important; /* hide rating box on laptop widths to give space to the CTA */
    }
}
.site-logo {
    max-height: 72px;
    max-width: auto;
    object-fit: contain;
}
.footer .site-logo {
    height: 50px;
}
.footer-logo-card {
    display: flex;
    width: 392px;
    height: 114px;
    /* padding: 17px 25.141px 16px 25.141px; */
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-md, 12px);
    background: var(--neutral-white, #FFF);
}
.footer-logo-card .site-logo {
    height: 100%;
    width: auto;
    object-fit: contain;
}
@media (max-width: 575.98px) {
    .footer-logo-card {
        width: 100%;
        max-width: 392px;
    }
}

/* Follow-up Section (centered copy with right dotted bg) */
.followup-section {
    position: relative;
    width: 100%;
    padding: 6rem 0;
}

.followup-title {
    color: #141D28;
    font-family: Poppins;
    font-size: 54px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 2rem;
    margin-top: 1.5rem;
}
.followup-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 48%;
    background-image: radial-gradient(circle, #C47F3B 10%, #e9e9e900 1px);
        opacity: 30%;
    background-size: 18px 18px;
    pointer-events: none;
    z-index: -1;
}
.followup-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.followup-label {
        color: var(--brand-primary-500, #C47F3B);
    font-family: Poppins;
    font-size: var(--misc-overline, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 2.56px;
    text-transform: uppercase;
}

.followup-text {
    color: #4B5563;
    font-family: Poppins;
    font-size: 18px;
    line-height: 1.7;
    max-width: 720px;
}
@media (max-width: 900px) {
    .followup-content { padding: 0 1rem; }
    .followup-section::after { width: 55%; }
}

/* Classes génériques pour les boutons - Consolidation */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--brand-primary-700, #A8631F);
    color: #fff;
    font-family: Poppins;
    font-weight: 500;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-primary:hover {
    background: var(--brand-primary-500, #C47F3B);
}

.btn-primary-sm {
    height: 48px;
    padding: 0 32px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .btn-primary-sm {
        margin: 0.5rem 0;
    }
}

.btn-primary-md {
    height: 56px;
    padding: 0 32px;
    font-size: 18px;
}

.btn-primary-card {
    height: 56px;
    padding: 0 24px;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-primary-card:hover {
    background: var(--brand-primary-500, #C47F3B);
    transform: translateY(-2px);
}

/* Classes génériques pour les titres - Consolidation */
.title-h2-primary {
    color: #141D28;
    font-family: Poppins;
    font-size: 54px;
    font-weight: 500;
    line-height: 1.1;
    margin: 0 0 1rem 0;
}

.title-h2-secondary {
    color: var(--neutral-dark-blue, #141D28);
    font-family: Poppins;
    font-size: 54px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    margin: 0 0 2rem 0;
}

.title-h3 {
    color: #FFF;
    font-family: Poppins;
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
    margin: 0;
    text-align-last: center;
}

.title-h3-dark {
    color: #272B34;
    font-family: Poppins;
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
    margin: 0;
    /* text-align-last: center; */
    
}

.encart-content .title-h3 {
    color: #141D28;
    font-family: Poppins;
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
    text-align: center;
    margin: 0;
}

.title-h4 {
    color: var(--neutral-dark-blue, #141D28);
    font-family: Poppins;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 0.2rem;
}

.subtitle {
    color: #141D28;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
    margin: 0.5rem 0 1rem 0;
    text-transform: none;
    letter-spacing: 0.1em;
    text-decoration: underline;
}

/* Responsive pour les classes génériques */
@media (max-width: 1200px) {
    .title-h2-primary, .title-h2-secondary, .followup-title, .realisations-title, .intervention-title, .about-title, .valeurs-title {
        font-size: 42px;
    }
}

@media (max-width: 900px) {
    .title-h2-primary, .title-h2-secondary, .followup-title, .realisations-title, .intervention-title, .about-title, .valeurs-title {
        font-size: 36px;
    }
    .title-h3 {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .title-h2-primary, .title-h2-secondary, .followup-title, .realisations-title, .intervention-title, .about-title, .valeurs-title {
        font-size: 26px;
        line-height: 1.2;
    }
    .title-h3 {
        font-size: 18px;
    }
}

/* Contact Block Styles */
.contact-block {
    position: relative;
    padding: 0rem 2rem;
    border-radius: 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}



.contact-block-content {
    position: relative;
    z-index: 1;
}


.contact-block-text {
    color: #666;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-block {
        padding: 3rem 1.5rem;
    }
    .contact-block-text {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .contact-block {
        padding: 2rem 1rem;
    }
    .contact-block-text {
        font-size: 15px;
    }
}

/* Contact Form Section Styles */
.contact-form-section {
    padding: 0rem 0 5rem;
    background-image: radial-gradient(circle, #e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
}

.contact-form-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Left Block - Contact Info */
.contact-info-block {
    display: flex;
    width: 653px;
    padding: 64px;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    border-radius: 20px;
    background: #141D28;
    color: white;
}

.contact-info-block .contact-info-title {
    font-family: Poppins;
    font-size: 54px;
    font-weight: 500;
    margin-bottom: 2rem;
    color: white;
    line-height: 1.2;
}

.contact-info-block .contact-info-text {
    font-family: Poppins;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #b0b0b0;
    max-width: 400px;
}

.contact-info-block .contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    margin-top: 140px;
}

.contact-info-block .contact-detail-item {
    display: grid;
    grid-template-columns: 40px 160px 1fr;
    gap: 1rem;
    align-items: center;
    /* margin-bottom: 1.5rem; */
    /* justify-content: space-between; */
}

.contact-detail-item-adresse {
    padding-top: 10px;
}

.contact-label-adresse {
        display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
}

.contact-icon-footer-adresse {
        position: relative;
}

.contact-icon-footer-adresse .adresse-icon {
    position: absolute;
    top: -6px;
}

.contact-info-block .contact-detail-item i {
    color: #d4af37;
    font-size: 1.2rem;
    width: 20px;
    margin-top: 2px;
}

.contact-info-block .contact-label {
    font-family: Poppins;
    font-size: 18px;
    font-weight: 600;
    color: white;
    /* margin-right: 0.5rem; */
    white-space: nowrap;
}

.contact-info-block .contact-value {
    font-family: Poppins;
    font-size: 18px;
    color: white;
    line-height: 1.4;
}

/* Right Block - Contact Form */
.contact-form-block {
    flex: 1;
    background: white;
    padding: 64px;
    position: relative;
    display: flex;
    flex-direction: column;
}



.contact-form {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    flex: 1;
    margin-bottom: 2rem;
}

.form-group label {
    color: #6D6D6D;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 0;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    background: transparent;
    color: #565656;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #A8631F;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #565656;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-section-label {
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

.checkbox-group {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-item label {
    margin: 0;
    color: #565656;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}

.contact-button {
    width: fit-content;
}



@media (max-width: 1200px) {
    .contact-form-container {
        flex-direction: column;
        width: 100%;
        max-width: 1000px;
        margin: 0 2rem;
    }
    
    .contact-info-block {
        width: 100%;
        height: auto;
        padding: 3rem 2rem;
    }
    
    .contact-form-block {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 3rem 0;
    }
    
    .contact-form-container {
        margin: 0 1.5rem;
    }
    
    .contact-info-block,
    .contact-form-block {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-info-title {
        font-size: 36px;
    }

    .contact-info-block .contact-details-list {
        margin-top: 0px;
    }
}

@media (max-width: 576px) {
    .contact-form-container {
        margin: 0 1rem;
    }
    
    .contact-info-block,
    .contact-form-block {
        padding: 1.5rem 1rem;
    }
    
    .contact-info-title {
        font-size: 28px;
    }
}

/* Intervention Zone Section Styles */
.intervention-zone-section {
    padding: 5rem 0;
}

.intervention-content {
    padding-right: 3rem;
    max-width: 600px;
    margin: 0 2rem;
}

.intervention-title {
    color: #333;
    font-family: Poppins;
    font-size: 54px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.intervention-text {
    color: #6D6D6D;
    font-family: Poppins;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.intervention-map {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    max-width: 600px;
    margin: 0 auto;
}

.map-container {
    position: relative;
    width: 100%;
    /* max-width: 500px; */
    /* height: 400px; */
    /* background: white; */
    /* border-radius: 20px; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    /* overflow: hidden; */
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}



@media (max-width: 991px) {
    .intervention-zone-section {
        padding: 3rem 0;
    }
    
    .intervention-content {
        padding-right: 0;
        margin: 0 2rem 2rem 2rem;
        text-align: center;
        max-width: 100%;
    }
    
    .intervention-map {
        max-width: 100%;
        margin: 0 2rem;
    }
    
    .intervention-title {
        font-size: 36px;
    }
    
    .intervention-text {
        font-size: 16px;
    }
    
    .map-container {
        max-width: 400px;
        height: 350px;
    }
}

@media (max-width: 576px) {
    .intervention-content {
        margin: 0 1rem;
    }
    
    .intervention-map {
        margin: 0 1rem;
    }
    
    .intervention-title {
        font-size: 28px;
    }
    
    .intervention-text {
        font-size: 15px;
    }
    
    .map-container {
        max-width: 300px;
        height: 300px;
    }
    

}

/* Membranes Section - Style similar to followup-section */
.membranes-section {
    position: relative;
    width: 100%;
    padding: 8rem 0;
}
.membranes-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.membranes-label {
    color: var(--brand-primary-500, #C47F3B);
    font-family: Poppins;
    font-size: var(--misc-overline, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 2.56px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}
.membranes-description {
    color: #4B5563;
    font-family: Poppins;
    font-size: 18px;
    line-height: 1.7;
}
@media (max-width: 900px) {
    .membranes-content { padding: 0 1rem; }
    .membranes-section::after { width: 55%; }
}



.encart-travaux {
    background: transparent;
    overflow: visible;
    height: 100%;
    width: 100%;
    margin: 0 auto 1rem auto;
}

.encart-image {
    height: 331px;
    align-self: stretch;
    border-radius: 30px 30px 0 0;
    margin-bottom:0;
    overflow: hidden;
    background: lightgray 50% / cover no-repeat;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.encart-image img { height:100%; width:100%; }

.encart-content {
    display: flex;
    padding: 48px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    border-radius: 30px;
    background: #FFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: -30px;
    position: relative;
    z-index: 1;
    max-height: 500px;
    
    
}



.encart-text-industrielle  {
    color: #6D6D6D;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    margin: 0;
    /* height: 330px; */
    overflow-y: auto;
    overflow-x: hidden;
}

.encart-text {
    color: #6D6D6D;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    margin: 0;
    height: 330px;
    overflow-y: auto;
    overflow-x: hidden;
}

.encart-travaux .encart-text {
    color: #6D6D6D;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    margin: 0;
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
}

.encart-travaux .encart-text-couverture {
    color: #6D6D6D;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    margin: 0;
    height: 320px;
    overflow-y: auto;
    overflow-x: hidden;
}

.encart-content .encart-text :: -webkit-scrollbar {
    display: none;
}



.encart-content .encart-text :: -webkit-scrollbar {
    display: none;
}


/* Large Image Section */
.large-image-section {
    padding: 2rem 0;
}

.large-image-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.image-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #0066CC;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 2;
}

.large-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: block;
}



@media (max-width: 1550px) {
    .encart-travaux {
        width: 100%;
    }
}

/* Terrasse Section */
.terrasse-section {
    padding: 8rem 0;
}

/* Terrasse Inaccessible Section */
.terrasse-inaccessible-section {
    padding: 8rem 0;
}

.terrasse-inaccessible-content {
    text-align: left;
}

.terrasse-inaccessible-label {
    color: #A8631F;
    font-size: 12px;
    letter-spacing: 0.2em;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}


.terrasse-inaccessible-description {
    text-align: left;
}

.terrasse-inaccessible-description p {
    color: #4B5563;
    font-family: Poppins;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.terrasse-inaccessible-intro {
    color: #141D28;
    font-weight: 600;
}

/* Murs Enterrés Section */
.murs-enterres-section {
    padding: 6rem 0;
}



.murs-enterres-image {
    /* height: 100%; */
    max-width: 948px;
    max-height: 680px;

}

.murs-enterres-content {
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.murs-enterres-label {
    color: var(--brand-primary-500, #C47F3B);
    font-family: Poppins;
    font-size: var(--misc-overline, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 2.56px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}


.murs-enterres-description {
    color: #4B5563;
    font-family: Poppins;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

.murs-enterres-list {
    color: #4B5563;
    font-family: Poppins;
    font-size: 18px;
    line-height: 1.7;
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.murs-enterres-list li {
    margin-bottom: 1rem;
}

.murs-enterres-list li:last-child {
    margin-bottom: 0;
}

/* Toiture Étanche Section */
.toiture-etanche-section {
    padding: 6rem 0;
}

.toiture-etanche-content {
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.toiture-etanche-label {
    color: var(--brand-primary-500, #C47F3B);
    font-family: Poppins;
    font-size: var(--misc-overline, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 2.56px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}


.toiture-etanche-description {
    color: #4B5563;
    font-family: Poppins;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

.toiture-etanche-image {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.terrasse-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.terrasse-label {
    color: var(--brand-primary-500, #C47F3B);
    font-family: Poppins;
    font-size: var(--misc-overline, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 2.56px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}


.terrasse-description {
    color: #4B5563;
    font-family: Poppins;
    font-size: 18px;
    line-height: 1.7;
}



/* New Section Styles */
.new-section {
    padding: var(--section-3xl, 96px) 0;
    border-radius: var(--radius-xl, 30px);
    background: var(--neutral-dark-blue, #141D28);
    /* margin: 0 auto; */
    margin: 0px 12px;
}

.new-section-item {
    text-align: center;
}


.new-section-text {
    color: var(--neutral-white, #FFF);
    text-align: center;
    font-family: Poppins;
    font-size: var(--body-sm, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    opacity: 0.7;
    margin-top: 10px;
}

.icon-box {
    display: flex;
    width: 64px;
    height: 64px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    aspect-ratio: 1/1;
    border-radius: 5px;
    border: 1px solid var(--neutral-white, #FFF);
    margin: 0 auto 26px;
}

.icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

/* Responsive styles for new section */
@media (max-width: 768px) {
    .new-section {
        padding: 60px 0;
    }
    
    
    .new-section-text {
        font-size: 14px;
    }
    
    .icon-box {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
    
    .icon {
        width: 28px;
        height: 28px;
    }

    .toiture-etanche-image {
        height: auto;
    }

    .membranes-section {
   
    padding: 4rem 0;
    }

    .terrasse-section {
    padding: 4rem 0;
    }

    .terrasse-inaccessible-section {
    padding: 4rem 0;
    /* text-align: center; */
    }

    .toiture-etanche-section {
    padding: 3rem 0;
    }

    .murs-enterres-content {
    padding:1rem 0;
    
    }

    .toiture-etanche-content {
    padding:1rem 0;
   
}
}

@media (max-width: 480px) {
    .new-section {
        padding: 40px 0;
    }
    
    
    .new-section-text {
        font-size: 13px;
    }
    
    .icon-box {
        width: 48px;
        height: 48px;
    }
    
    .icon {
        width: 24px;
        height: 24px;
    }
}

/* Final overrides: ensure small-phone rules win the cascade */
@media (max-width: 545px) {
    .site-logo {
        height: 44px;
        width: auto;
        object-fit: contain;
    }
    .header .container-fluid {
        min-height: 56px;
    }
    .navbar-toggler {
        position: absolute;
        right: 1rem;
        top: -2rem;
    }
}

.container {
    max-width: 1640px!important;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1640px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1417px; /* 1640 * 0.864 */
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 1193px; /* 1417 * 0.842 */
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 895px; /* 1193 * 0.75 */
    }
}

@media (min-width: 576px) {
    .container {
        max-width: 671px; /* 895 * 0.75 */
    }
}

/* Legal Page Styles */
.hero-section {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--warm-brown) 100%);
    padding: 80px 0 60px;
    color: white;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.legal-section {
    padding: 60px 0;
    background-color: #fff;
}

.legal-content {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    line-height: 1.7;
}

.legal-content h2 {
    color: var(--primary-brown);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-brown);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1rem;
}

.legal-content strong {
    color: var(--primary-brown);
    font-weight: 600;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.legal-footer p {
    color: #666;
    font-style: italic;
    margin-bottom: 0;
}

/* Responsive adjustments for legal page */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .legal-section {
        padding: 40px 0;
    }
    
    .legal-content {
        padding: 20px;
        margin: 0 15px;
    }
    
    .legal-content h2 {
        font-size: 1.3rem;
    }
}