/* Testimonials */
.testimonials-section {
    background: linear-gradient(180deg, #0a0a1a 0%, #0f0f25 100%);
    position: relative;
}

.testimonials-section .card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
}

.testimonials-section .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05), rgba(0, 206, 201, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.testimonials-section .card:hover::before {
    opacity: 1;
}

.testimonials-section .card:hover {
    border-color: rgba(108, 92, 231, 0.4) !important;
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.2), 0 0 30px rgba(0, 206, 201, 0.1);
    transform: translateY(-10px);
}

.testimonials-section .card-body {
    position: relative;
    z-index: 1;
}

.testimonials-section .text-warning {
    font-size: 1.4rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.testimonials-section .card-text {
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8) !important;
}

.avatar {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonials-section .card:hover .avatar {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(108, 92, 231, 0.4);
}

.testimonials-section h6 {
    color: #fff !important;
    font-weight: 600;
}

.testimonials-section small {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.85rem;
}

/* FAQ Accordion */
.accordion-button {
    font-weight: 500;
    padding: 1.5rem 0;
}