/* Support Page Specific Styles */
.support-card {
    background: white;
    border: 1px solid var(--color-border);
    padding: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

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

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--color-muted);
    padding: 0;
}

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

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--color-border);
    background: white;
    color: var(--color-muted);
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    border-color: var(--color-text);
    color: var(--color-text);
}

.tab-btn.active {
    background: var(--color-text);
    color: white;
    border-color: var(--color-text);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Support page animations */
.support-card {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.support-card:nth-child(1) { animation-delay: 0.1s; }
.support-card:nth-child(2) { animation-delay: 0.2s; }
.support-card:nth-child(3) { animation-delay: 0.3s; }
.support-card:nth-child(4) { animation-delay: 0.4s; }