.testimonial-wall {
    padding: 4rem 0;
    background: var(--light-bg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-video-container {
    width: 100%;
    aspect-ratio: 16/9;
}

.testimonial-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    padding: 1.5rem;
}

.testimonial-text p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--gold);
    font-weight: 600;
}

.review-feed {
    margin-top: 3rem;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.review-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.partner-carousel {
    margin-top: 3rem;
    padding: 2rem 0;
}

.partner-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.partner-logo {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}
