/* Support Page Styling */
.support-page {
    padding: 60px 0 100px;
    background: var(--bg-light);
    min-height: calc(100vh - 200px);
}

.support-header {
    text-align: center;
    margin-bottom: 40px;
}

.support-search {
    max-width: 600px;
    margin: 0 auto 60px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    font-size: 16px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    background: var(--white);
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    color: var(--text-light);
    pointer-events: none;
}

.support-categories {
    margin-bottom: 80px;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.category-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.category-icon svg {
    width: 32px;
    height: 32px;
}

.category-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.category-card p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

.popular-articles {
    margin-bottom: 80px;
}

.articles-list {
    max-width: 900px;
    margin: 0 auto;
}

.article-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 16px;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.article-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-lg);
}

.article-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.article-content {
    flex: 1;
}

.article-content h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.article-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.article-arrow {
    width: 24px;
    height: 24px;
    color: var(--text-light);
    flex-shrink: 0;
}

.contact-support {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    border-radius: 16px;
    color: var(--white);
}

.contact-support h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.contact-support p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.support-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--white);
    color: var(--primary-dark);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.support-btn svg {
    width: 20px;
    height: 20px;
}

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

    .section-title {
        font-size: 28px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .article-item {
        flex-direction: column;
        text-align: center;
    }

    .article-arrow {
        display: none;
    }

    .contact-support {
        padding: 40px 24px;
    }

    .contact-support h2 {
        font-size: 28px;
    }

    .support-options {
        flex-direction: column;
        align-items: center;
    }

    .support-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }

    .contact-support h2 {
        font-size: 24px;
    }

    .contact-support p {
        font-size: 16px;
    }
}

