/* ══════════════════════════════════════════════
   FAQ PAGE — Gun Dogs Hub
══════════════════════════════════════════════ */
.faq-page {
    padding: 3rem 0 4rem;
    background: var(--light-bg);
    min-height: 60vh;
}

/* ── Header ── */
.faq-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-header-icon {
    width: 52px;
    height: 52px;
    background: rgba(185, 151, 91, 0.1);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(185, 151, 91, 0.15);
}

.faq-header-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.4rem;
}

.faq-header-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0 0 1.25rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.faq-header-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), #d4af37);
    border-radius: 2px;
    margin: 0 auto;
}

/* ── FAQ List ── */
.faq-list {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 4px rgba(27, 67, 50, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(185, 151, 91, 0.25);
    box-shadow: 0 2px 12px rgba(27, 67, 50, 0.06);
}

.faq-item.active {
    border-color: rgba(185, 151, 91, 0.35);
    box-shadow: 0 4px 16px rgba(27, 67, 50, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    cursor: pointer;
    gap: 1rem;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(248, 249, 250, 0.6);
}

.faq-q-content {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex: 1;
    min-width: 0;
}

.faq-number {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--secondary-color);
    background: rgba(185, 151, 91, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}

.faq-question h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
}

.faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--light-bg);
}

.faq-item.active .faq-toggle {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 1.25rem 1.25rem 3.85rem;
    animation: faqFadeIn 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

@keyframes faqFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── CTA ── */
.faq-cta {
    text-align: center;
}

.faq-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0 0 0.75rem;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), #d4af37);
    color: var(--white);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(185, 151, 91, 0.25);
}

.faq-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(185, 151, 91, 0.35);
    color: var(--white);
    text-decoration: none;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 768px) {
    .faq-page {
        padding: 2rem 0 3rem;
    }

    .faq-header-title {
        font-size: 1.6rem;
    }

    .faq-question {
        padding: 0.85rem 1rem;
    }

    .faq-question h3 {
        font-size: 0.88rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem 3.1rem;
    }
}

@media (max-width: 480px) {
    .faq-number {
        display: none;
    }

    .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }
}
