/* ===== REDESIGNED TESTIMONIALS SECTION ===== */
.testimonials {
    background-color: var(--bg-dark);
    position: relative;
    z-index: 1;
    padding: 80px 0;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.2), transparent 70%);
    z-index: -1;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.2), transparent 70%);
    z-index: -1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    border: var(--border-glow);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 80px;
    line-height: 1;
    font-family: serif;
    color: rgba(var(--accent-rgb), 0.1);
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    padding: 2px;
    background-color: var(--bg-dark);
}

.author-info {
    margin-left: 15px;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.testimonial-rating {
    display: flex;
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: var(--accent-color);
    margin-right: 5px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info p {
        font-size: 0.85rem;
    }
}