/* ==========================================
   DAR E SAHULAT - TEAM PAGE STYLES (team.php)
   ========================================== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.team-img-wrapper {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    transition: var(--transition);
}

.team-card:hover .team-img-wrapper {
    background-color: var(--primary);
    border-color: var(--primary);
}

.team-img-wrapper i {
    font-size: 2.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.team-card:hover .team-img-wrapper i {
    color: var(--white);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-family: var(--font-title);
    font-size: 1.25rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 6px;
}

.team-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.team-socials {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.team-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--navy-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.team-social-link:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.feature-icon-box i {
    color: var(--primary-dark);
    font-size: 1.5rem;
}

.feature-card h4 {
    font-size: 1.15rem;
    color: var(--navy);
    margin: 0;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .team-grid, .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid, .features-grid {
        grid-template-columns: 1fr;
    }
}
