/* ============================================
   ShoreTimer - FAQ Page Styles
   ============================================ */

/* Content */
.faq-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 7rem 2rem 4rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.faq-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Category sections */
.faq-category {
    margin-bottom: 3rem;
}

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

.faq-category-title svg {
    width: 24px;
    height: 24px;
}

/* Accordion */
.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--coral);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-600);
}

.faq-answer-content p {
    margin-bottom: 1rem;
}

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

.faq-answer-content ul {
    margin: 0.5rem 0 1rem 1.5rem;
}

.faq-answer-content li {
    margin-bottom: 0.5rem;
}

.faq-answer-content strong {
    color: var(--navy);
}

/* Contact box */
.contact-box {
    background: var(--navy);
    color: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 3rem;
    text-align: center;
}

.contact-box h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.contact-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.contact-box a.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--coral);
    color: var(--white);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
}

.contact-box a.btn:hover {
    background: #e85555;
    transform: translateY(-2px);
}

.contact-box a.btn svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 640px) {
    .faq-header h1 {
        font-size: 2rem;
    }

    .faq-content {
        padding: 2rem 1.5rem 3rem;
    }

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

    .faq-answer-content {
        padding: 0 1.25rem 1.25rem;
    }

    .contact-box {
        padding: 2rem 1.5rem;
    }
}
