/* 
 * FAQ PAGE STYLES
 * This file is only loaded when users visit the FAQ page (templates/page-faq.php)
 */

/* 
 * FAQ STYLES
 * This file is only loaded when users visit the FAQ page (templates/page-faq.php)
 */

/* =========================================
   FAQ ACCORDION
========================================= */
.faq-section { 
    margin-bottom: 100px; 
    max-width: 800px; 
    margin-left: auto; 
    margin-right: auto; 
}

.faq-item {
    background: var(--card-bg); 
    border: 1px solid #1e293b; 
    border-radius: 10px;
    margin-bottom: 15px; 
    overflow: hidden; 
    transition: 0.3s ease;
}

.faq-question {
    width: 100%; 
    text-align: right; 
    padding: 20px 25px; 
    background: transparent; 
    border: none;
    color: var(--pure-white); 
    font-size: 1.1rem; 
    font-family: 'Almarai', sans-serif; 
    font-weight: 700;
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question i { 
    color: var(--accent-orange); 
    transition: transform 0.4s ease; 
}

.faq-item.active { 
    border-color: var(--accent-orange); 
    box-shadow: 0 5px 20px rgba(255,87,34,0.1); 
}

.faq-item.active .faq-question i { 
    transform: rotate(180deg); 
}

.faq-answer {
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.4s ease;
}

.faq-answer p { 
    padding: 0 25px 20px; 
    color: #a0aec0; 
    line-height: 1.8; 
    margin: 0; 
}
