/* FewSeatsLeft Help Center Styles */
.help-hero-gradient {
    background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 45%),
                radial-gradient(circle at 80% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 45%),
                radial-gradient(circle at 50% 80%, rgba(236, 72, 153, 0.10) 0%, transparent 50%),
                #0f172a;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
}

.help-search-input-box {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.help-search-input-box:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.25);
}

.help-card-hover {
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease, border-color 0.2s ease;
    border: 1px solid #e2e8f0;
    text-decoration: none !important;
}

.help-card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.help-category-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}

.help-card-hover:hover .help-category-icon-box {
    transform: scale(1.08);
}

.help-article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #334155;
}

.help-article-content h4 {
    color: #0f172a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.help-article-content ul, .help-article-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.help-article-content li {
    margin-bottom: 0.5rem;
}

.help-article-content p {
    margin-bottom: 1.25rem;
}

.help-sidebar-sticky {
    position: sticky;
    top: 100px;
}

.help-breadcrumb-link {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.15s ease;
}

.help-breadcrumb-link:hover {
    color: #3b82f6;
}

.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1050;
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin-top: 8px;
    max-height: 420px;
    overflow-y: auto;
    border: 1px solid #e2e8f0;
}

.search-result-item {
    display: block;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
    color: #1e293b;
    transition: background 0.15s ease;
}

.search-result-item:hover {
    background: #f8fafc;
}

.search-result-item:last-child {
    border-bottom: none;
}
