/* Premium Movers Listing Styles */
.movers-hero {
    background: var(--primary);
    padding: 60px 0 120px;
    color: white;
}

.filter-section {
    margin-top: -60px;
    margin-bottom: 50px;
}

.filter-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.mover-item-card {
    background: white;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    padding: 0;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.mover-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.mover-logo-box {
    width: 140px;
    height: 140px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex-shrink: 0;
}

.mover-info {
    padding: 30px;
    flex-grow: 1;
}

.rating-badge {
    background: #fef3c7;
    color: #92400e;
    padding: 4px 12px;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.9rem;
}

.verify-badge {
    color: #10b981;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sidebar-widget {
    background: white;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.stat-pill {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 5px;
    margin-bottom: 8px;
}

@media (max-width: 767px) {
    .mover-item-card { text-align: center; }
    .d-flex.flex-row { flex-direction: column !important; }
    .mover-logo-box { width: 100%; height: 160px; }
}
