/* Testimonials Section Styles */

.testimonials-section-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 25%, #dee2e6 50%, #ced4da 75%, #adb5bd 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(105, 5, 233, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(124, 1, 221, 0.03) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonial-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%234a5568" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonial-pattern)"/></svg>');
    pointer-events: none;
}

/* Testimonial Card */
.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(105, 5, 233, 0.3);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(105, 5, 233, 0.02) 0%, 
        rgba(124, 1, 221, 0.01) 50%, 
        rgba(192, 112, 255, 0.02) 100%);
    z-index: -1;
}

/* Testimonial Content */
.testimonial-content {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

/* Coming Soon Card */
.coming-soon-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.coming-soon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(105, 5, 233, 0.3);
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(105, 5, 233, 0.02) 0%, 
        rgba(124, 1, 221, 0.01) 50%, 
        rgba(192, 112, 255, 0.02) 100%);
    z-index: -1;
}

.coming-soon-icon {
    color: rgba(105, 5, 233, 0.3);
}

.coming-soon-title {
    color: #2d3748;
}

.coming-soon-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

.coming-soon-badge {
    margin-top: 1rem;
}

.quote-icon {
    color: rgba(105, 5, 233, 0.3);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 3rem;
    color: rgba(105, 5, 233, 0.2);
    font-family: serif;
    line-height: 1;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-info {
    flex: 1;
}

.author-name {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.author-title {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.rating {
    color: #ffc107;
    font-size: 0.9rem;
    display: flex;
    gap: 0.1rem;
}

.rating i {
    transition: var(--transition);
}

.testimonial-card:hover .rating i {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-title {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .testimonials-section-wrapper {
        padding: 2rem 0;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .rating {
        align-self: flex-end;
    }
}
