/* Recruiters Page Styles */

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #9a0d0f 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 0;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-header .lead {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 0;
}

/* Agency Card */
.agency-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.agency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.agency-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 12px;
    margin: 0 auto 1.5rem;
    display: block;
    background: white;
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.agency-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.75rem;
    text-align: center;
}

.agency-description {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-grow: 1;
    text-align: center;
    line-height: 1.6;
}

.agency-info {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
    margin-top: auto;
}

.agency-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.agency-info-item:last-child {
    margin-bottom: 0;
}

.agency-info-item i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

.agency-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.agency-stat {
    text-align: center;
}

.agency-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.agency-stat-label {
    font-size: 0.85rem;
    color: #6c757d;
    display: block;
}

/* Filters */
.input-group-text {
    background: white;
    border-right: none;
}

.input-group .form-control {
    border-left: none;
}

.input-group .form-control:focus {
    border-color: #dee2e6;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 991px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .agency-card {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .agency-logo {
        width: 80px;
        height: 80px;
    }
}
