/* Modern Testimonial Styles */
.testimonial {
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.testimonial .card {
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    position: relative;
    z-index: 2;
}

.testimonial-description h3 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 2rem;
}

.client-meta-data h5 {
    color: #667eea;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.client-meta-data p {
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 20px;
}

.clients-feedback {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    font-style: italic;
    position: relative;
    padding-left: 30px;
}

.clients-feedback::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: #667eea;
    font-family: serif;
}

.client-picture {
    position: relative;
    text-align: center;
}

.client-picture img:first-child {
    border-radius: 50%;
    width: 220px;
    height: 220px;
    object-fit: cover;
    border: 2px solid #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.client-picture .coma {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 40px;
    height: 40px;
    filter: invert(1);
}

/* Testimonial Controls */
.testimonial-control {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    border: 2px solid #667eea;
    transition: all 0.3s ease;
}

.testimonial-control:hover {
    background: #667eea;
    transform: scale(1.1);
}

.testimonial-control-icon {
    background: none;
    color: #667eea;
    font-size: 1.2rem;
}

.testimonial-control:hover .testimonial-control-icon {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial .card {
        padding: 20px;
    }
    
    .testimonial-description h3 {
        font-size: 1.5rem;
    }
    
    .client-picture img:first-child {
        width: 80px;
        height: 80px;
    }
}