/* ============================================
   FAQ PAGE STYLES
   ============================================ */

/* Hero */
.faq-hero {
    padding: 8rem 0 3rem;
    background: linear-gradient(160deg, var(--deep-teal) 0%, var(--dark-teal) 60%, var(--tropical-teal) 100%);
    color: white;
    text-align: center;
}

.faq-hero-content {
    max-width: 760px;
    margin: 0 auto;
}

.faq-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50rem;
    padding: 0.35rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.25rem;
}

.faq-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Table of Contents chips */
.faq-toc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.faq-toc a {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50rem;
    padding: 0.35rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.faq-toc a:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.45);
    color: white;
}

/* Main content area */
.faq-main {
    background: var(--gray-100);
    padding: 3rem 0 5rem;
}

.faq-container {
    max-width: 860px;
}

/* FAQ Section block */
.faq-section {
    margin-bottom: 3.5rem;
    scroll-margin-top: 80px;
}

.faq-section-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--deep-teal);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light-teal);
}

.faq-section-icon {
    font-size: 1.4rem;
    line-height: 1;
}

/* Individual Q&A */
.faq-item {
    background: white;
    border-radius: 0.875rem;
    border: 1px solid var(--gray-200);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(15, 158, 153, 0.1);
    border-color: var(--light-teal);
}

.faq-question {
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0;
    padding: 1.1rem 1.5rem;
    cursor: default;
    line-height: 1.4;
    position: relative;
}

.faq-question::before {
    content: 'F';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--tropical-teal);
    color: white;
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 800;
    margin-right: 0.6rem;
    flex-shrink: 0;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
    border-top: 1px solid var(--gray-100);
}

.faq-answer p {
    font-size: 0.935rem;
    color: var(--text-color-secondary);
    line-height: 1.75;
    margin: 0.75rem 0 0;
}

.faq-answer p:first-child {
    margin-top: 0.85rem;
}

.faq-answer ul {
    margin: 0.75rem 0 0 0;
    padding-left: 1.25rem;
}

.faq-answer li {
    font-size: 0.935rem;
    color: var(--text-color-secondary);
    line-height: 1.7;
    margin-bottom: 0.3rem;
    padding-left: 0.25rem;
}

.faq-answer strong {
    color: var(--charcoal);
    font-weight: 700;
}

.faq-answer em {
    color: var(--dark-teal);
    font-style: italic;
}

.faq-answer a {
    color: var(--tropical-teal);
    text-decoration: underline;
    font-weight: 600;
}

.faq-answer a:hover {
    color: var(--dark-teal);
}

/* CTA section at bottom */
.faq-cta {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    padding: 5rem 0;
    text-align: center;
}

.faq-cta-content {
    max-width: 580px;
    margin: 0 auto;
}

.faq-cta-content h2 {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.faq-cta-content p {
    color: rgba(255,255,255,0.82);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-hero-title {
        font-size: 2rem;
    }

    .faq-hero {
        padding: 4rem 0 2.5rem;
    }

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

    .faq-question {
        padding: 1rem 1.1rem;
        font-size: 0.935rem;
    }

    .faq-answer {
        padding: 0 1.1rem 1rem;
    }
}
