/* Testimonial Enhancements CSS */

/* Light button variant for testimonial section */
.btn-light {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    border-color: var(--white);
    font-weight: var(--font-bold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Enhance testimonial card animation */
.testimonials-grid {
    position: relative;
}

/* Enhance testimonial section mobile experience */
@media (max-width: 767px) {
    .testimonials-section {
        padding: var(--space-10) 0;
    }

    .testimonial-card {
        margin-bottom: var(--space-4);
    }
    
    .testimonials-grid + .text-center {
        margin-top: var(--space-6);
    }
    
    /* Mobile-specific adjustments for profession tags */
    .testimonial-author span {
        display: block;
        margin-top: 0;
        font-size: var(--font-xs);
        line-height: 1.4;
    }
}

/* Profession tag as simple subtitle */
.testimonial-author span {
    color: var(--light-gray);
    display: block;
    font-weight: var(--font-medium);
    font-size: var(--font-sm);
    font-style: italic;
    letter-spacing: 0.02em;
}

/* Additional testimonial section enhancements */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -10%;
    right: -10%;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
    z-index: 0;
}
