/* أنماط خاصة بصفحة مركز المساعدة */
.help-center-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.help-header {
    text-align: center;
    margin-bottom: 50px;
}

.help-header h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.help-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.help-search {
    max-width: 700px;
    margin: 0 auto 50px;
    position: relative;
}

.help-search input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 50px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-size: 1rem;
    background-color: var(--card-bg);
    color: var(--text-color);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.help-search input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(58, 134, 255, 0.1);
}

.help-search i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.2rem;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.help-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.help-card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(58, 134, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.help-card-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.help-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.help-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.help-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-card ul li {
    margin-bottom: 10px;
}

.help-card ul li a {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.help-card ul li a:hover {
    color: var(--primary-dark);
    transform: translateX(-5px);
}

.help-card ul li a i {
    margin-left: 8px;
    font-size: 0.8rem;
}

.help-card .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
}

.help-card .btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.help-topics {
    margin-bottom: 60px;
}

.help-topics h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-color);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.topic-item {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.topic-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.topic-item a {
    display: flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
}

.topic-item a i {
    margin-left: 10px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.topic-item a:hover {
    color: var(--primary-color);
}

.help-contact {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.help-contact h2 {
    margin-bottom: 20px;
    color: var(--text-color);
}

.help-contact p {
    margin-bottom: 30px;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-option {
    background-color: var(--background-color);
    border-radius: 8px;
    padding: 20px;
    min-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-option i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-option h4 {
    margin-bottom: 10px;
    color: var(--text-color);
}

.contact-option p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.contact-option a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-option a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .help-header h1 {
        font-size: 2rem;
    }
    
    .help-grid {
        grid-template-columns: 1fr;
    }
    
    .help-card {
        padding: 20px;
    }
    
    .help-contact {
        padding: 30px 20px;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-option {
        width: 100%;
        max-width: 300px;
    }
}

