/* --- استایل صفحه نمایندگی‌ها --- */

/* باکس فیلتر و جستجو */
.filter-box {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.filter-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-right: 15px;
}

.filter-title::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--theme-color);
    border-radius: 2px;
}

/* کارت نمایندگی */
.agency-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.agency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--theme-color);
}

.agency-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: #eee;
    transition: 0.3s;
}

.agency-card:hover::before {
    background: var(--theme-color);
}

.agency-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.agency-title i {
    color: var(--theme-color);
    margin-left: 10px;
    font-size: 1.4rem;
}

.agency-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.agency-info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #666;
}

.agency-info-list li i {
    color: #999;
    margin-left: 10px;
    margin-top: 3px;
    font-size: 1.1rem;
}

.agency-info-list li strong {
    color: #333;
    margin-left: 5px;
}

/* دکمه‌های کارت */
.agency-actions {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #eee;
    display: flex;
    gap: 10px;
}

.btn-agency {
    flex: 1;
    font-size: 0.85rem;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}