* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: #fafafa;
            margin: 0;
            padding: 0;
            width: 100%;
            overflow-x: hidden;
        }

        /* ===== HEADER BLOG ===== */
        .header-blog {
            min-height: 100vh;
            padding: 80px 20px 40px;
            margin-top: 0;
            background-image: url('https://3.bp.blogspot.com/-04vqcpHNiuo/W0x2THLFZXI/AAAAAAAAOl8/DUvOAykZU9Q0rVaRw4nFTWQM-d8__k-agCLcBGAs/s1600/dresscounter.jpg');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            box-shadow: 0 15px 30px 0 rgba(5, 16, 44, .15);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            animation: bg-animation 25s ease-in-out infinite;
        }

        @keyframes bg-animation {
            0% { background-position: top center; }
            50% { background-position: bottom center; }
            100% { background-position: top center; }
        }

        .header-blog .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 10px;
        }

        /* ===== LOGO ===== */
        .logo-container {
            margin-bottom: 25px;
        }

        .logo-container img {
            width: 120px;
            max-width: 40%;
            height: auto;
            border-radius: 50%;
            display: block;
            margin: 0 auto;
        }

        /* ===== TEXTE ANIMÉ ===== */
        .animated-title {
            position: relative;
            display: inline-block;
            font-size: clamp(1rem, 3vw, 1.8rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: transparent;
            margin: 10px auto 30px;
            max-width: 100%;
            white-space: normal;
            word-break: break-word;
            line-height: 1.4;
        }

        .animated-title::before {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            color: #FFF;
            overflow: hidden;
            border-right: 2px solid #FFF;
            animation: type 10s steps(30) infinite;
            white-space: nowrap;
            text-align: left;
        }

        @keyframes type {
            0% { width: 0%; }
            50% { width: 100%; }
            100% { width: 0%; }
        }

        /* ===== CARTES ===== */
        .row-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin: 20px 0 30px;
        }

        .col-card {
            flex: 1 1 280px;
            max-width: 350px;
            min-width: 250px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .col-card:hover {
            transform: translateY(-5px);
        }

        .card-box {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            height: 140px;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: 0.3s;
            gap: 15px;
        }

        .card-box .icon-circle {
            width: 60px;
            height: 60px;
            min-width: 60px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: #1a3a6b;
        }

        .card-box .card-text {
            text-align: left;
            color: #fff;
        }

        .card-box .card-text h5 {
            font-size: clamp(0.85rem, 2vw, 1rem);
            font-weight: 700;
            margin-bottom: 2px;
        }

        .card-box .card-text h2 {
            font-size: clamp(1.1rem, 3vw, 1.6rem);
            font-weight: 700;
            margin: 0;
        }

        .bg-orange { background-color: #f39c12; }
        .bg-info    { background-color: #17a2b8; }
        .bg-success { background-color: #28a745; }

        /* ===== RÉSEAUX SOCIAUX ===== */
        .social-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 12px;
            margin: 25px 0 10px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            color: #fff;
            font-size: 26px;
            text-decoration: none;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .social-links a:hover {
            transform: scale(1.1);
            opacity: 0.9;
        }

        .bg-facebook  { background: #1877F2; }
        .bg-instagram { background: #E1306C; }
        .bg-whatsapp  { background: #25D366; }
        .bg-linkedin  { background: #0A66C2; }
        .bg-youtube   { background: #FF0000; }
        .bg-email     { background: #6c757d; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .header-blog {
                min-height: auto;
                padding: 100px 15px 50px;
            }

            .animated-title {
                font-size: clamp(0.8rem, 2.8vw, 1.2rem);
                letter-spacing: 1px;
            }

            .animated-title::before {
                white-space: normal;
                text-align: center;
                border-right: none;
                animation: none;
            }

            .col-card {
                flex: 1 1 100%;
                max-width: 100%;
                min-width: unset;
            }

            .card-box {
                height: 120px;
                padding: 15px;
                border-radius: 8px;
            }

            .card-box .icon-circle {
                width: 50px;
                height: 50px;
                min-width: 50px;
                font-size: 22px;
            }

            .card-box .card-text h5 {
                font-size: 0.8rem;
            }

            .card-box .card-text h2 {
                font-size: 1rem;
            }

            .social-links a {
                width: 48px;
                height: 48px;
                font-size: 22px;
            }

            .logo-container img {
                width: 100px;
                max-width: 35%;
            }
        }

        @media (max-width: 480px) {
            .header-blog {
                padding: 80px 10px 30px;
            }

            .card-box {
                height: 100px;
                padding: 10px;
                gap: 10px;
            }

            .card-box .icon-circle {
                width: 42px;
                height: 42px;
                min-width: 42px;
                font-size: 18px;
            }

            .card-box .card-text h5 {
                font-size: 0.7rem;
            }

            .card-box .card-text h2 {
                font-size: 0.85rem;
            }

            .social-links a {
                width: 42px;
                height: 42px;
                font-size: 18px;
            }

            .animated-title {
                font-size: 0.75rem;
                letter-spacing: 0.5px;
            }
        }

        /* ===== UTILITAIRES ===== */
        .text-white { color: #fff; }
        .fw-bold { font-weight: 700; }
        .mb-0 { margin-bottom: 0; }
        .mt-3 { margin-top: 15px; }
        .w-100 { width: 100%; }



/*Debut code css pour page location

/* Style des cartes hover (PARTENAIRES) */
        .hover-card {
            transition: all 0.3s ease;
            border-radius: 16px;
            background: #ffffff;
        }
        .hover-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12) !important;
        }
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-size: 60% 60%;
        }
        @media (max-width: 768px) {
            .hover-card {
                margin-bottom: 20px;
            }
        }

        /* Style des partenaires */
        .partenaire-item {
            background: #ffffff;
            border-radius: 12px;
            padding: 20px;
            transition: all 0.3s ease;
            border: 2px solid #e9ecef;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 10px;
        }
        .partenaire-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border-color: #003580;
        }
        .partenaire-item .logo-icon {
            font-size: 3rem;
            color: #003580;
            transition: all 0.3s ease;
        }
        .partenaire-item:hover .logo-icon {
            color: #25D366;
            transform: scale(1.1);
        }
        .partenaire-item .logo-text {
            font-size: 0.7rem;
            font-weight: 600;
            color: #6c757d;
            margin-top: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .partenaire-item .logo-sub {
            font-size: 0.6rem;
            color: #adb5bd;
        }
        #partenairesCarousel {
            background: #f8f9fa;
            padding: 30px 0;
            border-radius: 16px;
        }
        .carousel-control-prev,
        .carousel-control-next {
            width: 5%;
        }
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: #003580;
            border-radius: 50%;
            padding: 20px;
            background-size: 60%;
        }
        .carousel-indicators li {
            background-color: #003580;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 5px;
        }
        .carousel-indicators .active {
            background-color: #25D366;
        }

        /* ===== HERO SLIDER IMMOBILIER ===== */
        .hero-slider {
            position: relative;
            height: 550px;
            overflow: hidden;
            margin-bottom: 0;
        }

        .hero-slider .slide {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            opacity: 0;
            animation: heroSlide 20s ease-in-out infinite;
        }

        /* NOUVELLES IMAGES */
        .hero-slider .slide:nth-child(1) {
            background-image: url('https://images.pexels.com/photos/1396132/pexels-photo-1396132.jpeg?auto=compress&cs=tinysrgb&w=1600');
            animation-delay: 0s;
        }
        .hero-slider .slide:nth-child(2) {
            background-image: url('https://images.pexels.com/photos/280229/pexels-photo-280229.jpeg?auto=compress&cs=tinysrgb&w=1600');
            animation-delay: 5s;
        }
        .hero-slider .slide:nth-child(3) {
            background-image: url('https://images.pexels.com/photos/258154/pexels-photo-258154.jpeg?auto=compress&cs=tinysrgb&w=1600');
            animation-delay: 10s;
        }
        .hero-slider .slide:nth-child(4) {
            background-image: url('https://images.pexels.com/photos/259962/pexels-photo-259962.jpeg?auto=compress&cs=tinysrgb&w=1600');
            animation-delay: 15s;
        }

        @keyframes heroSlide {
            0% { opacity: 0; transform: translate(-50%, -50%) scale(1.1); }
            10% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
            20% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
            30% { opacity: 0; transform: translate(-50%, -50%) scale(1.1); }
            100% { opacity: 0; transform: translate(-50%, -50%) scale(1.1); }
        }

        .hero-slider .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(13, 27, 74, 0.8) 0%, rgba(13, 27, 74, 0.3) 100%);
            z-index: 1;
        }

        .hero-slider .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            text-align: center;
            color: white;
            width: 90%;
            max-width: 800px;
            padding: 20px;
        }

        .hero-slider .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 15px;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            animation: fadeInDown 1.5s ease;
        }

        .hero-slider .hero-content h1 span {
            color: #25D366;
        }

        .hero-slider .hero-content .subtitle {
            font-size: 1.1rem;
            font-weight: 300;
            letter-spacing: 5px;
            margin-bottom: 25px;
            opacity: 0.9;
            animation: fadeInUp 1.5s ease 0.3s both;
        }

        .hero-slider .hero-content .breadcrumb-custom {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 10px 25px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: fadeInUp 1.5s ease 0.6s both;
        }

        .hero-slider .hero-content .breadcrumb-custom a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-slider .hero-content .breadcrumb-custom a:hover {
            color: #25D366;
        }

        .hero-slider .hero-content .breadcrumb-custom .sep {
            color: rgba(255, 255, 255, 0.3);
        }

        .hero-slider .hero-content .breadcrumb-custom .current {
            color: #ffffff;
            font-weight: 600;
        }

        /* Indicateurs du slider */
        .hero-slider .indicators {
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            gap: 10px;
        }

        .hero-slider .indicators .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .hero-slider .indicators .dot.active {
            background: #25D366;
            border-color: #ffffff;
            transform: scale(1.2);
        }

        .hero-slider .indicators .dot:hover {
            background: rgba(255, 255, 255, 0.6);
        }

        /* Animations */
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero-slider { height: 450px; }
            .hero-slider .hero-content h1 { font-size: 2.8rem; }
            .hero-slider .hero-content .subtitle { font-size: 0.95rem; }
        }


        @media (max-width: 768px) {
            .hero-slider { height: 380px; }
            .hero-slider .hero-content h1 { font-size: 2rem; letter-spacing: 2px; }
            .hero-slider .hero-content .subtitle { font-size: 0.8rem; letter-spacing: 3px; margin-bottom: 15px; }
            .hero-slider .hero-content .breadcrumb-custom { padding: 8px 18px; font-size: 0.7rem; flex-wrap: wrap; justify-content: center; }
            .hero-slider .indicators .dot { width: 10px; height: 10px; }
        }

        @media (max-width: 480px) {
            .hero-slider { height: 320px; }
            .hero-slider .hero-content h1 { font-size: 1.5rem; letter-spacing: 1px; }
            .hero-slider .hero-content .subtitle { font-size: 0.7rem; letter-spacing: 2px; }
            .hero-slider .hero-content .breadcrumb-custom { padding: 6px 14px; font-size: 0.6rem; gap: 8px; }
            .hero-slider .indicators .dot { width: 8px; height: 8px; }
        }

        .alert-success-custom {
            background: #d4edda;
            color: #155724;
            border: 2px solid #28a745;
            border-radius: 10px;
            padding: 15px 20px;
        }
        .alert-success-custom i {
            font-size: 1.5rem;
        }

        .alert-danger-custom {
            background: #f8d7da;
            color: #721c24;
            border: 2px solid #dc3545;
            border-radius: 10px;
            padding: 15px 20px;
        }
        .alert-danger-custom i {
            font-size: 1.5rem;
        }
