/* --- TESTIMONIAL STYLES --- */
.testimonial-section {
    padding: 10px 0;
    position: relative;
}

.section-
ing {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.testimonial-row.reverse {
    flex-direction: row-reverse;
}

.t-image {
    flex: 1;
}

.t-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    filter: grayscale(20%);
    transition: 0.5s ease;
}

.testimonial-row:hover .t-image img {
    filter: grayscale(0%);
    transform: scale(1.03);
    border-color: #fff;
}

.t-content {
    flex: 1.2;
    background: var(--glass-bg);
    padding: 50px;
    border-radius: 40px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.quote {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 25px;
}

.author {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 5px;
}

.role {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
    .testimonial-row, .testimonial-row.reverse {
        flex-direction: column;
        text-align: center;
    }
}