/* Help Center Styles */

/* Hero Section */
.help-hero-section {
    background-color: var(--light-bg);
    padding: 8rem 0 5rem;
    margin-top: 80px;
    text-align: center;
}

.help-hero-section h1 {
    font-size: 3em;
    margin-bottom: 1rem;
    color: var(--text-black);
    font-weight: 700;
}

.help-hero-section p {
    font-size: 1.1em;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: 8px;
    padding: 0 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-box svg {
    flex-shrink: 0;
}

.search-box input {
    flex: 1;
    border: none;
    padding: 1rem 0 1rem 1rem;
    font-size: 1em;
    outline: none;
    font-family: 'Roboto', sans-serif;
}

.search-box input::placeholder {
    color: #939393;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.faq-category {
    margin-bottom: 4rem;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category h2 {
    font-size: 2em;
    margin-bottom: 2rem;
    color: var(--text-black);
    font-weight: 700;
}

.faq-list {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

.faq-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e5e5;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    opacity: 0.7;
}

.faq-item span {
    font-size: 1.05em;
    color: var(--text-black);
    font-weight: 400;
}

.faq-item svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item:hover svg {
    transform: translateX(5px);
}

.faq-item.hidden-item {
    display: none;
}

.show-all-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: #0066FF;
    font-weight: 500;
    font-size: 1em;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.show-all-link:hover {
    opacity: 0.7;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.contact-card {
    background-color: var(--dark-bg);
    border-radius: 15px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 3rem;
    align-items: center;
}

.contact-content h2 {
    font-size: 2em;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-content p {
    color: var(--white);
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: var(--white);
    color: var(--text-black);
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-contact svg path {
    stroke: var(--text-black);
}

.btn-contact svg {
    transition: transform 0.3s ease;
}

.btn-contact:hover svg {
    transform: translateX(3px);
}

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image img {
    width: 150px;
    height: auto;
}

/* Search Results */
.search-results {
    margin-bottom: 3rem;
}

.search-results h2 {
    font-size: 2em;
    margin-bottom: 2rem;
    color: var(--text-black);
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: var(--text-dark);
    font-size: 1.1em;
}

.search-results mark {
    background-color: #fff3cd;
    padding: 2px 4px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .help-hero-section {
        padding: 6rem 0 4rem;
    }

    .help-hero-section h1 {
        font-size: 2.2em;
    }

    .faq-category h2 {
        font-size: 1.6em;
    }

    .contact-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }

    .contact-content h2 {
        font-size: 1.6em;
    }

    .contact-image {
        display: none;
    }

    .btn-contact {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .help-hero-section h1 {
        font-size: 1.8em;
    }

    .search-box {
        padding: 0 1rem;
    }

    .faq-item span {
        font-size: 0.95em;
    }
}
