@import url('styles.css');

/* Hero Section */
.help-hero {
    padding: 5rem 0;
    background: var(--bg-secondary);
    text-align: center;
}

.help-title {
    font-size: 3rem;
    font-weight: 800;
}

.help-subtitle {
    max-width: 700px;
    margin: 1rem auto;
    color: var(--text-secondary);
}

/* Search Bar */
.help-search-box {
    max-width: 600px;
    margin: 2rem auto 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    padding: 1rem 1.2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.help-search-box i {
    color: var(--text-light);
    margin-right: 1rem;
}

.help-search-box input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    padding: 0.5rem;
    font-size: 1rem;
    color: var(--text-primary);
}

/* Categories */
.section-header-help {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.help-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.help-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.help-icon {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    line-height: 70px;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--bg-secondary);
    border-radius: 12px;
    margin-bottom: 1rem;
    padding: 1rem 1.2rem;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.faq-answer {
    display: none;
    padding-top: 1rem;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active i {
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width:768px) {
    .help-title {
        font-size: 2.3rem;
    }
}
