﻿:root {
    --blue: #264EFF;
    --ink: #0E1320;
    --muted: #6B7280;
    --line: #E5E7F0;
    --bg-light: #FAFBFF;
    --font: "Plus Jakarta Sans", sans-serif;
    --wrap: 1240px;
    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 14px;
}
/* ============================================================
       FILTER SHELL
    ============================================================ */
.filter-shell {
    padding: 14px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
}
.filter-bar {
    max-width: var(--wrap);
    margin: 0 auto;
}
.filter-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.field {
    position: relative;
    flex: 1;
    min-width: 140px;
    cursor: pointer;
}
.field-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 15px;
    pointer-events: none;
    z-index: 1;
}
[dir="rtl"] .field-icon {
    left: auto;
    right: 10px;
}
.field input {
    width: 100%;
    padding: 9px 30px 9px 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg-light);
    cursor: pointer;
    outline: none;
    transition: all .18s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
}
    .field input:focus,
    .field.open input {
        border-color: var(--blue);
        background: #fff;
        box-shadow: 0 0 0 3px rgba(38,78,255,.08);
    }
    .field input::placeholder {
        color: var(--muted);
        font-weight: 500;
    }
[dir="rtl"] .field input {
    padding: 9px 32px 9px 30px;
}
.caret {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 11px;
    pointer-events: none;
    transition: transform .18s ease;
}
[dir="rtl"] .caret {
    right: auto;
    left: 10px;
}
.field.open .caret {
    transform: translateY(-50%) rotate(180deg);
}
.filter-inner .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 9px 14px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font);
    border: none;
    cursor: pointer;
    transition: all .18s ease;
    white-space: nowrap;
}
    .filter-inner .btn-icon i {
        font-size: 15px;
    }
.filter-inner .btn-clear {
    background: var(--bg-light);
    color: var(--muted);
    border: 1px solid var(--line);
}
    .filter-inner .btn-clear:hover {
        background: #f0f0f5;
        color: var(--ink);
    }
.filter-inner .btn-apply {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 3px 10px rgba(38,78,255,.25);
}
    .filter-inner .btn-apply:hover {
        filter: brightness(1.08);
        transform: translateY(-1px);
    }
.filter-status {
    margin-top: 6px;
    min-height: 18px;
}
    .filter-status span {
        font-size: 12px;
        font-weight: 600;
        color: var(--muted);
    }
.s-service {
    color: var(--blue);
    font-weight: 700;
}
.s-country {
    color: var(--ink);
    font-weight: 700;
}
.s-industry {
    color: var(--muted);
}
/* ============================================================
       DROPDOWN PORTAL
    ============================================================ */
.portal-list {
    display: none;
    position: absolute;
    z-index: 9999;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(15,23,42,.12);
    overflow: hidden;
    min-width: 220px;
    animation: portalFadeIn .13s ease;
}
@@keyframes portalFadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.portal-search-wrap {
    padding: 8px 8px 5px;
    border-bottom: 1px solid var(--line);
    background: var(--bg-light);
    position: sticky;
    top: 0;
    z-index: 1;
}
.portal-search-input {
    width: 100%;
    padding: 8px 10px 8px 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: 12.5px;
    font-weight: 600;
    font-family: var(--font);
    color: var(--ink);
    outline: none;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%236B7280' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z'/%3E%3C/svg%3E") no-repeat 9px center;
    box-sizing: border-box;
    transition: all .13s ease;
}
    .portal-search-input:focus {
        border-color: var(--blue);
        box-shadow: 0 0 0 3px rgba(38,78,255,.08);
    }
.portal-scroll {
    max-height: 240px;
    overflow-y: auto;
    padding: 5px;
    overscroll-behavior: contain;
}
    .portal-scroll::-webkit-scrollbar {
        width: 3px;
    }
    .portal-scroll::-webkit-scrollbar-thumb {
        background: var(--line);
        border-radius: 3px;
    }
.portal-item {
    padding: 9px 10px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    transition: all .13s ease;
    font-family: var(--font);
}
    .portal-item:hover {
        background: var(--bg-light);
        color: var(--blue);
    }
    .portal-item.active {
        background: rgba(38,78,255,.07);
        color: var(--blue);
    }
