/* JERRY.MA - ANNUAIRE PROS STYLES */
/* Extracted from pros.html inline style */

        /* STYLES SPÉCIFIQUES À L'ANNUAIRE */

        .hero-annuaire {
            background: transparent;
            color: var(--white);
            text-align: center;
            padding: var(--space-xl) var(--space-md);
            margin-bottom: var(--space-lg);
            position: relative;
            overflow: hidden;
        }

        .hero-annuaire h1 {
            font-size: 2.6rem;
            font-weight: 900;
            line-height: 0.95;
            letter-spacing: -2.5px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .hero-annuaire h1 span {
            color: var(--burnt-orange);
        }

        .hero-annuaire p {
            font-size: 1.15rem;
            font-weight: 500;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
            line-height: 1.6;
            letter-spacing: -0.5px;
        }

        .hero-annuaire .certif-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            backdrop-filter: blur(5px);
        }

        .filters-container {
            max-width: 1100px;
            margin: 0 auto var(--space-lg);
            padding: 0 var(--space-md);
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .filter-select {
            padding: 8px 14px;
            border-radius: 8px;
            border: 1px solid #e1e4e8;
            font-family: inherit;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--slate-blue);
            background-color: white;
            cursor: pointer;
            outline: none;
            transition: all 0.2s;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }

        .filter-select:hover {
            border-color: #cbd5e1;
        }

        .filter-select:focus {
            border-color: var(--burnt-orange);
        }

        .pros-grid {
            max-width: 1100px;
            margin: 0 auto var(--space-xl);
            padding: 0 var(--space-md);
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: var(--space-md);
        }

        .pro-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            padding: var(--space-md);
            border: 1px solid #f0f2f5;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .pro-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }

        .pro-card-header {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }

        .pro-avatar {
            width: 60px;
            height: 60px;
            background-color: var(--sand-beige);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .pro-info h3 {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--slate-blue);
            margin-bottom: 5px;
            line-height: 1.2;
        }

        .pro-info .category {
            color: var(--burnt-orange);
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
        }

        .pro-location {
            color: var(--text-grey);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 5px;
            margin-top: 5px;
            font-weight: 600;
        }

        .pro-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }

        .badge {
            background-color: #f8f9fa;
            color: #495057;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 700;
            border: 1px solid #e9ecef;
        }

        .pro-bio {
            font-size: 0.95rem;
            color: var(--text-grey);
            line-height: 1.5;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .pro-tip {
            background-color: var(--sand-beige);
            padding: 15px;
            border-radius: 12px;
            font-size: 0.9rem;
            font-style: italic;
            color: var(--slate-blue);
            margin-bottom: 20px;
            border-left: 4px solid var(--burnt-orange);
        }

        .pro-actions {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .btn-contact {
            background-color: var(--slate-blue);
            color: white;
            text-align: center;
            padding: 12px;
            border-radius: 12px;
            font-weight: 700;
            text-decoration: none;
            transition: background 0.3s;
        }

        .btn-contact:hover {
            background-color: #1a252f;
        }

        .badge-certified {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            cursor: help;
            border: 2px solid white;
            background: white;
            object-fit: cover;
            z-index: 2;
        }

        /* BOUTON DE PARTAGE DE FICHE */
        .btn-share-pro {
            background-color: var(--sand-beige);
            color: var(--slate-blue);
            text-align: center;
            padding: 10px;
            border-radius: 12px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid rgba(0, 0, 0, 0.05);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.9rem;
            width: 100%;
            font-family: inherit;
        }

        .btn-share-pro:hover {
            background-color: #e0d8c3;
        }

        /* CLAIM YOUR BUSINESS BUTTON (B2B ACQUISITION) */
        .btn-claim {
            background-color: transparent;
            color: var(--text-grey);
            border: 1px dashed #ced4da;
            padding: 10px;
            border-radius: 12px;
            text-align: center;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .btn-claim:hover {
            background-color: #f8f9fa;
            color: var(--slate-blue);
            border-color: var(--slate-blue);
        }

        .btn-claim {
            animation: pulse-claim 2s infinite;
        }

        @keyframes pulse-claim {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(123, 128, 154, 0.2); }
            50% { transform: scale(1.02); box-shadow: 0 0 15px 5px rgba(123, 128, 154, 0.1); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(123, 128, 154, 0.2); }
        }

        .empty-state {
            grid-column: 1 / -1;
            text-align: center;
            padding: 40px;
            background: white;
            border-radius: 20px;
            color: var(--text-grey);
        }

        /* --- HEADER HOMOGÉNÉISÉ (Charte Accueil) --- */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--space-header) var(--space-lg);
            background: var(--sand-beige);
            position: relative;
            z-index: 100;
        }

        .logo-main {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--slate-blue);
            letter-spacing: -2px;
            text-transform: uppercase;
            display: flex;
            align-items: baseline;
        }

        .logo-main a {
            text-decoration: none;
            color: inherit;
        }

        .logo-main span.brand-end {
            color: var(--burnt-orange);
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .nav-link {
            text-decoration: none;
            color: var(--slate-blue);
            font-weight: 800;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--burnt-orange);
        }

        #nav-auth-btn {
            background: white;
            border: 2px solid var(--slate-blue);
            color: var(--slate-blue);
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 800;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            transition: all 0.3s;
        }

        #nav-auth-btn:hover {
            background: var(--slate-blue);
            color: white;
        }

        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                padding: 20px;
                gap: 20px;
            }

            .nav {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
        }

        /* MODAL B2B CLAIM */
        .claim-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(14, 23, 38, 0.8);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            backdrop-filter: blur(5px);
        }

        .claim-modal {
            background: white;
            width: 90%;
            max-width: 500px;
            border-radius: 20px;
            padding: 30px;
            position: relative;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            text-align: center;
        }

        .claim-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #a0aec0;
        }

        .claim-modal-title {
            font-size: 1.5rem;
            color: var(--slate-blue);
            font-weight: 800;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .claim-modal-text {
            font-size: 0.95rem;
            color: var(--text-grey);
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .btn-google-claim {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 12px;
            width: 100%;
            font-size: 1rem;
            font-weight: 700;
            color: #4a5568;
            cursor: pointer;
            transition: background 0.2s;
        }

        .btn-google-claim:hover {
            background: #f8f9fa;
        }

        /* BOUTON AJOUTER MON CABINET */
        .btn-add-pro {
            background-color: var(--burnt-orange);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 800;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 10px rgba(211, 84, 0, 0.2);
            height: fit-content;
            align-self: center;
        }

        .btn-add-pro:hover {
            background-color: #e65c00;
            transform: translateY(-2px);
        }