/**
 * Help Center Styles
 * Dükkan360 Yardım Merkezi
 */

.help-search-section {
    max-width: 800px;
    margin: 0 auto;
}

.help-search-box {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.help-search-box i {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 1.25rem;
}

.help-search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
}

.help-search-box input:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.help-categories {
    margin-top: 3rem;
}

.help-category-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid #f3f4f6;
    height: 100%;
}

.help-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #7c3aed;
}

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.help-category-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.help-category-card p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.help-articles {
    margin-top: 4rem;
}

.help-section {
    margin-bottom: 4rem;
}

.help-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.help-article-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.help-article-item {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.help-article-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #7c3aed;
}

.article-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.article-content {
    flex: 1;
}

.article-content h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.article-content > p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.article-steps {
    background: #f9fafb;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.article-steps ol {
    margin: 0;
    padding-left: 1.5rem;
}

.article-steps li {
    color: #4b5563;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.article-steps li:last-child {
    margin-bottom: 0;
}

.help-contact-section {
    margin-top: 4rem;
}

.help-contact-card {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.3);
}

.help-contact-card h4 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.help-contact-card p {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.help-contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.help-contact-buttons .btn {
    min-width: 180px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.help-contact-buttons .btn-primary {
    background: #ffffff;
    color: #7c3aed;
    border: 2px solid #ffffff;
}

.help-contact-buttons .btn-primary:hover {
    background: #f3f4f6;
    color: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.help-contact-buttons .btn-outline-primary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.help-contact-buttons .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Search Results */
.help-section.hidden {
    display: none;
}

.help-article-item.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .help-search-box {
        padding: 1rem;
    }

    .help-category-card {
        padding: 1.5rem;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .help-article-item {
        flex-direction: column;
        padding: 1.5rem;
    }

    .article-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .help-contact-card {
        padding: 2rem 1.5rem;
    }

    .help-contact-buttons {
        flex-direction: column;
    }

    .help-contact-buttons .btn {
        width: 100%;
    }
}

