/* Support Page Styles */
.support-hero {
    background: linear-gradient(135deg, var(--wfs-dark) 0%, #0f0f0f 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.support-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--wfs-yellow), transparent);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Support Content */
.support-content {
    padding: 80px 0;
    background: var(--wfs-dark);
}

/* Support Intro */
.support-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.support-intro p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.support-links {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.support-links a {
    color: var(--wfs-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.support-links a:hover {
    color: #f4d03f;
    text-decoration: underline;
}

/* Quick FAQ */
.quick-faq {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(229, 199, 56, 0.2);
    border-radius: 12px;
    padding: 50px 40px;
    margin-top: 80px;
}

.quick-faq h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--wfs-yellow);
    margin: 0 0 40px 0;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: rgba(229, 199, 56, 0.03);
    border: 1px solid rgba(229, 199, 56, 0.1);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(229, 199, 56, 0.05);
    border-color: rgba(229, 199, 56, 0.2);
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--wfs-yellow);
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.faq-link {
    display: inline-block;
    color: var(--wfs-yellow);
    text-decoration: none;
    font-weight: 600;
    margin-top: 12px;
    transition: all 0.3s;
}

.faq-link:hover {
    color: #f4d03f;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .support-hero {
        padding: 80px 0 60px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .support-content {
        padding: 60px 0;
    }

    .support-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .support-card {
        padding: 30px;
    }

    .response-times {
        padding: 40px 25px;
    }

    .response-times h2 {
        font-size: 1.5rem;
    }

    .response-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .response-time {
        font-size: 1.5rem;
    }

    .quick-faq {
        padding: 40px 25px;
    }

    .quick-faq h2 {
        font-size: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-item h3 {
        font-size: 1rem;
    }
}
