/* Reviews Page - Testimonial Grid Style */

.reviews-hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, 
        rgba(234, 179, 8, 0.08) 0%, 
        rgba(249, 115, 22, 0.05) 50%, 
        transparent 100%
    );
    text-align: center;
}

.rating-summary {
    margin-bottom: 2rem;
}

.big-rating {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #eab308, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stars-large {
    font-size: 2rem;
    color: #eab308;
    margin: 0.5rem 0;
    letter-spacing: 0.25rem;
}

.rating-text {
    font-size: 1rem;
    color: var(--text-secondary);
}

.reviews-section {
    padding: 4rem 0 6rem;
}

.reviews-filters {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.review-filter {
    padding: 0.625rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-filter:hover,
.review-filter.active {
    background: linear-gradient(135deg, #eab308, #f97316);
    border-color: transparent;
    color: white;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 1.75rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(234, 179, 8, 0.1);
    border-color: rgba(234, 179, 8, 0.3);
}

.review-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.05), rgba(249, 115, 22, 0.05));
    border-color: rgba(234, 179, 8, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #eab308, #f97316);
    border-radius: 50%;
    flex-shrink: 0;
}

.reviewer-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.reviewer-info span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.review-badge {
    margin-left: auto;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #eab308, #f97316);
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
}

.review-rating {
    color: #eab308;
    font-size: 1.125rem;
    letter-spacing: 0.125rem;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.review-course {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Reviews CTA */
.reviews-cta {
    margin-top: 4rem;
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.1), rgba(249, 115, 22, 0.1));
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 1.5rem;
    padding: 3rem;
    max-width: 500px;
    margin: 0 auto;
}

.cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cta-box p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .review-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .big-rating {
        font-size: 3.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card.featured {
        grid-column: span 1;
    }
    
    .review-header {
        flex-wrap: wrap;
    }
}