/**
 * FAQ Page Template Styles - Quylo Child Theme
 */

/* ── Shimmer Text (matches landing page) ── */
.shimmer-text {
    background: linear-gradient(90deg, #00BFBD 0%, #E0F7FA 40%, #00BFBD 70%, #E0F7FA 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: faq-shimmer-wave 3s linear infinite;
}

@keyframes faq-shimmer-wave {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* ── FAQ Accordion ── */
.faq-item {
    border: 1px solid rgba(10, 13, 35, .08);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    background: #fff;
}

.faq-item:hover {
    border-color: rgba(0, 191, 189, .2);
    box-shadow: 0 8px 30px -10px rgba(0, 191, 189, .1);
}

.faq-item.active {
    border-color: rgba(0, 191, 189, .3);
    box-shadow: 0 12px 40px -10px rgba(0, 191, 189, .15);
}

.faq-question {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
    gap: 1rem;
    transition: background 0.3s ease;
    user-select: none;
}

.faq-item.active .faq-question {
    background: #fff;
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: #00BFBD;
}

.faq-question:hover h3 {
    color: #00BFBD;
}

.faq-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 191, 189, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
}

.faq-item.active .faq-icon {
    background: #00BFBD;
    transform: rotate(45deg);
}

.faq-icon svg {
    width: 18px;
    height: 18px;
    color: #00BFBD;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-icon {
    background: rgba(0, 191, 189, .15);
}

.faq-item:hover .faq-icon svg {
    color: #00BFBD;
}

.faq-item.active .faq-icon svg,
.faq-item.active:hover .faq-icon svg {
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(.4, 0, .2, 1), padding 0.4s ease;
    padding: 0 1.75rem;
}

.faq-answer-inner {
    padding-bottom: 1.5rem;
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.75;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.75rem;
}

.faq-item.active .faq-answer .faq-answer-inner {
    background: #fff;
}

.faq-answer ul {
    list-style: disc !important;
    list-style-position: inside !important;
    
}