/* Featured Gyms Section */
.featured-gyms {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

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

.gyms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.gym-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;
}

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

.gym-photo {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

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

.gym-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #71675B 0%, #8B7F73 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gym-info {
    padding: 2rem;
}

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

.gym-location {
    color: #71675B;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.gym-location::before {
    content: "📍";
    margin-right: 6px;
}

.gym-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gym-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: #f5f3e8;
    color: #71675B;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e8e2d0;
}

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

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

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

.gym-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;
    text-align: center;
}

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

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

.btn-primary {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
    min-width: 200px;
}

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


/* CTA Section */
.gyms-cta {
    text-align: center;
    text-color: white !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .gyms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .featured-gyms {
        padding: 60px 0;
    }
    
    .featured-gyms .section-header h2 {
        font-size: 2rem;
    }
    
    .gym-info {
        padding: 1.5rem;
    }
    
    .gym-photo {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .featured-gyms .section-header h2 {
        font-size: 1.8rem;
    }
    
    .gym-info {
        padding: 1.2rem;
    }
    
    .gym-stats {
        padding: 0.8rem;
    }
    
    .btn-primary {
        width: 100%;
        max-width: 300px;
    }
}

/* Focus states for accessibility */
.btn:focus {
    outline: 3px solid rgba(113, 103, 91, 0.3);
    outline-offset: 2px;
}