/* Testimonials Section - Complete Redesign */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(108, 99, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-header .premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.15), rgba(0, 255, 255, 0.1));
    border: 1px solid rgba(108, 99, 255, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6C63FF;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.testimonials-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 320px;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(108, 99, 255, 0.4);
    box-shadow: 0 25px 50px rgba(108, 99, 255, 0.15);
}

/* Testimonial Content */
.testimonial-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    margin-bottom: 20px;
}

.quote-icon i {
    font-size: 24px;
    color: rgba(108, 99, 255, 0.6);
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 24px 0;
    flex: 1;
    font-weight: 400;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 0;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 16px;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: auto;
}

.testimonial-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(108, 99, 255, 0.3);
    background: linear-gradient(135deg, #6C63FF 0%, #4CAF50 100%);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.author-info {
    flex: 1;
    min-width: 0;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.author-position {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.author-profit {
    font-size: 0.85rem;
    color: #4CAF50;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}



.testimonial-content::before {
    content: '"';
    font-size: 2rem;
    color: rgba(108, 99, 255, 0.5);
    line-height: 1;
    margin-right: 5px;
}

.testimonial-content::after {
    content: '"';
    font-size: 2rem;
    color: rgba(108, 99, 255, 0.5);
    line-height: 1;
    margin-left: 5px;
}

.testimonial-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-stat {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4CAF50;
    display: block;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Testimonials Statistics - Redesigned */
.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 48px 32px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.testimonials-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(108, 99, 255, 0.2);
}

.stat-number {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    background: linear-gradient(135deg, #6C63FF 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0;
    line-height: 1.3;
}

.testimonial-verified {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonial-verified i {
    font-size: 0.6rem;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .testimonial-card {
        min-height: 280px;
    }
    
    .testimonial-content {
        padding: 28px 24px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .testimonial-author {
        padding: 20px 24px;
        gap: 14px;
    }
    
    .testimonial-avatar {
        width: 48px;
        height: 48px;
    }
    
    .author-info h4 {
        font-size: 1.05rem;
    }
    
    .author-position {
        font-size: 0.85rem;
    }
    
    .author-profit {
        font-size: 0.8rem;
    }
    
    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 40px 24px;
        margin: 0 20px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 640px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .testimonials-grid {
        padding: 0 15px;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .testimonial-card {
        min-height: 260px;
    }
    
    .testimonial-content {
        padding: 24px 20px;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .testimonial-author {
        padding: 18px 20px;
        gap: 12px;
    }
    
    .testimonial-avatar {
        width: 44px;
        height: 44px;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-position {
        font-size: 0.8rem;
    }
    
    .author-profit {
        font-size: 0.75rem;
    }
    
    .testimonials-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 32px 20px;
        margin: 0 15px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonials-header {
        margin-bottom: 35px;
        padding: 0 10px;
    }
    
    .testimonials-header .premium-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .testimonials-grid {
        padding: 0 10px;
        gap: 16px;
        margin-bottom: 35px;
    }
    
    .testimonial-card {
        min-height: 240px;
    }
    
    .testimonial-content {
        padding: 20px 16px;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .testimonial-author {
        padding: 16px;
        gap: 10px;
    }
    
    .testimonial-avatar {
        width: 40px;
        height: 40px;
    }
    
    .author-info h4 {
        font-size: 0.95rem;
    }
    
    .author-position {
        font-size: 0.75rem;
    }
    
    .author-profit {
        font-size: 0.7rem;
    }
    
    .testimonials-stats {
        padding: 28px 16px;
        gap: 16px;
        margin: 0 10px;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}
