
/* Hero Section */
.prestataires-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.prestataires-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-title i {
    font-size: 3rem;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Stats Cards Glassmorphism */
.hero-stats-enhanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    color: white;
}

.stat-icon.individual {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.stat-icon.company {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.stat-icon.verified {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.stat-content {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0.25);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    display: inline-block;
}

.stat-trend {
    display: block;
    font-size: 0.75rem;
    color: #ffffff;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    display: inline-block;
    margin-top: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* CTA Buttons */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary-hero {
    position: relative;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    color: white;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary-hero:hover .btn-shine {
    left: 100%;
}

.btn-secondary-hero {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    text-decoration: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: white;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.trust-item i {
    color: #43e97b;
    font-size: 1.2rem;
}

/* ========== FLOATING CARDS PREMIUM ========== */
.hero-illustration {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 2rem 1.5rem;
    text-align: center;
    animation: float 6s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    min-width: 180px;
}

/* Effet de lueur au hover */
.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3), transparent);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s;
    border-radius: 50%;
    z-index: 0;
}

.floating-card:hover .card-glow {
    transform: translate(-50%, -50%) scale(1);
}

/* Card 1 - Professionnels (Rose/Violet) */
.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-1 .card-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.card-1:hover {
    border-color: rgba(240, 147, 251, 0.8);
    box-shadow: 
        0 25px 70px rgba(240, 147, 251, 0.4),
        inset 0 0 30px rgba(240, 147, 251, 0.2);
}

/* Card 2 - Entreprises (Bleu cyan) */
.card-2 {
    top: 45%;
    right: 5%;
    animation-delay: 2s;
}

.card-2 .card-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.card-2:hover {
    border-color: rgba(79, 172, 254, 0.8);
    box-shadow: 
        0 25px 70px rgba(79, 172, 254, 0.4),
        inset 0 0 30px rgba(79, 172, 254, 0.2);
}

/* Card 3 - Experts (Jaune/Orange) */
.card-3 {
    bottom: 5%;
    left: 25%;
    animation-delay: 4s;
}

.card-3 .card-icon {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
}

.card-3:hover {
    border-color: rgba(253, 203, 110, 0.8);
    box-shadow: 
        0 25px 70px rgba(253, 203, 110, 0.4),
        inset 0 0 30px rgba(253, 203, 110, 0.2);
}

/* Icône dans un cercle */
.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s;
    color: white;
    position: relative;
    z-index: 1;
}

.floating-card:hover .card-icon {
    transform: scale(1.15) rotate(10deg);
}

/* Contenu de la card */
.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.card-label {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.card-count {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

/* Animation de flottement en forme de 8 */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(15px, -20px) rotate(2deg);
    }
    50% {
        transform: translate(0, -30px) rotate(0deg);
    }
    75% {
        transform: translate(-15px, -20px) rotate(-2deg);
    }
}

/* Hover global */
.floating-card:hover {
    transform: scale(1.1) translateY(-10px) !important;
    z-index: 10;
    animation-play-state: paused;
}

/* Particules flottantes autour */
.card-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particleFloat 3s infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 70%;
    animation-delay: 2s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    50% {
        transform: translateY(-40px) scale(1.5);
        opacity: 1;
    }
}

/* Effet Tilt 3D */
.floating-card[data-tilt] {
    transform-style: preserve-3d;
}

/* Modern Filters Section */
.filters-section {
    background: white;
    padding: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #e1e5e9;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
}

.filters-section.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.filters-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Mobile Filter Toggle */
.filter-toggle-mobile {
    display: none;
    margin-bottom: 1rem;
}

.filter-toggle-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 15px;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.filters-form.collapsed .toggle-icon {
    transform: rotate(180deg);
}

/* Filters Grid */
.filters-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-row {
    width: 100%;
}

.search-group {
    width: 100%;
}

.filters-row {
    width: 100%;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    align-items: end;
}

.filter-group {
    position: relative;
}

.filter-actions {
    display: flex;
    gap: 0.75rem;
    align-items: end;
}

/* Filter Labels */
.filter-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.filter-label i {
    color: #667eea;
    font-size: 0.85rem;
}

/* Search Input */
.filter-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1rem;
    color: #9ca3af;
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.search-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.clear-search {
    position: absolute;
    right: 0.75rem;
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.clear-search:hover {
    background: #f3f4f6;
    color: #6b7280;
}

/* Select Wrappers */
.filter-select-wrapper {
    position: relative;
}

.filter-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
    appearance: none;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
    transition: transform 0.2s ease;
}

