/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--background-color);
    text-align: center;
}

.testimonials-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.testimonials-subtitle {
    color: var(--secondary-color);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

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

.testimonial-card {
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.1);
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-card blockquote {
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.author-info strong {
    font-weight: 600;
    display: block;
    color: var(--heading-color);
}

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

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.final-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.final-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-outline-light {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .testimonials-grid,
    .empower-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-image {
        height: 300px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .testimonials-grid,
    .empower-cards {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
}

/* components/testimonials.css */

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, 
                rgba(var(--primary-rgb), 0.03) 0%, 
                transparent 30%);
    z-index: 0;
}

.testimonials-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
    position: relative;
    z-index: 1;
    text-align: center;
}

.testimonials-subtitle {
    color: var(--secondary-color);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 1.2rem;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.1);
    border-color: rgba(var(--primary-rgb), 0.3);
}

.testimonial-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.stars {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    quotes: "“" "”" "‘" "’";
}

.testimonial-card blockquote::before {
    content: open-quote;
    font-size: 4rem;
    color: rgba(var(--primary-rgb), 0.1);
    position: absolute;
    left: -1rem;
    top: -2rem;
    line-height: 1;
    z-index: -1;
}

.testimonial-card blockquote::after {
    content: close-quote;
    font-size: 4rem;
    color: rgba(var(--primary-rgb), 0.1);
    position: absolute;
    right: -1rem;
    bottom: -4rem;
    line-height: 1;
    z-index: -1;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.author-details {
    text-align: left;
}

.author-info strong {
    font-weight: 700;
    color: var(--heading-color);
    display: block;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: var(--secondary-color);
    font-size: 0.9rem;
    display: block;
}

/* Testimonial Navigation Arrows */
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.testimonial-nav button {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.testimonial-nav button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .testimonials-section {
        padding: 5rem 0;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
    }
    
    .testimonials-subtitle {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 576px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 1.8rem;
    }
    
    .testimonials-title {
        font-size: 1.6rem;
    }
    
    .author-info {
        flex-direction: column;
        align-items: flex-start;
    }
}