        
        
        .carousel-container {
            max-width: 1400px;
            margin: 69px auto;
            padding: 13px 0px;
        }

        .carousel {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
            border-radius: 0px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .carousel-inner {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }

        .carousel-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px;
            color: white;
        }

        .carousel-overlay h2 {
            font-size: 3.5em;
            margin-bottom: 20px;
            animation: slideInLeft 0.8s ease-out;
        }

        .carousel-overlay p {
            font-size: 1.3em;
            max-width: 600px;
            line-height: 1.6;
            margin-bottom: 30px;
            animation: slideInLeft 1s ease-out;
        }

        .carousel-overlay .btn-discover {
            background: #5bbdb5;
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            width: fit-content;
            transition: all 0.3s ease;
            animation: slideInLeft 1.2s ease-out;
        }

        .carousel-overlay .btn-discover:hover {
            background: #bed000;
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(190, 208, 0, 0.4);
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Boutons de navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            color: #333;
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .carousel-btn:hover {
            background: #5bbdb5;
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn.prev {
            left: 30px;
        }

        .carousel-btn.next {
            right: 30px;
        }

        /* Indicateurs */
        .carousel-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .indicator.active {
            background: #bed000;
            width: 40px;
            border-radius: 10px;
        }

        .indicator:hover {
            background: rgba(255, 255, 255, 0.8);
        }

        /* Numérotation */
        .slide-counter {
            position: absolute;
            top: 30px;
            right: 30px;
            background: rgba(91, 189, 181, 0.9);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1em;
            z-index: 10;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .carousel {
                height: 350px;
                margin-top: 5px;
            }

            .carousel-overlay {
                padding: 40px 84px;
            }

            .carousel-overlay h2 {
                font-size: 20px;
            }

            .carousel-overlay p {
                font-size: 1em;
            }

            .carousel-btn {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .carousel-btn.prev {
                left: 1px;
            }

            .carousel-btn.next {
                right: 0px;
            }
        }

        /* Section principale */
        .hero-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 19px;
            margin-bottom: 60px;
            align-items: center;
            justify-content: center;
            align-items: space-between;
            justify-items: center;
        }

        .hero-image {
            
            height:400px;
            min-height: 400px;
            border-radius: 15px;
            object-fit: cover;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .hero-content{
            margin-right: 0px;
        }
        .hero-content h1 {
            font-size: 35px;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .hero-content p {
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
            text-align: center;
        }
        .hero-content .description{
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
            text-align: center;

        }

        /* Liste dans hero-content */
        .hero-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .hero-list li {
            color: #666;
            line-height: 1.8;
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
            margin-left: 30px;
            text-align: inherit;
        }

        .hero-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #5bbdb5;
            font-weight: bold;
            font-size: 1.2em;
        }

        /* Grille des caractéristiques */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }

        .feature-card {
            background: white;
            padding: 20px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-3px);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .feature-icon.green {
            background: rgba(185, 203, 74, 0.2);
            color: #bed000;
        }

        .feature-icon.blue {
            background: rgba(101, 177, 179, 0.2);
            color: #5bbdb5;
        }

        .feature-text h3 {
            font-size: 1em;
            color: #333;
            font-weight: 600;
        }

        /* Box d'information */
        .info-box {
            background: rgba(91, 189, 181, 0.1);
            border-left: 4px solid #5bbdb5;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .info-box p {
            color: #555;
            line-height: 1.6;
        }

        /* Bouton */
        .btn-service {
            background: #5bbdb5;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-size: 1em;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .btn-service:hover {
            background: #4aa9a1;
        }

        /* Section inférieure */
        .bottom-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 119px;
            align-items: start;
            margin-bottom: -70px;
        }

        .left-content{
            margin-left: 99px;
        }
        .left-content h2 {
            font-size: 28px;
            color: #333;
            margin-bottom: 20px;
            line-height: 1.3;
            text-align: center;
        }

        .left-content .description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
            text-align: center;
        }

        /* Liste dans left-content */
        .left-content-list {
            list-style: none;
            padding: 0;
            margin: 0;
            
        }

        .left-content-list li {
            color: #666;
            line-height: 1.8;
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
            margin-left: 30px;
            text-align: inherit;
        }

        .left-content-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #5bbdb5;
            font-weight: bold;
            font-size: 1.2em;
        }

        .btn-more {
            background: #00a8e8;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-size: 1em;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .btn-more:hover {
            background: #0091cc;
        }

        /* Grille des tags */
        .tags-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-top: 25px;
        }

        .tag {
            padding: 15px 20px;
            border-radius: 8px;
            font-weight: 600;
            color: #333;
            font-size: 0.95em;
        }

        .tag.green {
            background: rgba(185, 203, 74, 0.15);
        }

        .tag.blue {
            background: rgba(91, 189, 181, 0.15);
        }

        /* Images immobilières */
        .property-images {
            display: grid;
            grid-template-columns: 1fr 0fr;
            justify-items: center;
        }

        .property-image {
            
            border-radius: 10px;
            object-fit: cover;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .property-image.large {
            height: 70%;
            min-height: 400px;
        }

        .property-image.small {
            height: 100%;
        }

        @media (max-width: 768px){
            .left-content-list{
                margin-bottom: 90px;
                margin-left: auto;
            }
            
        }
        /* Responsive */
        @media (max-width: 768px) {
            .hero-section,
            .bottom-section,
            .property-images {
                grid-template-columns: 1fr;
            }

            /* Inverser l'ordre sur mobile : image avant le contenu */
            .bottom-section {
                display: flex;
                flex-direction: column;
            }

            .property-images {
                order: -1;
            }

            .left-content {
                order: 1;
                margin-left: 0;
            }

            .features-grid,
            .tags-grid {
                grid-template-columns: 1fr;
            }

            .hero-content h1 {
                font-size: 28px;
                margin-left: 2px;
            }

            .left-content h2 {
                font-size: 25px;
                text-align: center;
            }
            .hero-content .description{
                margin-left: 0px;
            }
        }
      
/*-------stats-section-------------------*/
.stats-section {
            background-color: #0a3d4a8c;
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        /* Image de fond avec opacité */
        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('images/2151615073.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.45;
            z-index: 0;
        }

        /* Overlay de couleur par-dessus l'image */
        .stats-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(10, 61, 74, 0.219) 0%, rgba(22, 75, 90, 0.274) 10%);
            z-index: 1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .stat-card {
            
            border-radius: 15px;
            padding: 35px 25px;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(91, 189, 181, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .stat-icon {
            width: 50px;
            height: 50px;
            margin-bottom: 20px;
        }

        .icon-wrapper {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stat-card:nth-child(1) .icon-wrapper { background: rgba(255, 152, 0, 0.15); }
        .stat-card:nth-child(2) .icon-wrapper { background: rgba(91, 189, 181, 0.15); }
        .stat-card:nth-child(3) .icon-wrapper { background: rgba(255, 193, 7, 0.15); }
        .stat-card:nth-child(4) .icon-wrapper { background: rgba(76, 175, 80, 0.15); }

        .stat-icon svg {
            width: 30px;
            height: 30px;
        }

        .stat-number {
            font-size: 42px;
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 8px;
            letter-spacing: -1px;
        }

        .stat-label {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.4;
        }

        /* Couleurs des icônes */
        .stat-card:nth-child(1) svg { fill: #ff9800; }
        .stat-card:nth-child(2) svg { fill: #5bbdb5; }
        .stat-card:nth-child(3) svg { fill: #ffc107; }
        .stat-card:nth-child(4) svg { fill: #4caf50; }

        @media (max-width: 768px) {
            .stats-section {
                padding: 48px 15px;
            }

            .stats-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px;
            }

            .stat-card {
                padding: 25px 20px;
            }

            .stat-number {
                font-size: 36px;
            }

            .stat-label {
                font-size: 14px;
            }
        }
/*--------stats-section------------------*/

/*-----------------custom----------------------*/
 /* Section principale */
        .custom-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            margin-bottom: 60px;
            justify-content: center;
            align-items: center;
        }

        /* Partie gauche avec grille d'images */
        .images-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 15px;
            padding: 20px;
            background: #f9f9f9;
        }

        .grid-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .grid-image:hover {
            transform: scale(1.05);
        }

        /* Grande image en haut à gauche */
        .grid-image.large {
            grid-row: span 2;
        }

        /* Partie droite avec contenu texte */
        .content-part {
            background: linear-gradient(135deg, #a67c52 0%, #8b6f47 100%);
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: white;
            position: relative;
        }

        .content-part::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="rgba(255,255,255,0.02)" width="100" height="100"/></svg>');
            opacity: 0.3;
        }

        .content-part > * {
            position: relative;
            z-index: 1;
        }

        .content-part h2 {
            font-size: 2.8em;
            margin-bottom: 25px;
            line-height: 1.2;
            font-weight: 700;
        }

        .content-part p {
            font-size: 1.05em;
            line-height: 1.8;
            margin-bottom: 35px;
            opacity: 0.95;
        }

        .btn-learn {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid white;
            padding: 15px 40px;
            border-radius: 8px;
            font-size: 1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: fit-content;
            backdrop-filter: blur(10px);
        }

        .btn-learn:hover {
            background: white;
            color: #a67c52;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        /* Version avec couleurs personnalisées */
        .custom-section.turquoise .content-part {
            background: linear-gradient(135deg, #5bbdb5 0%, #4aa9a1 100%);
        }

        .custom-section.turquoise .btn-learn:hover {
            color: #5bbdb5;
        }

        .custom-section.green .content-part {
            background: linear-gradient(135deg, #bed000 0%, #a5ba00 100%);
        }

        .custom-section.green .btn-learn:hover {
            color: #bed000;
        }

        /* Section inversée */
        .custom-section.reverse {
            grid-template-columns: 1fr 1fr;
        }

        .custom-section.reverse .images-grid {
            order: 2;
        }

        .custom-section.reverse .content-part {
            order: 1;
        }

        .custom-section.reverse .element-flex {
            order: 1;
            padding: 13px;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            align-content: center;
            justify-content: center;
            gap: 20px;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .custom-section,
            .custom-section.reverse {
                grid-template-columns: 1fr;
            }

            .custom-section.reverse .images-grid,
            .custom-section.reverse .content-part {
                order: 0;
            }

            .content-part {
                padding: 40px 30px;
            }

            .content-part h2 {
                font-size: 2em;
            }

            .images-grid {
                min-height: 400px;
            }
        }
        footer {
            position: relative;
            color: white;
            padding: 60px 20px 30px;
            overflow: hidden;
        }

        .footer-background {
            position: absolute;
            
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

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

        .footer-overlay {
            position: absolute;
           
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(91, 189, 181, 0.85) 0%, 
                rgba(185, 203, 74, 0.75) 100%);
            z-index: 2;
        }

        .footer-content {
            position: relative;
            z-index: 3;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: white;
            margin-bottom: 25px;
            font-size: 24px;
            font-weight: 600;
        }

        .logo-section {
            display: flex;
            flex-direction: column;
        }


        .logo img {
            max-width: 250px;
            height: auto;
        }

        

       
        .social-icon {
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #5bbdb5;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-3px) scale(1.1);
        }

        .contact-info-item, .hours-info-item {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 20px;
        }

        .contact-details {
            flex: 1;
        }

        .contact-details p, .hours-details p {
            margin: 0;
            line-height: 1.6;
            color: white;
            font-size: 15px;
        }

        .contact-details strong, .hours-details strong {
            display: block;
            margin-bottom: 5px;
            font-size: 14px;
            opacity: 0.9;
        }

        .hours-info-item {
            margin-bottom: 15px;
        }

        .hours-details p {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom {
            position: relative;
            z-index: 3;
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            text-align: center;
            font-size: 14px;
            color: white;
        }

        @media (max-width: 968px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .logo-section {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 640px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .logo-section {
                grid-column: 1;
            }
        }