/* Featured Coaches Section */
.featured-coaches-people {
    padding: 80px 0;
    background: white;
}

.featured-coaches-people .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.featured-coaches-people .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.featured-coaches-people .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.coaches-people-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.coach-person-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.coach-person-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #71675B;
}

.coach-photo {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.coach-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.coach-person-card:hover .coach-photo img {
    transform: scale(1.05);
}

.coach-element-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coach-element-badge.fire {
    background: #ff6b35;
    color: white;
}

.coach-element-badge.earth {
    background: #8B4513;
    color: white;
}

.coach-element-badge.water {
    background: #4A90E2;
    color: white;
}

.coach-element-badge.air {
    background: #9B59B6;
    color: white;
}

.coach-info {
    padding: 2rem;
}

.coach-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.coach-specialty {
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.coach-bio {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.coach-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f5f3e8;
    border-radius: 8px;
}

.coach-stats .stat {
    text-align: center;
}

.coach-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.coach-stats .stat-label {
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-height: 44px;
    line-height: 1.2;
    border: 2px solid transparent;
}

.btn-outline {
    background: transparent;
    color: #333;
    border-color: #333;
    width: 100%;
    text-align: center;
}

.btn-outline:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
}

.btn-primary {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

/* CTA Section */
.coaches-cta {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.coaches-cta .btn {
    min-width: 200px;
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .coaches-people-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .featured-coaches-people .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .coaches-people-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-coaches-people {
        padding: 60px 0;
    }
    
    .coach-info {
        padding: 1.5rem;
    }
    
    .coaches-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .coaches-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .featured-coaches-people .section-header h2 {
        font-size: 1.8rem;
    }
    
    .coach-photo {
        height: 200px;
    }
    
    .coach-info {
        padding: 1.2rem;
    }
    
    .coach-stats {
        padding: 0.8rem;
    }
}