/* Support Page Styles */

.support-hero {
    padding: 10rem 2rem 4rem;
    text-align: center;
}

.support-hero .section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

/* FAQ Section */
.faq-section {
    padding: 0 0 var(--section-padding);
}

.faq-heading {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-category {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.faq-category-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold-light);
}

.faq-item {
    border-bottom: 1px solid var(--mist);
}

.faq-item:last-child {
    border-bottom: none;
}

.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;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: color 0.2s ease;
}

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

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

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: var(--teal);
}

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

.faq-item.open .faq-answer {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--teal);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--mist);
}

.contact-card {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background: white;
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    color: var(--teal);
}

.contact-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.contact-desc {
    font-size: 1rem;
    color: var(--slate);
    margin-bottom: 2rem;
}

.contact-btn {
    display: inline-block;
    background: var(--teal);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-email {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--stone);
}

/* Responsive */
@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .support-hero {
        padding: 8rem 1.5rem 3rem;
    }

    .faq-category {
        padding: 1.5rem;
    }

    .contact-card {
        padding: 2rem;
    }
}
