/* ============================================
   Help Center Styles
   ============================================ */

.help-hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}

.help-hero .page-hero-content h1 {
    color: white;
}

.help-hero .page-hero-content h1 .highlight {
    background: linear-gradient(135deg, #fcd34d, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.help-hero .page-hero-content p {
    color: rgba(255,255,255,0.9);
}

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

.search-box i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.search-box input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border: none;
    border-radius: var(--radius);
    font-size: 1.05rem;
    background: rgba(255,255,255,0.95);
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.search-box input::placeholder {
    color: var(--text-light);
}

/* Help Categories */
.help-section {
    padding: 60px 0 80px;
    background: var(--bg-secondary);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.help-category {
    background: var(--bg-primary);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.help-category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(124,58,237,0.1));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.help-category h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.help-articles {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.help-articles li {
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}

.help-articles li:last-child {
    border-bottom: none;
}

.help-articles a {
    color: var(--text-secondary);
    transition: var(--transition);
    display: block;
    padding: 4px 0;
    font-size: 0.95rem;
}

.help-articles a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.help-view-all {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    transition: var(--transition);
}

.help-view-all:hover {
    transform: translateX(4px);
}

/* Help Contact */
.help-contact {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius);
    padding: 50px;
    text-align: center;
    color: white;
    margin-top: 40px;
}

.help-contact-content i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.help-contact-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.help-contact-content p {
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.help-contact .btn-primary {
    background: white;
    color: var(--primary) !important;
    padding: 12px 30px;
}

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

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    .help-category {
        background: #1a1a2e;
        border: 1px solid var(--border);
    }
    
    .help-articles li {
        border-color: var(--border);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .help-hero {
        padding: 60px 0 40px;
    }
    
    .help-section {
        padding: 40px 0 60px;
    }
    
    .help-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .help-contact {
        padding: 30px 20px;
    }
    
    .help-contact-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .search-box input {
        padding: 12px 16px 12px 40px;
        font-size: 0.95rem;
    }
    
    .help-category {
        padding: 20px;
    }
}