/*fin code css pour la page location


<!-- CSS pour les animations du carousel -->
        <style>
            .carousel:hover .carousel-control-prev,
            .carousel:hover .carousel-control-next {
                opacity: 1 !important;
            }
            .carousel-control-prev:hover,
            .carousel-control-next:hover {
                transform: translateY(-50%) scale(1.1) !important;
            }
            .carousel-indicators li.active {
                background: #ffffff !important;
                width: 40px !important;
                transition: all 0.3s ease;
            }
            .carousel-indicators li:hover {
                background: rgba(255,255,255,0.8) !important;
            }
            .carousel-image:hover {
                transform: scale(1.05);
            }
            .bg-gradient-primary {
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            }
            /* Transition fluide */
            .carousel-fade .carousel-item {
                opacity: 0;
                transition: opacity 0.8s ease-in-out;
            }
            .carousel-fade .carousel-item.active {
                opacity: 1;
            }
            .carousel-fade .carousel-item-next.carousel-item-left,
            .carousel-fade .carousel-item-prev.carousel-item-right {
                opacity: 0;
            }
            .carousel-fade .carousel-item-next,
            .carousel-fade .carousel-item-prev,
            .carousel-fade .carousel-item.active.carousel-item-left,
            .carousel-fade .carousel-item.active.carousel-item-right {
                opacity: 0;
            }
            
            /* Styles des boutons professionnels */
            .btn-professional {
                position: relative;
                overflow: hidden;
                border-radius: 10px;
                font-weight: 600;
                font-size: 0.85rem;
                padding: 10px 20px;
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                letter-spacing: 0.3px;
                text-transform: uppercase;
                flex: 1;
                border: none;
            }
            
            .btn-professional::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
                transition: left 0.5s ease;
            }
            
            .btn-professional:hover::before {
                left: 100%;
            }
            
            .btn-professional i {
                transition: all 0.3s ease;
            }
            
            .btn-professional:hover i {
                transform: scale(1.2);
            }
            
            .btn-professional:active {
                transform: scale(0.95);
            }
            
            /* Bouton Vidéo */
            .btn-video {
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            }
            
            .btn-video:hover {
                transform: translateY(-3px);
                box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
                color: white;
            }
            
            .btn-video::after {
                content: '';
                position: absolute;
                inset: -2px;
                border-radius: 10px;
                background: linear-gradient(135deg, #667eea, #764ba2);
                z-index: -1;
                opacity: 0;
                transition: opacity 0.3s ease;
                filter: blur(8px);
            }
            
            .btn-video:hover::after {
                opacity: 0.6;
            }
            
            /* Bouton Détails */
            .btn-details {
                background: white;
                color: #2d3436;
                border: 2px solid #e0e5ec;
                box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            }
            
            .btn-details:hover {
                transform: translateY(-3px);
                border-color: #667eea;
                color: #667eea;
                box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
                background: white;
            }
            
            .btn-details i {
                color: #667eea;
            }
            
            .btn-details:hover i {
                color: #764ba2;
            }
            
            /* Animation de pulsation pour le bouton Vidéo */
            @keyframes pulse {
                0% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4); }
                70% { box-shadow: 0 0 0 10px rgba(102, 126, 234, 0); }
                100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0); }
            }
            
            .btn-video:focus {
                animation: pulse 1.5s ease-in-out;
            }
    

    <style>
    .service-section {
        position: relative;
        overflow: hidden;
        background: #f8f9fa;
        padding: 80px 0;
    }
    
    /* Formes flottantes en arrière-plan */
    .floating-shapes {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        pointer-events: none;
        overflow: hidden;
    }
    
    .shape {
        position: absolute;
        border-radius: 50%;
        opacity: 0.03;
        animation: float 20s infinite ease-in-out;
    }
    
    .shape-1 {
        width: 300px;
        height: 300px;
        background: #667eea;
        top: -100px;
        right: -50px;
        animation-delay: 0s;
    }
    
    .shape-2 {
        width: 400px;
        height: 400px;
        background: #764ba2;
        bottom: -150px;
        left: -100px;
        animation-delay: 5s;
    }
    
    .shape-3 {
        width: 200px;
        height: 200px;
        background: #20c997;
        top: 50%;
        right: 20%;
        animation-delay: 10s;
    }
    
    @keyframes float {
        0%, 100% { transform: translate(0, 0) rotate(0deg); }
        25% { transform: translate(30px, -30px) rotate(90deg); }
        50% { transform: translate(-20px, 20px) rotate(180deg); }
        75% { transform: translate(40px, -10px) rotate(270deg); }
    }
    
    /* Animation des cartes individuelles */
    .service-item {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .service-item:hover {
        transform: translateY(-8px) !important;
        box-shadow: 0 20px 60px rgba(0,0,0,0.12) !important;
    }
    
    /* Effet de brillance sur les cartes */
    .service-card-glow {
        position: relative;
        overflow: hidden;
        cursor: default;
    }
    
    .service-card-glow::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }
    
    .service-card-glow:hover::before {
        opacity: 1;
        animation: glow 0.8s ease;
    }
    
    @keyframes glow {
        0% { transform: scale(0.5); opacity: 0; }
        50% { opacity: 0.5; }
        100% { transform: scale(1.5); opacity: 0; }
    }
    
    /* Animation du titre */
    .section-title-animated h1 {
        animation: fadeInUp 1s ease;
    }
    
    .section-title-animated p {
        animation: fadeInUp 1.2s ease;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Badge flottant */
    .floating-badge {
        animation: floating 3s ease-in-out infinite;
    }
    
    @keyframes floating {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }
    
    /* Section d'action en bas */
    .action-section-bottom {
        margin-top: 40px;
        border-top: 2px solid rgba(102, 126, 234, 0.1);
        padding-top: 40px;
    }
    
    .action-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 40px 30px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.06);
        border: 1px solid rgba(0,0,0,0.04);
        transition: all 0.3s ease;
    }
    
    .action-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    }
    
    .action-card .icon-big {
        font-size: 50px;
        color: #667eea;
        opacity: 0.2;
        margin-bottom: 15px;
    }
    
    .btn-action {
        transition: all 0.3s ease;
        font-size: 15px;
        min-width: 200px;
    }
    
    .btn-action:hover {
        transform: translateY(-3px);
    }
    
    .btn-action-primary {
        background: #2d3436;
        color: white;
        border: none;
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    }
    
    .btn-action-primary:hover {
        background: #1a1a1a;
        box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        color: white;
    }
    
    .btn-action-outline {
        background: transparent;
        color: #2d3436;
        border: 2px solid #2d3436;
    }
    
    .btn-action-outline:hover {
        background: #2d3436;
        color: white;
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }
    
    @media (max-width: 768px) {
        .service-section {
            padding: 40px 0;
        }
        .shape {
            display: none;
        }
        .action-card {
            padding: 30px 20px;
        }
        .btn-action {
            min-width: 100%;
            margin-bottom: 10px;
        }
    }

