/* ===========================
   Help & Support Page Styles
   (Authenticated Users Only)
=========================== */

/* Hero Section */
.help-hero-section {
    background: var(--bg-secondary);
    border-radius: 10px;
    padding: 60px 40px;
    margin-bottom: 40px;
    text-align: center;
    border: 1px solid var(--border-primary);
    box-shadow: 0px 4px 6px var(--shadow-light);
}

.help-hero-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.help-hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.help-feature-tour-btn {
    background-color: var(--brand-purple-dark);
    color: var(--white);
    border: none;
    border-radius: 5px;
    padding: 14px 28px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(190, 74, 252, 0.2);
}

.help-feature-tour-btn:hover {
    background-color: var(--brand-purple-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(190, 74, 252, 0.3);
}

.help-feature-tour-btn:active {
    transform: translateY(0);
}

/* Section Cards */
.help-section-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: 10px;
    box-shadow: 0px 4px 6px var(--shadow-light);
    padding: 32px;
    margin-bottom: 32px;
    transition: box-shadow 0.3s ease;
}

.help-section-card:hover {
    box-shadow: 0px 6px 12px var(--shadow-light);
}

.help-section-title {
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.help-section-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Bank Guides Section */
.help-bank-guide-item {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-secondary);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.help-bank-guide-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px var(--shadow-light);
    border-color: var(--brand-purple-light);
}

.help-bank-guide-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.help-bank-guide-name {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-primary);
}

.help-bank-guide-icon {
    font-size: 1.125rem;
    color: var(--brand-purple);
    transition: transform 0.2s ease;
}

.help-bank-guide-icon.expanded {
    transform: rotate(180deg);
}

.help-bank-guide-steps {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-secondary);
}

.help-bank-guide-steps ol {
    margin: 0;
    padding-left: 24px;
}

.help-bank-guide-steps li {
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.6;
}

.help-bank-guide-support-link {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-secondary);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.help-bank-guide-support-link a {
    color: var(--brand-purple);
    text-decoration: none;
    font-weight: 500;
}

.help-bank-guide-support-link a:hover {
    text-decoration: underline;
}

/* Contact Support Section */
.help-contact-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.help-contact-btn {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: 5px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-primary);
}

.help-contact-btn:hover {
    background-color: var(--bg-secondary);
    border-color: var(--brand-purple);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px var(--shadow-light);
}

.help-contact-btn-primary {
    background-color: var(--brand-purple-dark);
    color: var(--white);
    border-color: var(--brand-purple-dark);
}

.help-contact-btn-primary:hover {
    background-color: var(--brand-purple-hover);
    border-color: var(--brand-purple-hover);
    color: var(--white);
}

.help-contact-btn-icon {
    font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .help-hero-section {
        padding: 40px 24px;
    }
    
    .help-hero-title {
        font-size: 1.75rem;
    }
    
    .help-hero-subtitle {
        font-size: 1rem;
    }
    
    .help-section-card {
        padding: 24px;
    }
    
    .help-section-title {
        font-size: 1.5rem;
    }
    
    .help-contact-buttons {
        flex-direction: column;
    }
    
    .help-contact-btn {
        width: 100%;
        justify-content: center;
    }
}

