/* ============================================================
   HireTheVeterans.com — faq.css
   Public FAQ page styles
   ============================================================ */

/* ── Hero ── */
.faq-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 52px 20px 44px;
    text-align: center;
}

.faq-hero-inner {
    max-width: 700px;
    margin: 0 auto;
}

.faq-hero h1 {
    font-size: 2.2rem;
    color: #ffffff;
    margin: 0 0 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.faq-hero p {
    font-size: 1.05rem;
    color: #b0bec5;
    line-height: 1.6;
    margin: 0;
}

.faq-country-notice {
    margin-top: 16px;
    font-size: 0.88rem;
    color: #90a4ae;
}

.faq-country-notice strong {
    color: #ffffff;
}

.show-all-link {
    color: #7eb8f7;
    text-decoration: none;
    margin-left: 8px;
    font-size: 0.82rem;
}

.show-all-link:hover {
    text-decoration: underline;
}

/* ── Jump Links ── */
.faq-jump-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 24px 20px;
    border-bottom: 1px solid #e0e6ed;
    flex-wrap: wrap;
}

.jump-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #ffffff;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    text-decoration: none;
    color: #1a1a2e;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.jump-link:hover {
    border-color: #2C5F8A;
    box-shadow: 0 2px 8px rgba(44, 95, 138, 0.12);
}

.jump-icon {
    font-size: 1.1rem;
}

.jump-count {
    background: #f0f2f5;
    color: #546e7a;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
}

/* ── Content Area ── */
.faq-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* ── Section Header ── */
.faq-section {
    margin-bottom: 48px;
}

.faq-section:last-child {
    margin-bottom: 0;
}

.faq-section-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e0e6ed;
}

.faq-section-icon {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-section-title {
    font-size: 1.35rem;
    color: #1a1a2e;
    margin: 0 0 4px;
    font-weight: 700;
}

.faq-section-desc {
    font-size: 0.88rem;
    color: #78909c;
    margin: 0;
    line-height: 1.4;
}

/* ── Accordion ── */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e0e6ed;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* ── Question Button ── */
.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
    transition: background 0.15s ease;
}

.faq-question:hover {
    background: #fafbfc;
}

.faq-q-text {
    flex: 1;
}

.faq-country-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 4px;
    flex-shrink: 0;
}

.faq-country-us {
    background: #f0f2f5;
    color: #546e7a;
}

.faq-country-uk {
    background: #e3f2fd;
    color: #1565c0;
}

.faq-chevron {
    flex-shrink: 0;
    color: #90a4ae;
    transition: transform 0.25s ease;
    display: flex;
}

.faq-question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}

.faq-question[aria-expanded="true"] {
    background: #fafbfc;
}

/* ── Answer ── */
.faq-answer {
    border-top: 1px solid #e0e6ed;
}

.faq-answer-inner {
    padding: 20px;
    font-size: 0.95rem;
    color: #37474f;
    line-height: 1.7;
}

.faq-answer-inner p {
    margin: 0 0 12px;
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

.faq-answer-inner ul,
.faq-answer-inner ol {
    margin: 0 0 12px;
    padding-left: 24px;
}

.faq-answer-inner li {
    margin-bottom: 6px;
}

.faq-answer-inner a {
    color: #2C5F8A;
    text-decoration: underline;
}

.faq-answer-inner a:hover {
    color: #1e4a6e;
}

/* ── Empty State ── */
.faq-empty {
    text-align: center;
    padding: 60px 20px;
    background: #fafbfc;
    border: 1px dashed #cfd8dc;
    border-radius: 10px;
}

.faq-empty h3 {
    font-size: 1.2rem;
    color: #455a64;
    margin: 0 0 8px;
}

.faq-empty p {
    font-size: 0.9rem;
    color: #90a4ae;
    margin: 0;
    line-height: 1.6;
}

.faq-empty a {
    color: #2C5F8A;
}

/* ── Contact CTA ── */
.faq-cta {
    text-align: center;
    padding: 48px 20px;
    background: #f8f9fb;
    border-top: 1px solid #e0e6ed;
}

.faq-cta h3 {
    font-size: 1.4rem;
    color: #1a1a2e;
    margin: 0 0 8px;
    font-weight: 700;
}

.faq-cta p {
    font-size: 0.95rem;
    color: #78909c;
    margin: 0 0 20px;
}

.btn-faq-contact {
    display: inline-block;
    padding: 12px 32px;
    background: #2C5F8A;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background 0.2s ease;
}

.btn-faq-contact:hover {
    background: #1e4a6e;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .faq-hero {
        padding: 40px 20px 32px;
    }

    .faq-hero h1 {
        font-size: 1.6rem;
    }

    .faq-jump-links {
        gap: 10px;
    }

    .jump-link {
        padding: 8px 14px;
        font-size: 0.82rem;
    }

    .faq-content {
        padding: 28px 16px 48px;
    }

    .faq-section-title {
        font-size: 1.15rem;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 0.92rem;
    }

    .faq-answer-inner {
        padding: 16px;
        font-size: 0.9rem;
    }

    .faq-cta {
        padding: 36px 20px;
    }
}