.portal-empty {
    display: none;
    padding: 16px 10px;
    text-align: center;
    font-size: 12.5px;
    color: var(--muted);
    font-family: var(--font);
}
/* ============================================================
       AVATAR / INITIALS PLACEHOLDER
    ============================================================ */
.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
    font-family: var(--font);
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    user-select: none;
}
    .avatar-placeholder.style-blue {
        background: rgba(38,78,255,.1);
        color: var(--blue);
        font-size: 22px;
    }
    .avatar-placeholder.style-teal {
        background: #e1f5ee;
        color: #0f6e56;
        font-size: 22px;
    }
    .avatar-placeholder.style-coral {
        background: #faece7;
        color: #993c1d;
        font-size: 22px;
    }
    .avatar-placeholder.style-purple {
        background: #eeedfe;
        color: #3c3489;
        font-size: 22px;
    }
    .avatar-placeholder.style-amber {
        background: #faeeda;
        color: #854f0b;
        font-size: 22px;
    }
.client-logo-placeholder-av {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0 auto;
    background: rgba(38,78,255,.1);
    color: var(--blue);
}
/* ============================================================
       RESPONSIVE
    ============================================================ */
@@media (max-width: 640px) {
    .filter-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .field {
        min-width: 100%;
    }
    .filter-inner .btn-icon {
        width: 100%;
        justify-content: center;
    }
}
.provider-slider-wrap {
    font-family: inherit;
    padding: 1.5rem 0;
}
.provider-slider-label {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
}
.provider-slider-track {
    display: flex;
    gap: 16px;
    overflow: hidden;
    position: relative;
}
.provider-card {
    flex: 0 0 220px;
    background: #fff;
    border: 0.5px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
    cursor: pointer;
    text-decoration: none;
}
    .provider-card:hover {
        transform: translateY(-3px);
        border-color: #d1d5db;
    }
.provider-card-media {
    height: 140px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
    .provider-card-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
.provider-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -1px;
}
.av-blue {
    background: #E6F1FB;
    color: #185FA5;
}
.av-teal {
    background: #E1F5EE;
    color: #0F6E56;
}
.av-coral {
    background: #FAECE7;
    color: #993C1D;
}
.av-purple {
    background: #EEEDFE;
    color: #534AB7;
}
.av-amber {
    background: #FAEEDA;
    color: #854F0B;
}
.provider-card-body {
    padding: 14px 16px 16px;
}
.provider-card-name {
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.provider-card-city {
    font-size: 12px;
    color: #6b7280;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.provider-card-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}
.p-label {
    font-size: 11px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 3px;
}
.lbl-verified {
    background: #E1F5EE;
    color: #0F6E56;
}
.lbl-sponsored {
    background: #FAEEDA;
    color: #854F0B;
}
.lbl-awarded {
    background: #EEEDFE;
    color: #534AB7;
}
.provider-card-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 12px;
}
    .provider-card-rating strong {
        color: #111827;
        font-weight: 500;
        font-size: 13px;
    }
.provider-card-actions {
    display: flex;
    gap: 8px;
}
.btn-primary-sm {
    flex: 1;
    font-size: 12px;
    font-weight: 500;
    padding: 7px 0;
    background: #185FA5;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: background 0.15s;
}
    .btn-primary-sm:hover {
        background: #0C447C;
    }
.btn-outline-sm {
    flex: 1;
    font-size: 12px;
    font-weight: 500;
    padding: 7px 0;
    background: transparent;
    color: #374151;
    border: 0.5px solid #d1d5db;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: background 0.15s;
}
    .btn-outline-sm:hover {
        background: #f9fafb;
    }
.slider-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.25rem;
}
.slider-dots {
    display: flex;
    gap: 6px;
}
.slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d1d5db;
    transition: background 0.2s, width 0.2s;
}
    .slider-dot.active {
        background: #185FA5;
        width: 18px;
        border-radius: 4px;
    }
.slider-arrows {
    display: flex;
    gap: 8px;
}
.slider-arr {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 0.5px solid #d1d5db;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #6b7280;
    transition: background 0.15s;
}
    .slider-arr:hover {
        background: #f3f4f6;
        color: #111827;
    }
    .slider-arr:disabled {
        opacity: 0.3;
        cursor: default;
    }
