/* =========================================
   HELP CENTER PAGE STYLES
   ========================================= */

.help-hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(11, 160, 38, 0.1) 0%, rgba(15, 59, 125, 0.1) 100%);
}

.help-hero h1 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 48px;
    font-weight: 800;
}

body.light .help-hero h1 {
    color: #333;
}

.help-hero p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 40px;
}

body.light .help-hero p {
    color: #666;
}

.search-box {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0;
    background: rgba(11, 160, 38, 0.1);
    border: 2px solid rgba(11, 160, 38, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 15px;
    outline: none;
}

.search-input::placeholder {
    color: #999;
}

body.light .search-input {
    color: #333;
}

body.light .search-input::placeholder {
    color: #ccc;
}

.search-btn {
    padding: 15px 25px;
    background: #0ba026;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #099820;
}

/* =========================================
   CATEGORIES SECTION
   ========================================= */

.help-categories {
    padding: 100px 0;
}

.help-categories h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 15px;
    font-size: 42px;
}

body.light .help-categories h2 {
    color: #333;
}

.section-subtitle {
    text-align: center;
    color: #ccc;
    font-size: 16px;
    margin-bottom: 60px;
}

body.light .section-subtitle {
    color: #666;
}

.category-card {
    background: rgba(11, 160, 38, 0.05);
    border: 1px solid rgba(11, 160, 38, 0.1);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    border-color: #0ba026;
    background: rgba(11, 160, 38, 0.12);
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(11, 160, 38, 0.15);
}

.category-icon {
    font-size: 48px;
    color: #0ba026;
    margin-bottom: 20px;
    display: inline-block;
}

.category-card h4 {
    color: #fff;
    font-size: 20px;
    margin: 15px 0 10px 0;
    font-weight: 600;
}

body.light .category-card h4 {
    color: #333;
}

.category-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

body.light .category-card p {
    color: #666;
}

.category-link {
    display: inline-block;
    color: #0ba026;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-link:hover {
    color: #099820;
    transform: translateX(5px);
}

.category-link i {
    margin-left: 8px;
}

body.light .category-card {
    background: rgba(11, 160, 38, 0.02);
    border-color: rgba(11, 160, 38, 0.1);
}

body.light .category-card:hover {
    background: rgba(11, 160, 38, 0.08);
    box-shadow: 0 8px 25px rgba(11, 160, 38, 0.1);
}

/* =========================================
   FAQ SECTION
   ========================================= */

.help-faqs {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.help-faqs h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(11, 160, 38, 0.2);
}

body.light .help-faqs h2 {
    color: #333;
    border-bottom-color: rgba(11, 160, 38, 0.15);
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(11, 160, 38, 0.1);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(11, 160, 38, 0.2);
    box-shadow: 0 4px 12px rgba(11, 160, 38, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: rgba(11, 160, 38, 0.05);
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(11, 160, 38, 0.12);
}

body.light .faq-question {
    background: rgba(11, 160, 38, 0.03);
    color: #333;
}

body.light .faq-question:hover {
    background: rgba(11, 160, 38, 0.08);
}

.faq-question i {
    color: #0ba026;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-question span {
    text-align: left;
    flex: 1;
}

.faq-item.active .faq-question {
    background: rgba(11, 160, 38, 0.15);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

body.light .faq-item.active .faq-question {
    background: rgba(11, 160, 38, 0.1);
}

.faq-answer {
    display: none;
    padding: 20px;
    background: rgba(11, 160, 38, 0.02);
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
    border-top: 1px solid rgba(11, 160, 38, 0.1);
}

body.light .faq-answer {
    background: rgba(11, 160, 38, 0.01);
    color: #666;
    border-top-color: rgba(11, 160, 38, 0.1);
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.faq-answer p {
    margin: 0;
}

.faq-answer p:not(:last-child) {
    margin-bottom: 15px;
}

/* =========================================
   CONTACT SECTION
   ========================================= */

.help-contact {
    padding: 100px 0;
    text-align: center;
}

.help-contact h2 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 800;
}

body.light .help-contact h2 {
    color: #333;
}

.help-contact p {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 50px;
}

body.light .help-contact p {
    color: #666;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method {
    padding: 30px;
    background: rgba(11, 160, 38, 0.05);
    border: 1px solid rgba(11, 160, 38, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: #0ba026;
    background: rgba(11, 160, 38, 0.12);
    transform: translateY(-5px);
}

.contact-method i {
    font-size: 36px;
    color: #0ba026;
    margin-bottom: 15px;
    display: block;
}

.contact-method h4 {
    color: #fff;
    font-size: 18px;
    margin: 15px 0 10px 0;
    font-weight: 700;
}

body.light .contact-method h4 {
    color: #333;
}

.contact-method a,
.contact-method p {
    color: #ccc;
    font-size: 14px;
    margin: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method a:hover {
    color: #0ba026;
}

body.light .contact-method a,
body.light .contact-method p {
    color: #666;
}

body.light .contact-method {
    background: rgba(11, 160, 38, 0.02);
    border-color: rgba(11, 160, 38, 0.1);
}

body.light .contact-method:hover {
    background: rgba(11, 160, 38, 0.08);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary.btn-lg {
    background: linear-gradient(90deg, #0ba026 0%, #099820 100%);
    color: #fff;
    border: none;
}

.btn-primary.btn-lg:hover {
    background: linear-gradient(90deg, #099820 0%, #0ba026 100%);
    box-shadow: 0 8px 25px rgba(11, 160, 38, 0.3);
    transform: translateY(-2px);
}

.btn-outline.btn-lg {
    background-color: transparent;
    border: 2px solid #0ba026;
    color: #0ba026;
}

.btn-outline.btn-lg:hover {
    background-color: #0ba026;
    color: #fff;
    box-shadow: 0 8px 25px rgba(11, 160, 38, 0.3);
}

/* =========================================
   RESPONSIVE STYLES
   ========================================= */

@media (max-width: 768px) {
    .help-hero {
        padding: 50px 0;
    }

    .help-hero h1 {
        font-size: 32px;
    }

    .help-hero p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .search-box {
        max-width: 100%;
    }

    .help-categories {
        padding: 60px 0;
    }

    .help-categories h2 {
        font-size: 28px;
    }

    .help-faqs {
        padding: 60px 0;
    }

    .help-faqs h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 15px;
        font-size: 14px;
    }

    .faq-answer {
        padding: 15px;
        font-size: 13px;
    }

    .help-contact {
        padding: 60px 0;
    }

    .help-contact h2 {
        font-size: 28px;
    }

    .contact-methods {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-lg {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .help-hero h1 {
        font-size: 24px;
    }

    .help-hero p {
        font-size: 14px;
    }

    .search-input {
        padding: 12px 15px;
        font-size: 14px;
    }

    .search-btn {
        padding: 12px 15px;
    }

    .faq-question span {
        font-size: 14px;
    }

    .contact-method h4 {
        font-size: 16px;
    }
}
