<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* RECHERCHE.CSS - VERSION UNIVERSELLE COMPATIBLE TOUS NAVIGATEURS */

/* ======= HERO SECTION MODERNE ET COMPACTE ======= */
.hero {
    background: #000;
    color: white;
    padding: 40px 0 20px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.02);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 400;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ======= SECTION RECHERCHE STANDARD AMÃ‰LIORÃ‰E ======= */
.search-section {
    padding: 30px 0;
    background: #f9f9f9;
}

.search-form-container {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* VERSION MODERNE SIMPLIFIÃ‰E COMPATIBLE */
.search-form-modern {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin: -10px auto 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.search-form-container h2 {
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: #000;
}

.search-form {
    display: block;
}

/* GRILLE COMPATIBLE AVEC FLOAT ET FLEXBOX */
.search-grid {
    display: block;
    margin-bottom: 20px;
    overflow: hidden; /* Clearfix */
}

.search-grid .form-field {
    float: left;
    width: 23%;
    margin-right: 2.66%;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.search-grid .form-field:nth-child(4n) {
    margin-right: 0;
}

/* Fallback moderne pour navigateurs supportant flexbox */
@supports (display: flex) {
    .search-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin-bottom: 20px;
    }
    
    .search-grid .form-field {
        float: none;
        flex: 1 1 200px;
        margin-right: 0;
        min-width: 200px;
    }
}

.search-row {
    display: block;
    overflow: hidden;
    margin-bottom: 20px;
}

.search-row .form-group {
    float: left;
    width: 48%;
    margin-right: 4%;
    box-sizing: border-box;
}

.search-row .form-group:last-child {
    margin-right: 0;
}

.form-group,
.form-field {
    margin-bottom: 15px;
}

.form-group label,
.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.85rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-field input,
.form-field select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    background: #fafafa;
    color: #333;
    box-sizing: border-box;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: #000;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.search-actions,
.search-actions-modern {
    text-align: center;
    margin-top: 20px;
    overflow: hidden;
}

.search-button,
.btn-search {
    background: #000;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-right: 15px;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.search-button:hover,
.btn-search:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.reset-button,
.btn-reset {
    background: transparent;
    color: #6b7280;
    border: 2px solid #e5e7eb;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.reset-button:hover,
.btn-reset:hover {
    border-color: #9ca3af;
    color: #374151;
    background: #f0f0f0;
}

/* ======= SECTION RÃ‰SULTATS MODERNE ======= */
.search-results,
.arrondissement-results {
    padding: 40px 0;
}

.results-header {
    overflow: hidden;
    margin-bottom: 24px;
}

.results-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    float: left;
}

.results-count {
    color: #6b7280;
    font-size: 0.9rem;
    background: #f3f4f6;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    float: right;
    margin-top: 8px;
}

.no-results {
    text-align: center;
    padding: 50px 0;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.no-results i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 20px;
}

.no-results p {
    color: #666;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* ======= GRILLE UNIVERSELLE AVEC FLOAT + FLEXBOX ======= */
.syndic-grid {
    display: block;
    overflow: hidden;
    margin-top: 20px;
}

.syndic-grid.arrondissement-grid {
    display: block;
    overflow: hidden;
    margin-top: 20px;
}

.syndic-card {
    background: #fff;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 20px;
    
    /* Float pour compatibilitÃ© anciens navigateurs */
    float: left;
    width: 31.33%;
    margin-right: 3%;
    
    /* Transitions */
    -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -moz-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.syndic-card:nth-child(3n) {
    margin-right: 0;
}

.syndic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

/* Version moderne pour navigateurs supportant flexbox */
@supports (display: flex) {
    .syndic-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 20px;
    }
    
    .syndic-grid.arrondissement-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 20px;
    }
    
    .syndic-card {
        float: none;
        flex: 1 1 300px;
        max-width: calc(33.333% - 14px);
        min-width: 280px;
        margin-right: 0;
    }
}

/* ======= FOND DÃ‰GRADÃ‰ COMPATIBLE ======= */
.syndic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: #2c3e50;
    background: -webkit-linear-gradient(135deg, #2c3e50 0%, #34495e 30%, #5a6c7d 70%, #7f8c8d 100%);
    background: -moz-linear-gradient(135deg, #2c3e50 0%, #34495e 30%, #5a6c7d 70%, #7f8c8d 100%);
    background: -o-linear-gradient(135deg, #2c3e50 0%, #34495e 30%, #5a6c7d 70%, #7f8c8d 100%);
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 30%, #5a6c7d 70%, #7f8c8d 100%);
    border-radius: 15px 15px 0 0;
    z-index: 1;
}

.syndic-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 1.5px, transparent 1.5px);
    background-size: 50px 50px, 40px 40px;
    border-radius: 15px 15px 0 0;
    z-index: 2;
}

/* ======= STYLES PREMIUM ET BUSINESS ======= */
.syndic-card.business {
    border: 4px solid #2563eb !important;
}

.syndic-card.business::before {
    background: #1e40af !important;
    background: -webkit-linear-gradient(135deg, #1e40af 0%, #2563eb 30%, #3b82f6 70%, #60a5fa 100%) !important;
    background: -moz-linear-gradient(135deg, #1e40af 0%, #2563eb 30%, #3b82f6 70%, #60a5fa 100%) !important;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 30%, #3b82f6 70%, #60a5fa 100%) !important;
    top: -2px;
    left: -2px;
    right: -2px;
    border-radius: 17px 17px 0 0;
}

.syndic-card.business:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.12), 0 0 20px rgba(37, 99, 235, 0.3) !important;
    border-color: #1d4ed8 !important;
}

.syndic-card.premium {
    border: 4px solid #f59e0b !important;
}

.syndic-card.premium::before {
    background: #d4860a !important;
    background: -webkit-linear-gradient(135deg, #d4860a 0%, #f59e0b 30%, #fbbf24 70%, #fcd34d 100%) !important;
    background: -moz-linear-gradient(135deg, #d4860a 0%, #f59e0b 30%, #fbbf24 70%, #fcd34d 100%) !important;
    background: linear-gradient(135deg, #d4860a 0%, #f59e0b 30%, #fbbf24 70%, #fcd34d 100%) !important;
    top: -2px;
    left: -2px;
    right: -2px;
    border-radius: 17px 17px 0 0;
}

.syndic-card.premium:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.12), 0 0 20px rgba(245, 158, 11, 0.4) !important;
    border-color: #d97706 !important;
}

/* ======= LOGO UNIVERSELLE ======= */
.syndic-logo-section,
.syndic-logo {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: block;
    z-index: 10;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 54px;
}

.syndic-logo-section img,
.syndic-logo img {
    max-height: 45px;
    max-width: 45px;
    vertical-align: middle;
    line-height: normal;
}

.syndic-logo-placeholder,
.logo-placeholder {
    width: 45px;
    height: 45px;
    border-radius: 4px;
    background: #000;
    color: white;
    line-height: 45px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto;
    margin-top: 6px;
}

/* ======= BADGE PREMIUM ======= */
.premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f59e0b;
    background: -webkit-linear-gradient(135deg, #f59e0b, #d97706);
    background: -moz-linear-gradient(135deg, #f59e0b, #d97706);
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white !important;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    z-index: 15;
}

.premium-badge i {
    font-size: 10px;
    margin-right: 4px;
}

/* ======= CONTENU UNIVERSELLE ======= */
.syndic-card-content {
    position: relative;
    z-index: 5;
    padding: 20px;
    background: white;
    margin-top: 80px;
    border-radius: 0 0 15px 15px;
}

.syndic-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.syndic-header h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #1f2937;
    font-weight: 600;
}

.syndic-rating {
    overflow: hidden;
}

.syndic-rating .stars {
    color: #fbbf24;
    float: left;
    margin-right: 10px;
}

.syndic-rating span {
    float: left;
    line-height: 20px;
}

.syndic-details {
    margin-bottom: 20px;
    clear: both;
}

.syndic-details div {
    margin-bottom: 8px;
    color: #666;
}

.syndic-details i {
    width: 20px;
    color: #000;
    margin-right: 10px;
    display: inline-block;
    text-align: center;
}

/* ======= BOUTON UNIVERSELLE ======= */
.view-profile {
    display: block;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.syndic-card:hover .view-profile {
    background: #333;
    color: #fff;
}

.syndic-card.business .view-profile {
    background: #2563eb !important;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.syndic-card.business:hover .view-profile {
    background: #1d4ed8 !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.syndic-card.premium .view-profile {
    background: #f59e0b !important;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

.syndic-card.premium:hover .view-profile {
    background: #d97706 !important;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* ======= STYLES POUR ARRONDISSEMENTS ======= */
.arrondissement-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 0;
    color: white;
}

.arrondissement-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    z-index: 1;
}

.arrondissement-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    height: 100%;
    overflow: hidden;
}

.arrondissement-hero .arrondissement-number {
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    background: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    border: 8px solid white !important;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    text-align: center;
    line-height: 184px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    float: left;
    margin-right: 40px;
}

.arrondissement-info {
    float: left;
    max-width: calc(100% - 240px);
}

.arrondissement-info h1 {
    font-size: 48px;
    margin: 0 0 15px 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.arrondissement-info .landmark {
    font-size: 20px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.arrondissement-info .landmark i {
    margin-right: 8px;
    color: #ffd700;
}

.arrondissement-info .syndic-count {
    font-size: 18px;
    background: rgba(0, 0, 0, 0.6);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    color: white;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.arrondissement-info .syndic-count strong {
    color: #ffd700;
    font-weight: 700;
}

/* Mini formulaire de recherche */
.mini-search-container {
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mini-search {
    overflow: hidden;
}

.mini-search-form {
    float: left;
}

.mini-search-form select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    min-width: 250px;
    margin-right: 10px;
}

.mini-search-form button {
    background: #000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.advanced-search-link {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    float: right;
    line-height: 40px;
    -webkit-transition: color 0.2s;
    -moz-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
}

.advanced-search-link:hover {
    color: #000;
}

.advanced-search-link i {
    margin-left: 5px;
}

/* Style pour les rÃ©sultats arrondissement */
.arrondissement-results h2 {
    font-size: 28px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.arrondissement-results h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: #000;
}

/* ======= PAGINATION MODERNE ======= */
.pagination {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 60px;
    overflow: hidden;
}

.page-numbers {
    display: inline-block;
}

.page-number, .current-page, .page-link {
    display: inline-block;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin: 0 2px;
    text-align: center;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.page-number {
    background: #f5f5f5;
    color: #333;
}

.page-number:hover {
    background: #e0e0e0;
}

.current-page {
    background: #000;
    color: white;
    font-weight: 600;
}

.page-link {
    background: #f5f5f5;
    color: #333;
    padding: 0 15px;
}

.page-link:hover {
    background: #e0e0e0;
}

.page-link i {
    font-size: 12px;
}

.page-ellipsis {
    display: inline-block;
    padding: 0 10px;
    color: #666;
    font-size: 14px;
}

/* CSS pour les arrondissements sur la page d'accueil */
.arrondissements-grid .arrondissement-number {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    width: 60px !important;
    height: 60px !important;
    background: #000 !important;
    border-radius: 50% !important;
    line-height: 60px !important;
    text-align: center !important;
    margin-right: 15px !important;
    border: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
    float: left !important;
}

.arrondissements-grid .arrondissement-card {
    background: #fff !important;
    border-radius: 15px !important;
    padding: 15px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
    overflow: hidden !important;
    -webkit-transition: transform 0.3s, box-shadow 0.3s !important;
    -moz-transition: transform 0.3s, box-shadow 0.3s !important;
    -o-transition: transform 0.3s, box-shadow 0.3s !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
}

.arrondissements-grid .arrondissement-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

/* ======= RESPONSIVE DESIGN UNIVERSEL ======= */
@media (max-width: 1200px) {
    .syndic-card {
        width: 48%;
        margin-right: 4%;
    }
    
    .syndic-card:nth-child(3n) {
        margin-right: 4%;
    }
    
    .syndic-card:nth-child(2n) {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 30px 0 15px 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .search-form-modern {
        margin: -5px 20px 0 20px;
        padding: 20px;
    }

    .search-grid .form-field {
        float: none;
        width: 100%;
        margin-right: 0;
    }

    .search-row .form-group {
        float: none;
        width: 100%;
        margin-right: 0;
    }

    .search-actions,
    .search-actions-modern {
        text-align: left;
    }
    
    .search-button,
    .btn-search {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .reset-button,
    .btn-reset {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .syndic-card {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .syndic-card::before,
    .syndic-card::after {
        height: 100px;
    }
    
    .syndic-card-content {
        margin-top: 60px;
    }
    
    .arrondissement-hero {
        height: auto;
    }
    
    .arrondissement-hero-content {
        padding: 50px 0;
    }
    
    .arrondissement-hero .arrondissement-number {
        font-size: 80px;
        width: 150px;
        height: 150px;
        line-height: 134px;
        margin-bottom: 20px;
        border: 6px solid white !important;
        background: rgba(0, 0, 0, 0.8) !important;
        color: white !important;
        float: none;
        margin-right: 0;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    
    .arrondissement-info {
        float: none;
        max-width: 100%;
        text-align: center;
    }
    
    .arrondissement-info h1 {
        font-size: 32px;
    }
    
    .mini-search {
        text-align: center;
    }
    
    .mini-search-form {
        float: none;
        display: block;
        margin-bottom: 15px;
    }
    
    .mini-search-form select {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .mini-search-form button {
        width: 100%;
    }
    
    .advanced-search-link {
        float: none;
        line-height: normal;
        display: block;
    }

    .results-header {
        text-align: left;
    }
    
    .results-title {
        float: none;
        margin-bottom: 10px;
    }
    
    .results-count {
        float: none;
        margin-top: 0;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .search-form-container,
    .search-form-modern {
        padding: 20px 15px;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .pagination {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .page-numbers {
        white-space: nowrap;
        min-width: 100%;
    }
}

/* ======= CLEARFIX UNIVERSEL ======= */
.search-grid:after,
.search-row:after,
.syndic-grid:after,
.results-header:after,
.mini-search:after,
.arrondissement-hero-content:after {
    content: "";
    display: table;
    clear: both;
}

/* ======= FALLBACK POUR TRÃˆS ANCIENS NAVIGATEURS ======= */
.search-grid:before,
.search-row:before,
.syndic-grid:before,
.results-header:before,
.mini-search:before,
.arrondissement-hero-content:before {
    content: "";
    display: table;
}

/* ======= OPTIMISATIONS FINALES ======= */
.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0,0,0,.3);
    border-radius: 50%;
    border-top-color: #000;
    -webkit-animation: spin 1s ease-in-out infinite;
    -moz-animation: spin 1s ease-in-out infinite;
    -o-animation: spin 1s ease-in-out infinite;
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
}

@-webkit-keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}

@-moz-keyframes spin {
    to { -moz-transform: rotate(360deg); }
}

@-o-keyframes spin {
    to { -o-transform: rotate(360deg); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Animation d'entrÃ©e pour les cartes - SIMPLIFIÃ‰ */
.syndic-card {
    opacity: 1;
}

/* Support pour Internet Explorer */
.syndic-card {
    zoom: 1; /* Trigger hasLayout pour IE */
}

/* Correction spÃ©cifique Safari */
.syndic-rating:after {
    content: "";
    display: table;
    clear: both;
}

/* Fix pour les anciennes versions de Chrome/Safari */
.search-grid,
.syndic-grid {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* AmÃ©lioration pour Firefox */
@-moz-document url-prefix() {
    .syndic-card {
        display: block;
        float: left;
    }
    
    .search-grid .form-field {
        display: block;
        float: left;
    }
}

/* SpÃ©cial fix pour Edge/IE */
@supports (-ms-ime-align: auto) {
    .syndic-grid {
        display: block;
    }
    
    .syndic-card {
        display: inline-block;
        vertical-align: top;
        float: none;
    }
}

/* Ultra-compatibilitÃ© - sans aucune propriÃ©tÃ© moderne */
.legacy-browser .syndic-grid {
    display: block !important;
}

.legacy-browser .syndic-card {
    display: inline-block !important;
    vertical-align: top !important;
    width: 31% !important;
    margin-right: 3% !important;
    float: none !important;
}

.legacy-browser .search-grid .form-field {
    display: inline-block !important;
    vertical-align: top !important;
    width: 23% !important;
    margin-right: 2.5% !important;
    float: none !important;
}</pre></body></html>