/* Real Testimonials Section */
.real-testimonials {
    padding: 80px 0;
    background: #f5f3e8;
}

.real-testimonials .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card.featured {
    border-color: #dc2626;
    transform: scale(1.02);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
    justify-content: flex-start;
}

.stars i {
    color: #ffc107;
    font-size: 1rem;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.author-info {
    flex: 1;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
    text-transform: lowercase;
}

.author-info span {
    font-size: 0.9rem;
    color: #666;
    display: block;
    margin-bottom: 4px;
}

.verified {
    font-size: 0.8rem;
    color: #999;
    margin: 0;
}

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

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .real-testimonials {
        padding: 60px 0;
    }
    
    .real-testimonials .section-header {
        margin-bottom: 3rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-card.featured {
        transform: none;
        order: -1;
    }
}

@media (max-width: 480px) {
    .real-testimonials .section-header h2 {
        font-size: 1.8rem;
    }
    
    .real-testimonials .section-header p {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 1.2rem;
    }