﻿/* Additional styles for FAQ page */
.faq-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

    .faq-content .page-header {
        text-align: center;
        margin-bottom: 3rem;
    }

        .faq-content .page-header h1 {
            font-size: 2.8rem;
            font-weight: 700;
            background: linear-gradient(145deg, #e6b18c, #c47d58);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            margin-bottom: 0.5rem;
        }

        .faq-content .page-header p {
            color: #9a877a;
            font-size: 1.1rem;
        }

.back-to-menu {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #c47d58;
    color: #0e0d0c;
    padding: 0.8rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

    .back-to-menu:hover {
        background: #e6b18c;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(196, 125, 88, 0.3);
        color: #0e0d0c;
    }

/* Search Bar */
.faq-search {
    display: flex;
    align-items: center;
    background: #1a1714;
    border-radius: 60px;
    padding: 0.3rem 0.3rem 0.3rem 1.5rem;
    border: 1px solid #2f2822;
    margin-bottom: 2rem;
    transition: border-color 0.3s;
}

    .faq-search:focus-within {
        border-color: #c47d58;
    }

    .faq-search i {
        color: #6b5544;
        font-size: 1rem;
    }

    .faq-search input {
        flex: 1;
        background: transparent;
        border: none;
        padding: 0.8rem 1rem;
        color: #ece3db;
        font-size: 1rem;
        font-family: 'Inter', sans-serif;
        outline: none;
    }

        .faq-search input::placeholder {
            color: #6b5544;
        }

.search-btn {
    background: #c47d58;
    color: #0e0d0c;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 60px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .search-btn:hover {
        background: #e6b18c;
        transform: scale(1.02);
    }

/* Category Filters */
.faq-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    background: #1a1714;
    border: 1px solid #2f2822;
    color: #9a877a;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

    .filter-btn:hover {
        border-color: #c47d58;
        color: #e6b18c;
    }

    .filter-btn.active {
        background: #c47d58;
        color: #0e0d0c;
        border-color: #c47d58;
    }

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    background: #1a1714;
    border-radius: 16px;
    border: 1px solid #2f2822;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .faq-item:hover {
        border-color: #c47d58;
    }

    .faq-item.hidden {
        display: none;
    }

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.8rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .faq-question:hover {
        background: #221d19;
    }

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2c2520;
    border-radius: 50%;
    color: #c47d58;
    transition: all 0.3s ease;
    border: 1px solid #3d322b;
}

.faq-item.active .faq-icon {
    background: #c47d58;
    color: #0e0d0c;
    border-color: #c47d58;
}

    .faq-item.active .faq-icon i {
        transform: rotate(45deg);
    }

.faq-question h3 {
    color: #e6b18c;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.8rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.8rem 1.5rem 1.8rem;
}

.faq-answer p {
    color: #c7b2a0;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

    .faq-answer p strong {
        color: #e6b18c;
    }

/* No Results */
.faq-no-results {
    text-align: center;
    padding: 3rem 2rem;
    background: #1a1714;
    border-radius: 16px;
    border: 1px solid #2f2822;
}

    .faq-no-results i {
        font-size: 3rem;
        color: #6b5544;
        display: block;
        margin-bottom: 1rem;
    }

    .faq-no-results h3 {
        color: #e6b18c;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .faq-no-results p {
        color: #9a877a;
        font-size: 0.95rem;
    }

/* Still Have Questions */
.faq-still-questions {
    margin-top: 3rem;
    text-align: center;
    background: #1a1714;
    border-radius: 28px;
    padding: 2.5rem;
    border: 1px solid #2f2822;
}

    .faq-still-questions i {
        font-size: 3rem;
        color: #c47d58;
        display: block;
        margin-bottom: 0.5rem;
    }

    .faq-still-questions h3 {
        color: #e6b18c;
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .faq-still-questions p {
        color: #9a877a;
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

.still-questions-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

    .still-questions-buttons a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 0.7rem 1.8rem;
        border-radius: 60px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.95rem;
    }

.contact-btn {
    background: #c47d58;
    color: #0e0d0c;
}

    .contact-btn:hover {
        background: #e6b18c;
        transform: translateY(-2px);
    }

.whatsapp-btn {
    background: #25D366;
    color: #fff;
}

    .whatsapp-btn:hover {
        background: #20b858;
        transform: translateY(-2px);
    }

.call-btn {
    background: #2c2520;
    color: #e6b18c;
    border: 1px solid #3d322b;
}

    .call-btn:hover {
        background: #3d322b;
        transform: translateY(-2px);
    }

@media (max-width: 680px) {
    .faq-content .page-header h1 {
        font-size: 2rem;
    }

    .faq-search {
        padding: 0.2rem 0.2rem 0.2rem 1rem;
    }

        .faq-search input {
            font-size: 0.9rem;
            padding: 0.6rem 0.8rem;
        }

    .search-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .faq-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .faq-question {
        padding: 1rem 1.2rem;
    }

        .faq-question h3 {
            font-size: 0.9rem;
        }

    .faq-answer p {
        font-size: 0.85rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.2rem 1.2rem;
    }

    .faq-still-questions {
        padding: 1.5rem;
    }

    .still-questions-buttons a {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    .back-to-menu {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .faq-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        text-align: center;
    }
}
