/* Enhanced FAQ Styles */
.faq-search-container {
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: center;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: #D4AF37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.search-box i {
    color: #999;
    margin-right: 0.75rem;
}

#faq-search {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
}

#clear-search {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s ease;
}

#clear-search:hover {
    color: #333;
}

.search-hint {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-btn {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #666;
}

.category-btn:hover {
    border-color: #D4AF37;
    color: #333;
}

.category-btn.active {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #0A2B4C;
}

.expand-all-btn {
    background: none;
    border: none;
    color: #D4AF37;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.expand-all-btn:hover {
    color: #b8962f;
}

#faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #D4AF37;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-item[open] {
    border-color: #0A2B4C;
}

.no-results-message {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.no-results-message i {
    font-size: 3rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.no-results-message h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.cta-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.cta-button-outline {
    background: transparent;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button-outline:hover {
    background: #D4AF37;
    color: #0A2B4C;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-categories {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }

    .category-btn {
        flex-shrink: 0;
    }

    .cta-options {
        flex-direction: column;
        align-items: center;
    }

    .cta-button-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
