/* ===========================================
   HELP PAGE — Vitasso Yardım
   =========================================== */

/* Hero */
.help-hero {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    padding: 48px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.help-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,.05) 0%, transparent 40%);
    pointer-events: none;
}
.help-hero h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    position: relative;
}
.help-hero p {
    font-size: 16px;
    opacity: .85;
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}
.help-search-wrap {
    position: relative;
    max-width: 520px;
    margin: 24px auto 0;
}
.help-search {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    background: rgba(255,255,255,.95);
    color: var(--text);
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.help-search::placeholder { color: var(--text-light); }
.help-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--text-muted);
    pointer-events: none;
}

/* Categories */
.help-categories {
    padding: 48px 0;
}
.help-categories h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    margin-bottom: 32px;
}
.help-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.help-cat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: all .25s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
.help-cat-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    transform: translateY(-4px);
}
.help-cat-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
}
.help-cat-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}
.help-cat-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Help Topics */
.help-topics {
    padding: 0 0 48px;
}
.help-topic-section {
    margin-bottom: 32px;
}
.help-topic-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.help-topic-section h2 i {
    color: var(--accent);
    font-size: 22px;
}

/* Accordion */
.help-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.help-accordion-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .2s;
}
.help-accordion-item:hover {
    border-color: var(--accent-light);
}
.help-accordion-item.open {
    border-color: var(--accent);
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.help-accordion-header {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    gap: 12px;
    user-select: none;
    transition: background .2s;
}
.help-accordion-header:hover {
    background: var(--bg);
}
.help-accordion-header i {
    font-size: 18px;
    color: var(--accent);
    transition: transform .3s ease;
    flex-shrink: 0;
}
.help-accordion-item.open .help-accordion-header i {
    transform: rotate(180deg);
}
.help-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.help-accordion-content {
    padding: 0 20px 18px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}
.help-accordion-content ul {
    padding-left: 20px;
    margin: 8px 0;
}
.help-accordion-content ul li {
    list-style: disc;
    margin-bottom: 4px;
}
.help-accordion-content ol {
    padding-left: 20px;
    margin: 8px 0;
}
.help-accordion-content ol li {
    list-style: decimal;
    margin-bottom: 4px;
}

/* CTA Section */
.help-cta {
    padding: 0 0 48px;
}
.help-cta-card {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    border-radius: var(--radius);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.help-cta-card::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
    pointer-events: none;
}
.help-cta-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,.18);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    color: #fff;
}
.help-cta-body {
    flex: 1;
    min-width: 0;
}
.help-cta-body h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
    color: #fff;
}
.help-cta-body p {
    font-size: 13px;
    opacity: .85;
    margin: 0;
    color: #fff;
}
.help-cta-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    position: relative;
}
.help-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    transition: all .2s;
    text-decoration: none;
    white-space: nowrap;
}
.help-cta-btn.primary {
    background: #fff;
    color: var(--accent-dark);
}
.help-cta-btn.primary:hover {
    background: rgba(255,255,255,.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.help-cta-btn.secondary {
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,.3);
}
.help-cta-btn.secondary:hover {
    background: rgba(255,255,255,.25);
    transform: translateY(-1px);
}

/* Filterable */
.help-hidden { display: none !important; }

/* Responsive */
@media (max-width: 992px) {
    .help-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .help-cta-card { flex-wrap: wrap; }
    .help-cta-actions { width: 100%; justify-content: flex-start; }
}
@media (max-width: 768px) {
    .help-hero { padding: 32px 0; }
    .help-hero h1 { font-size: 24px; }
    .help-cat-grid { grid-template-columns: 1fr; }
    .help-cta-card { flex-direction: column; text-align: center; padding: 24px; }
    .help-cta-actions { flex-direction: column; align-items: stretch; }
    .help-cta-btn { justify-content: center; }
}
