/* Help Center Modal Styling */
.help-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.help-modal-card {
    background: #ffffff;
    border-radius: 1.5rem;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    box-sizing: border-box;
}

.help-modal-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 1.25rem;
}

.help-modal-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.help-modal-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 1rem;
    background: #eff6ff;
    color: #053E99;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    border: 1px solid #dbeafe;
}

.help-modal-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
}

.help-modal-subtitle {
    margin: 0.15rem 0 0 0;
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 500;
}

.help-modal-close-icon {
    background: #f1f5f9;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #64748b;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.help-modal-close-icon:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* Contact Channels Grid */
.help-contact-channels {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.help-channel-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.2s ease;
    background: #f8fafc;
}

.help-channel-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.channel-icon {
    width: 42px;
    height: 42px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.channel-whatsapp {
    border-color: #dcfce7;
}

.channel-whatsapp .channel-icon {
    background: #dcfce7;
    color: #16a34a;
}

.channel-phone {
    border-color: #dbeafe;
}

.channel-phone .channel-icon {
    background: #dbeafe;
    color: #2563eb;
}

.channel-email {
    border-color: #fae8ff;
}

.channel-email .channel-icon {
    background: #fae8ff;
    color: #c026d3;
}

.channel-info {
    flex: 1;
}

.channel-info h4 {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
}

.channel-info p {
    margin: 0.15rem 0 0 0;
    font-size: 0.78rem;
    color: #64748b;
}

.channel-arrow {
    color: #94a3b8;
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.help-channel-card:hover .channel-arrow {
    transform: translateX(3px);
    color: #0f172a;
}

/* FAQ Accordion Section */
.help-faq-section {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid #e2e8f0;
}

.faq-section-title {
    margin: 0 0 0.85rem 0;
    font-size: 0.95rem;
    font-weight: 800;
    color: #053E99;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.help-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 0.75rem 0.95rem;
    background: none;
    border: none;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    cursor: pointer;
}

.faq-chevron {
    font-size: 0.75rem;
    color: #64748b;
    transition: transform 0.25 ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: #053E99;
}

.faq-answer {
    display: none;
    padding: 0 0.95rem 0.75rem 0.95rem;
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.5;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
}

.help-modal-footer {
    margin-top: 1.25rem;
    text-align: right;
}

.help-close-btn {
    background: #053E99;
    color: #ffffff;
    border: none;
    padding: 0.55rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.help-close-btn:hover {
    background: #D91B24;
}
