/* Team Contact Cards Styles */
.team-section {
    background: linear-gradient(to bottom, rgba(26, 23, 46, 0.9), rgba(16, 14, 28, 0.95));
    padding: 60px 0;
}

.team-title {
    text-align: center;
    margin-bottom: 50px;
}

.team-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.team-title h2 span {
    color: #8a5cf6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.team-card {
    background: rgba(28, 31, 44, 0.8);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(86, 70, 150, 0.2);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(103, 58, 183, 0.3);
}

.team-card-inner {
    padding: 30px 20px;
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 15px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #9ca3af;
    border: 3px solid rgba(139, 92, 246, 0.5);
}

.team-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #fff;
}

.team-role {
    color: #8b5cf6;
    font-size: 1rem;
    margin-bottom: 20px;
}

.team-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d1d5db;
    transition: color 0.2s ease;
}

.contact-item:hover {
    color: #8b5cf6;
}

.contact-item svg {
    width: 18px;
    height: 18px;
}

.whatsapp-link {
    color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 5px;
    transition: opacity 0.2s ease;
}

.whatsapp-link:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .team-card-inner {
        padding: 20px 15px;
    }
    
    .team-avatar {
        width: 100px;
        height: 100px;
        font-size: 30px;
    }
    
    .team-name {
        font-size: 1.3rem;
    }
}
