/* css/providers.css */

/* Search Bar */
.search-container {
    position: relative; max-width: 600px; margin: 0 auto;
}
.search-input {
    width: 100%; padding: 16px 16px 16px 48px;
    border: 1px solid #cbd5e1; border-radius: 16px;
    font-size: 16px; outline: none; transition: all 0.2s;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.search-input:focus {
    border-color: #2563EB; box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
.search-icon {
    position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
    color: #94a3b8; width: 20px; height: 20px;
}

/* The Grid */
.provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

/* Provider Cards */
.provider-card {
    background: white; border: 1px solid #e2e8f0;
    border-radius: 16px; padding: 24px;
    transition: all 0.2s ease;
}
.provider-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.05);
    border-color: #bfdbfe;
}
.provider-header { display: flex; justify-content: space-between; align-items: start; margin-bottom: 16px; }
.provider-icon {
    width: 48px; height: 48px; background: #f1f5f9;
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: #64748b; font-size: 20px;
}
.provider-card:hover .provider-icon { background: #eff6ff; color: #2563EB; }

.status-badge {
    padding: 4px 12px; border-radius: 99px; font-size: 12px; font-weight: 700;
    display: flex; align-items: center; gap: 4px; border: 1px solid transparent;
}
.status-verified { background: #ecfdf5; color: #16a34a; border-color: #bbf7d0; }
.status-beta { background: #fefce8; color: #ca8a04; border-color: #fef08a; }

/* Request CTA */
.request-cta {
    margin-top: 60px; background: #1e3a8a; border-radius: 24px;
    padding: 60px 20px; text-align: center; color: white;
    position: relative; overflow: hidden;
}

/* Modal */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px); z-index: 99; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-panel {
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.95);
    width: 100%; max-width: 500px; background: white; border-radius: 24px;
    padding: 30px; z-index: 100; opacity: 0; pointer-events: none; transition: all 0.3s;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.modal-open .modal-overlay, .modal-open .modal-panel { opacity: 1; pointer-events: auto; }
.modal-open .modal-panel { transform: translate(-50%, -50%) scale(1); }