/* FIN Style des cartes hover (PARTENAIRES) */


/*zone espace location de bien
 :root {
            --primary: #1a1a2e;
            --accent: #c9a227;
            --accent-soft: #f8f4eb;
            --text: #2d2d2d;
            --text-muted: #6b7280;
            --border: #e5e7eb;
            --radius: 12px;
            --shadow: 0 4px 24px rgba(0,0,0,0.06);
            --shadow-hover: 0 12px 40px rgba(0,0,0,0.10);
        }

        body {
            background: #fafafa;
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            color: var(--text);
            line-height: 1.5;
            overflow-x: hidden;
        }

        .section-header {
            margin-bottom: 3.5rem;
        }
        .section-header .subtitle {
            font-size: 0.8rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        .section-header h1 {
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: -0.5px;
        }
        .section-header .divider {
            width: 48px;
            height: 3px;
            background: var(--accent);
            margin: 1rem auto 0;
        }

        .property-card {
            background: #fff;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid transparent;
        }
        .property-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(201, 162, 39, 0.15);
        }

        .property-image {
            position: relative;
            height: 240px;
            overflow: hidden;
            background: #f3f4f6;
            cursor: pointer;
        }
        .property-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .property-card:hover .property-image img {
            transform: scale(1.05);
        }

        /* ===== OVERLAY DE ZOOM ===== */
        .image-zoom-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.92);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 40px;
            opacity: 0;
            transition: opacity 0.4s ease;
            cursor: zoom-out;
        }
        .image-zoom-overlay.active {
            display: flex;
            opacity: 1;
        }
        .image-zoom-overlay img {
            max-width: 100%;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 20px 80px rgba(0,0,0,0.6);
            transform: scale(0.9);
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: zoom-out;
        }
        .image-zoom-overlay.active img {
            transform: scale(1);
        }
        .image-zoom-overlay .close-zoom {
            position: fixed;
            top: 24px;
            right: 32px;
            color: #fff;
            font-size: 2.2rem;
            cursor: pointer;
            opacity: 0.7;
            transition: all 0.3s;
            z-index: 10000;
            background: rgba(255,255,255,0.1);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255,255,255,0.2);
        }
        .image-zoom-overlay .close-zoom:hover {
            opacity: 1;
            transform: rotate(90deg);
            background: rgba(255,255,255,0.2);
        }
        .image-zoom-overlay .zoom-counter {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
            background: rgba(0,0,0,0.5);
            padding: 6px 18px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        .image-zoom-overlay .nav-arrows {
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            padding: 0 20px;
            display: none;
            justify-content: space-between;
            pointer-events: none;
            z-index: 10001;
        }
        .image-zoom-overlay .nav-arrows button {
            pointer-events: auto;
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.25);
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            font-size: 1.2rem;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
            cursor: pointer;
        }
        .image-zoom-overlay .nav-arrows button:hover {
            background: rgba(255,255,255,0.3);
            transform: scale(1.1);
        }
        .image-zoom-overlay .nav-arrows button:disabled {
            opacity: 0.2;
            cursor: not-allowed;
            transform: none;
        }

        .badge-price {
            position: absolute;
            bottom: 16px;
            left: 16px;
            background: rgba(26, 26, 46, 0.92);
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            padding: 7px 16px;
            border-radius: 6px;
            backdrop-filter: blur(6px);
            z-index: 2;
            pointer-events: none;
        }
        .badge-status {
            position: absolute;
            top: 16px;
            right: 16px;
            background: #10b981;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 0.3px;
            z-index: 2;
            pointer-events: none;
        }

        .property-image .carousel-control-prev,
        .property-image .carousel-control-next {
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.95);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;
            transition: opacity 0.25s;
            box-shadow: 0 2px 10px rgba(0,0,0,0.12);
            z-index: 3;
        }
        .property-card:hover .carousel-control-prev,
        .property-card:hover .carousel-control-next {
            opacity: 1;
        }
        .carousel-control-prev { left: 12px; }
        .carousel-control-next { right: 12px; }
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            filter: invert(1);
            width: 14px;
            height: 14px;
        }

        .property-body {
            padding: 1.4rem 1.5rem 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .property-title {
            font-size: 1.15rem;
            font-weight: 650;
            color: var(--primary);
            margin-bottom: 0.35rem;
            line-height: 1.3;
        }
        .property-address {
            font-size: 0.875rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }
        .property-address i {
            color: var(--accent);
            font-size: 0.8rem;
            margin-right: 4px;
        }

        .property-features {
            display: flex;
            gap: 1.25rem;
            padding: 0.9rem 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            margin-bottom: 1.25rem;
            font-size: 0.82rem;
            color: #4b5563;
        }
        .property-features span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .property-features i {
            color: var(--accent);
            font-size: 0.9rem;
        }

        .btn-group-actions {
            display: flex;
            gap: 0.6rem;
            margin-top: auto;
        }
        .btn-video {
            flex: 1;
            background: transparent;
            border: 1.5px solid #d1d5db;
            color: #374151;
            font-weight: 550;
            font-size: 0.85rem;
            padding: 0.55rem 0.8rem;
            border-radius: 8px;
            transition: all 0.2s;
        }
        .btn-video:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: #f9fafb;
        }
        .btn-reserve {
            flex: 1.4;
            background: var(--primary);
            color: #fff;
            border: none;
            font-weight: 600;
            font-size: 0.85rem;
            padding: 0.55rem 0.8rem;
            border-radius: 8px;
            transition: all 0.25s;
        }
        .btn-reserve:hover {
            background: #111827;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(26,26,46,0.25);
            color: #fff;
        }

        .cta-section {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border-radius: 16px;
            padding: 3.5rem 2rem;
            margin-top: 4rem;
            color: #fff;
            text-align: center;
        }
        .cta-section h3 {
            font-weight: 700;
            font-size: 1.6rem;
            margin-bottom: 0.5rem;
        }
        .cta-section p {
            opacity: 0.85;
            margin-bottom: 1.8rem;
            font-size: 1.05rem;
        }
        .btn-cta-primary {
            background: var(--accent);
            color: #1a1a2e;
            border: none;
            font-weight: 650;
            padding: 0.75rem 1.8rem;
            border-radius: 8px;
            margin: 0 0.4rem 0.5rem;
            transition: all 0.25s;
        }
        .btn-cta-primary:hover {
            background: #b8921f;
            color: #1a1a2e;
            transform: translateY(-2px);
        }
        .btn-cta-outline {
            background: transparent;
            color: #fff;
            border: 1.5px solid rgba(255,255,255,0.4);
            font-weight: 550;
            padding: 0.75rem 1.8rem;
            border-radius: 8px;
            margin: 0 0.4rem 0.5rem;
            transition: all 0.25s;
        }
        .btn-cta-outline:hover {
            background: rgba(255,255,255,0.1);
            border-color: #fff;
            color: #fff;
        }

        .empty-state {
            background: #fff;
            border-radius: var(--radius);
            padding: 4rem 2rem;
            text-align: center;
            box-shadow: var(--shadow);
        }

        @media (max-width: 767.98px) {
            .property-image { height: 210px; }
            .section-header h1 { font-size: 1.9rem; }
            .btn-group-actions { flex-direction: column; }
            .btn-video, .btn-reserve { flex: none; }
            .image-zoom-overlay { padding: 20px; }
            .image-zoom-overlay .close-zoom { top: 16px; right: 20px; width: 40px; height: 40px; font-size: 1.6rem; }
            .image-zoom-overlay .nav-arrows { padding: 0 8px; }
            .image-zoom-overlay .nav-arrows button { width: 40px; height: 40px; font-size: 1rem; }
        }

/ espace location de bien
