/* ==========================================================================
   Testimonials Section
   ========================================================================== */

/* .testimonials-section inherits background from .dark-section */


.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    letter-spacing: 2px;
}

.testimonial-quote {
    color: var(--color-silver);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    font-style: italic;
    flex-grow: 1;
    margin: 0 0 1.5rem;
    border: none;
    padding: 0;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--color-white);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    color: var(--color-teal-light);
    font-size: 0.85rem;
    font-weight: 500;
}
