/* =================================================================
   FAQ PAGE — /faq
   ================================================================= */

/* ── Hero ─────────────────────────────────────────────────────── */
.faq-hero-wrap {
    position: relative;
    overflow: hidden;
    background: #0d1a2d;
}
.faq-hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: brightness(0.4);
}
.faq-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 3.5rem;
}
.faq-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin: 0.5rem 0 0.4rem;
    line-height: 1.1;
}
.faq-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}
.faq-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
    color: rgba(255,255,255,0.6);
}
.faq-breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.faq-breadcrumb a:hover { color: #fff; }
.faq-breadcrumb .bi-chevron-right { font-size: 0.7rem; color: rgba(255,255,255,0.4); }
.faq-breadcrumb span { color: rgba(255,255,255,0.9); }

/* ── Layout ───────────────────────────────────────────────────── */
.faq-layout {
    background: #f3f4f6;
    padding: 50px 0 60px;
}
.faq-shell {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 2.75rem;
    align-items: start;
}
.faq-sidebar {
    position: sticky;
    top: 110px;
}

/* ── Content area ─────────────────────────────────────────────── */
.faq-content-head {
    margin-bottom: 2rem;
}

/* ── Accordion ────────────────────────────────────────────────── */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: box-shadow 0.25s;
}
.faq-item.open,
.faq-item:hover {
    box-shadow: 0 6px 28px rgba(0,0,0,0.08);
}
.faq-item.open {
    border-color: #fca5a5;
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    transition: background 0.2s;
}
.faq-q:hover { background: #fafafa; }
.faq-item.open .faq-q { background: #fff8f8; color: var(--dhs-red); }

.faq-num {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: #fef2f2;
    color: var(--dhs-red);
    font-size: 0.78rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.faq-item.open .faq-num {
    background: var(--dhs-red);
    color: #fff;
}

.faq-icon {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 1rem;
    color: #9ca3af;
    transition: transform 0.3s, color 0.2s;
}
.faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: var(--dhs-red);
}

.faq-a {
    display: none;
    padding: 0 1.5rem 1.5rem 4.75rem;
    font-size: 0.97rem;
    color: #4b5563;
    line-height: 1.8;
}
.faq-item.open .faq-a { display: block; }
.faq-a p { margin: 0 0 0.75rem; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a strong { color: #1a1a2e; }
.faq-a a { color: var(--dhs-red); text-decoration: none; }
.faq-a a:hover { text-decoration: underline; }
.faq-a ul, .faq-a ol { padding-left: 1.25rem; margin: 0.5rem 0; }

.faq-empty {
    text-align: center;
    padding: 3rem 0;
    color: #94a3b8;
    font-size: 1rem;
}

/* ── CTA Strip ────────────────────────────────────────────────── */
.faq-cta-strip {
    background: linear-gradient(120deg, #0c2a4a 0%, #1a3a5c 100%);
    padding: 3rem 0;
}
.faq-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.faq-cta-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.35rem;
}
.faq-cta-sub {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}
.faq-cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, border-color 0.2s, color 0.2s;
}
.faq-cta-btn--red {
    background: var(--dhs-red);
    color: #fff;
    box-shadow: 0 4px 14px rgba(var(--dhs-red-rgb), 0.35);
}
.faq-cta-btn--red:hover { background: #b91c1c; color: #fff; transform: translateY(-2px); }
.faq-cta-btn--outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
}
.faq-cta-btn--outline:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
    transform: translateY(-2px);
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 991px) {
    .faq-shell {
        grid-template-columns: 1fr;
    }
    .faq-sidebar {
        position: static;
    }
}
@media (max-width: 768px) {
    .faq-hero-img { height: 300px; }
    .faq-layout { padding: 30px 0 40px; }
    .faq-q { font-size: 0.94rem; padding: 1rem 1.25rem; }
    .faq-a { padding: 0 1.25rem 1.25rem 4.25rem; }
    .faq-cta-inner { flex-direction: column; text-align: center; }
    .faq-cta-actions { justify-content: center; }
}
@media (max-width: 480px) {
    .faq-num { width: 2rem; height: 2rem; font-size: 0.72rem; }
    .faq-a { padding-left: 3.75rem; }
}
