/* ============================================================
   Help Center — AdiSom
   Builds on theme tokens from frest/assets/css/style.css
   (--saffron-gold, --ocean-blue, --warm-sand, --evening-slate)
   ============================================================ */

/* Hero */
.help-hero {
    min-height: 360px;
    padding-top: 150px;
}

/* Body */
.help-body {
    background: var(--warm-sand);
}

/* Topic cards */
.help-topic-card {
    background: #fff;
    border: 1px solid rgba(4, 4, 6, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.help-topic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(4, 4, 6, 0.1);
    border-color: rgba(255, 159, 28, 0.4);
}

.help-topic-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 1.2rem;
    color: var(--saffron-gold);
    background: rgba(255, 159, 28, 0.12);
}

/* FAQ groups */
.help-faq-group {
    scroll-margin-top: 110px;
}

.help-faq-group + .help-faq-group {
    margin-top: 2.5rem;
}

.help-faq-group h3 {
    font-size: 1.3rem;
}

/* Accordion */
.help-accordion .accordion-item {
    border: 1px solid rgba(4, 4, 6, 0.07);
    border-radius: 0.85rem !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: #fff;
}

.help-accordion .accordion-button {
    font-weight: 600;
    color: var(--ocean-blue);
    background: #fff;
    box-shadow: none;
}

.help-accordion .accordion-button:not(.collapsed) {
    color: var(--saffron-gold);
    background: rgba(255, 159, 28, 0.06);
}

.help-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.help-accordion .accordion-button::after {
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
}

.help-accordion .accordion-body {
    line-height: 1.85;
}

/* Contact card */
.help-contact-card {
    background: #fff;
    border: 1px solid rgba(4, 4, 6, 0.06);
    position: sticky;
    top: 100px;
}

.help-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--saffron-gold);
    background: rgba(255, 159, 28, 0.12);
}

@media (max-width: 991.98px) {
    .help-contact-card {
        position: static;
        top: auto;
    }
}

@media (max-width: 575.98px) {
    .help-hero {
        min-height: 320px;
    }
}
