/* ============================================================
   Flyttfirma Template — Contact page
   Info + form split, FAQ accordion.
   ============================================================ */

/* ---- Contact Section ---- */

.contact-section {
    padding: 4.5rem 0;
    background: var(--color-background);
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
    padding: 0.875rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--color-text) 8%, transparent);
}

.contact-item:first-of-type {
    padding-top: 0;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text_muted);
    margin-bottom: 0.125rem;
}

.contact-item a {
    font-size: 1rem;
    font-weight: 500;
}

.contact-item address,
.contact-item p {
    font-size: 0.9375rem;
    line-height: 1.6;
    white-space: pre-line;
}

.contact-reassurance {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: color-mix(in srgb, var(--color-accent) 8%, transparent);
    border-radius: 6px;
    border-left: 3px solid var(--color-accent);
}

.contact-reassurance p {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
}

.contact-form-wrapper h2 {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .contact-section {
        padding: 6rem 0;
    }

    .contact-layout {
        flex-direction: row;
        gap: 4rem;
    }

    .contact-info {
        flex: 0 0 38%;
    }

    .contact-form-wrapper {
        flex: 1;
        max-width: 560px;
    }
}

/* ---- FAQ Section ---- */

.faq-section {
    padding: 4.5rem 0;
    background: var(--color-surface);
}

.faq-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid color-mix(in srgb, var(--color-text) 10%, transparent);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading), 'Sora', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
    line-height: 1.4;
    min-height: 44px;
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.2s;
    color: var(--color-text_muted);
}

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

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

.faq-answer p {
    font-size: 0.9375rem;
    color: var(--color-text_muted);
    line-height: 1.7;
    max-width: 620px;
}

.faq-cta {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid color-mix(in srgb, var(--color-text) 10%, transparent);
}

.faq-cta p {
    font-size: 1rem;
    color: var(--color-text_muted);
    margin-bottom: 1rem;
}

.faq-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .faq-section {
        padding: 6rem 0;
    }
}
