.testimonials-overview {
    margin-bottom: 4rem;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem;
    border-radius: 16px;
    color: white;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-source {
    font-size: 0.9rem;
    opacity: 0.8;
}

.video-testimonials-section {
    margin-bottom: 5rem;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.video-testimonial {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.video-placeholder {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #1f2937, #374151);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    font-size: 3rem;
    color: white;
    opacity: 0.9;
}

.video-info {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: white;
}

.video-info h3 {
    margin: 0;
    font-size: 1.1rem;
}

.video-duration {
    background: rgba(0,0,0,0.7);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.video-details {
    padding: 1.5rem;
}

.video-details h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.client-company {
    color: #6b7280;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.testimonials-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: #f1f5f9;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

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

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

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.client-info {
    flex: 1;
}

.client-info h3 {
    margin: 0 0 0.25rem 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.client-role {
    color: #6b7280;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.rating {
    color: #f59e0b;
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial-date {
    color: #9ca3af;
    font-size: 0.85rem;
}

.testimonial-content blockquote {
    margin: 0;
    font-style: italic;
    color: #374151;
    line-height: 1.6;
    position: relative;
    padding: 0 1rem;
}

.testimonial-content blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-color);
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.project-type {
    color: #6b7280;
    font-size: 0.9rem;
}

.project-value {
    color: var(--primary-color);
    font-weight: 600;
}

.satisfaction-breakdown {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 4rem;
}

.satisfaction-breakdown h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.satisfaction-metrics {
    max-width: 600px;
    margin: 0 auto;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-category {
    width: 150px;
    font-weight: 500;
    color: #374151;
}

.metric-bar {
    flex: 1;
    height: 12px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.8s ease;
}

.metric-value {
    width: 50px;
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
}

.praise-points {
    margin-bottom: 4rem;
}

.praise-points h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.praise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.praise-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    text-align: center;
    border-top: 4px solid var(--accent-color);
}

.praise-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.praise-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.praise-item p {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.praise-frequency {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
}

.review-cta {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 4rem 3rem;
    border-radius: 16px;
    text-align: center;
}

.review-cta h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.review-cta p {
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.review-platforms {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.review-platform {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
    min-width: 180px;
}

.review-platform:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.platform-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.google .platform-icon {
    background: #4285f4;
}

.facebook .platform-icon {
    background: #1877f2;
}

.website .platform-icon {
    background: var(--primary-color);
    font-size: 1.2rem;
}

.platform-info {
    text-align: left;
}

.platform-info span {
    display: block;
    color: #6b7280;
    font-size: 0.85rem;
}

.platform-info strong {
    color: #374151;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .overview-stats {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .metric-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .metric-category {
        width: auto;
    }
    
    .review-platforms {
        flex-direction: column;
        align-items: center;
    }
    
    .satisfaction-breakdown,
    .review-cta {
        padding: 2rem;
    }
}