.filter-select:focus + .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

/* Filter Buttons */
.filter-btn {
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.filter-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.filter-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.filter-btn.secondary {
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.filter-btn.secondary:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

/* Results Section */
.results-section {
    padding: 4rem 0;
    background: #f8fafc;
    margin-top: 2rem;
}

.results-header {
    margin-bottom: 2rem;
}

.results-info h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.active-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.filter-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.remove-filter {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1;
}

.remove-filter:hover {
    color: #ff6b6b;
}

/* Prestataires Grid */
.prestataires-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.prestataire-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.prestataire-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.prestataire-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* NOUVEAUX BADGES SYSTÈME */
.badge-boost-corner {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #F44336 0%, #E91E63 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-subscription-corner {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.badge-subscription-corner.premium {
    background: linear-gradient(135deg, #9C27B0 0%, #673AB7 100%);
    color: white;
}

.badge-subscription-corner.pro {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    color: white;
}

.badge-external-overlay,
.badge-claim-overlay {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 152, 0, 0.95);
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.badge-claim-overlay {
    background: rgba(33, 150, 243, 0.95);
}

/* 📝 CONTENU CARTE (avec padding) */
.card-content {
    padding: 0 2rem 2rem 2rem;
}

.badges-top-section {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
    justify-content: center;
}

.badge-priority {
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s ease;
}

.badge-priority:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.badges-verification {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: wrap;
}

.verification-icon {
    font-size: 1.2rem;
    cursor: help;
    transition: all 0.2s ease;
}

.verification-icon:hover {
    transform: scale(1.2);
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-performance {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 1rem 0.75rem;
    margin-top: 1rem;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-item {
    transition: transform 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    white-space: nowrap;
}

.stat-label {
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.card-header-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.verification-badge {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.approval-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.approved {
    background: #10b981;
    color: white;
}

.pending {
    background: #fbbf24;
    color: #92400e;
}

.type-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.type-individual {
    background: #fbbf24;
    color: #92400e;
}

.type-company {
    background: #3b82f6;
    color: white;
}

.profile-image-container {
    text-align: center;
    margin-bottom: 1.5rem;
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f1f5f9;
}

.profile-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2rem;
}

.prestataire-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.prestataire-name a {
    transition: color 0.3s ease;
}

.prestataire-name a:hover {
    color: #667eea !important;
}

.service-badge {
    background: #f1f5f9;
    color: #64748b;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.service-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.prestataire-meta {
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.75rem;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.meta-item:hover {
    color: #1e293b;
    transform: translateX(4px);
}

.meta-item i {
    width: 20px;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

/* 🎨 ICÔNES COLORÉES THÉMATIQUES */
.meta-item i.fa-map-marker-alt {
    color: #2196F3;
}

.meta-item i.fa-clock {
    color: #FF9800;
}

.meta-item i.fa-phone {
    color: #4CAF50;
}

.meta-item i.fa-globe {
    color: #00BCD4;
}

.meta-item i.fa-calendar-alt {
    color: #546E7A;
}

.meta-item:hover i {
    transform: scale(1.15);
}

.card-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.btn-outline-primary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}

.no-results-icon {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.no-results h3 {
    color: #64748b;
    margin-bottom: 1rem;
}

.no-results p {
    color: #94a3b8;
    margin-bottom: 2rem;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.page-link {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: #667eea;
    border: 2px solid #e1e5e9;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-item.active .page-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .filters-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .filter-actions {
        grid-column: 1 / -1;
        justify-content: center;
        margin-top: 0.5rem;
    }
}

@media (max-width: 992px) {
    .filters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-title i {
        font-size: 2rem;
    }
    
    .hero-stats-enhanced {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .stat-card {
        padding: 1.25rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        justify-content: center;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
    
    .hero-illustration {
        height: 400px;
        margin-top: 2rem;
    }
    
    .floating-card {
        min-width: 140px;
        padding: 1.5rem 1rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .card-label {
        font-size: 0.85rem;
    }
    
    .card-count {
        font-size: 1.25rem;
    }
    
    .prestataires-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .filters-card {
        padding: 1.5rem;
    }
    
    /* Floating button responsive */
    .floating-filter-btn {
        bottom: 20px;
        right: 20px;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .floating-filter-btn span {
        display: none;
    }
    
    .floating-filter-btn i {
        font-size: 1.2rem;
    }
    
    /* Mobile Filter Toggle */
    .filter-toggle-mobile {
        display: block;
    }
    
    .filters-form {
        display: none;
    }
    
    .filters-form.expanded {
        display: flex;
    }
    
    .filters-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .filter-actions {
        flex-direction: column;
        margin-top: 1rem;
    }
    
    .filter-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* 📱 CARTES EXTRA SMALL */
    .prestataire-card {
        border-radius: 16px;
    }
    
    .cover-image-container {
        height: 140px;
    }
    
    .profile-image,
    .profile-placeholder {
        width: 90px;
        height: 90px;
        margin-top: -45px;
        border-width: 4px;
        font-size: 1.75rem;
    }
    
    .card-content {
        padding: 0 1rem 1rem 1rem;
    }
    
    .prestataire-name {
        font-size: 1.35rem;
    }
    
    .badge-priority {
        font-size: 0.6rem;
        padding: 0.3rem 0.6rem;
    }
    
    .card-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .card-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .filters-card {
        padding: 1rem;
        margin: 0 -1rem;
        border-radius: 0;
    }
    
    /* Floating button for small screens */
    .floating-filter-btn {
        bottom: 15px;
        right: 15px;
        padding: 0.75rem;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
    }
    
    .floating-filter-btn i {
        font-size: 1.1rem;
    }
}

/* Floating Filter Button */
.floating-filter-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
}

.floating-filter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.floating-filter-btn:active {
    transform: translateY(-1px);
}

.floating-filter-btn i {
    font-size: 1.1rem;
}

/* Results Section */
.results-section {
    padding: 4rem 0;
    background: #f8fafc;
    margin-top: 2rem;
}

.approval-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.approved {
    background: #10b981;
    color: white;
}

.pending {
    background: #fbbf24;
    color: #92400e;
}

.subscription-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.subscription-free {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.subscription-paid {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.website-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.website-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Contact Modal Styles */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
    padding: 1.5rem 2rem;
}

.modal-title {
    font-weight: 600;
    font-size: 1.25rem;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 1.5rem 2rem;
    border-radius: 0 0 20px 20px;
}

.form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control[readonly] {
    background-color: #f8f9fa;
    color: #6c757d;
}

.alert-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border: 1px solid #bbdefb;
    color: #1565c0;
    border-radius: 12px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    color: #374151;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

/* Alert Styles */
.alert {
    border-radius: 12px;
    border: none;
    font-weight: 500;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Loading spinner */
.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 1rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-footer {
        padding: 1rem 1.5rem;
    }
}

/* ========== SELECT2 CUSTOMIZATION ========== */
.select2-container--default .select2-selection--multiple {
    background-color: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.5rem;
    min-height: 46px;
    transition: all 0.3s ease;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.85rem;
    margin: 0.25rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: white;
    margin-right: 0.5rem;
    font-weight: bold;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #ff6b6b;
}

.select2-dropdown {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 400px;
}

.select2-results {
    max-height: 300px;
    overflow-y: auto;
}

.select2-results__options {
    max-height: 280px;
    overflow-y: auto;
}

.select2-search--dropdown {
    padding: 0.5rem;
    background-color: #f9fafb;
    border-bottom: 2px solid #e5e7eb;
}

.select2-search--dropdown .select2-search__field {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.5rem;
    width: 100%;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.select2-results__option {
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.select2-results__option--highlighted {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
}

.select2-results__option:hover {
    background-color: #f3f4f6;
}

.select2-container {
    width: 100% !important;
    z-index: 9999;
}

/* Custom scrollbar pour Select2 */
.select2-results__options::-webkit-scrollbar {
    width: 8px;
}

.select2-results__options::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.select2-results__options::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.select2-results__options::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Force scroll visible sur tous les dropdowns */
.select2-dropdown-scrollable .select2-results__options {
    max-height: 200px !important;
    overflow-y: auto !important;
}

/* Style pour les dropdowns de sélection simple */
.select2-container--default .select2-selection--single {
    background-color: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.5rem;
    min-height: 46px;
    transition: all 0.3s ease;
}

.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #374151;
    line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #667eea transparent transparent transparent;
    border-width: 6px 5px 0 5px;
}

/* Loading spinner pour AJAX */
.filters-loading {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    text-align: center;
}

.filters-loading.active {
    display: block;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e5e7eb;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
