/* FAQ Page Styles */

.faq-search-wrapper {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.faq-search-wrapper i {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--orange);
    font-size: 20px;
}

.faq-search {
    width: 100%;
    padding: 18px 24px 18px 60px;
    border: 2px solid var(--dark-cream);
    border-radius: 100px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
}

.faq-search:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.category-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--dark-cream);
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-btn i {
    font-size: 16px;
}

.category-btn:hover,
.category-btn.active {
    background: linear-gradient(135deg, var(--orange), var(--blue));
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category-section {
    margin-bottom: 60px;
}

.faq-category-section.hide {
    display: none;
}

.faq-category-title {
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-category-title i {
    color: var(--orange);
    font-size: 32px;
}

.faq-item {
    background: white;
    border: 1px solid var(--dark-cream);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.hide {
    display: none;
}

.faq-item:hover {
    border-color: var(--orange);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.1);
}

.faq-question {
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s;
    user-select: none;
}

.faq-question:hover {
    color: var(--orange);
}

.faq-icon {
    font-size: 24px;
    transition: transform 0.3s;
    color: var(--orange);
    font-weight: 700;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px 28px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

/* Contact CTA */
.contact-cta {
    background: white;
    padding: 60px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--dark-cream);
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-categories {
        gap: 12px;
    }
    
    .category-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .faq-category-title {
        font-size: 24px;
    }
    
    .faq-question {
        font-size: 15px;
        padding: 20px 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .contact-cta {
        padding: 40px 24px;
    }
    
    .contact-cta h2 {
        font-size: 28px;
    }
}