﻿/* Help Page - Sleek Minimal Design */
@import url('index.css');

body {
    opacity: 1 !important;
}

/* Ensure header is visible */
header {
    position: relative;
    z-index: 1000;
}

.help-hero {
    background: transparent;
    padding: 100px 2rem 60px;
    text-align: center;
    border-top: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, #ff4824, #ff0b4e, transparent) 1;
}

.help-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.help-hero .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #e0e0e0;
    letter-spacing: -0.02em;
}

.help-hero .hero-subtitle {
    font-size: 1rem;
    color: #888;
    margin-bottom: 2rem;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    color: #e0e0e0;
    font-size: 1rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.search-box input:focus {
    outline: none;
    border-color: #ff4824;
    background: rgba(255, 255, 255, 0.03);
}

.search-box svg {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
}

.quick-links {
    padding: 3rem 0;
}

.quick-links .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 2rem;
    text-align: center;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.quick-link-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    padding: 2rem;
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff4824, #ff0b4e, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-link-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.quick-link-card:hover::before {
    opacity: 1;
}

.quick-link-card svg {
    color: #ff4824;
    margin-bottom: 1rem;
}

.quick-link-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.quick-link-card p {
    font-size: 0.875rem;
    color: #888;
}

.faq-section {
    padding: 3rem 0;
}

.faq-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.category-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    background: transparent;
    border: none;
    color: inherit;
    text-align: left;
    font-family: inherit;
    transition: none;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.01);
}

.faq-question:active {
    transform: none;
}

.faq-question span {
    font-size: 1.125rem;
    font-weight: 500;
    color: #e0e0e0;
}

.faq-icon {
    color: #ff4824;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p,
.faq-answer ul {
    padding: 0 1.5rem 1.5rem;
    color: #888;
    line-height: 1.7;
    margin: 0;
}

.faq-answer ul {
    list-style: none;
    padding-left: 3rem;
}

.faq-answer ul li {
    margin-bottom: 0.5rem;
    position: relative;
}

.faq-answer ul li::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    color: #ff4824;
}

.faq-answer a {
    color: #ff4824;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-answer strong {
    color: #e0e0e0;
}

.contact-support {
    padding: 3rem 0 4rem;
}

.contact-support .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-support-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-support-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff4824, #ff0b4e, transparent);
    opacity: 0.5;
}

.contact-support-box h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.contact-support-box p {
    color: #888;
    margin-bottom: 1.5rem;
}

.btn-contact {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: rgba(255, 72, 36, 0.1);
    color: #ff4824;
    border: 1px solid #ff4824;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-contact:hover {
    background: #ff4824;
    color: white;
}

/* Help CTA Section */
.help-cta {
    padding: 3rem 0 4rem;
    background: rgba(255, 255, 255, 0.01);
}

.help-cta .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff4824, #ff0b4e, transparent);
    opacity: 0.5;
}

.cta-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #888;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid;
    min-width: 140px;
    text-align: center;
}

.btn-primary {
    background: rgba(255, 72, 36, 0.1);
    color: #ff4824;
    border-color: #ff4824;
}

.btn-primary:hover {
    background: #ff4824;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #e0e0e0;
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .help-hero .hero-title {
        font-size: 2rem;
    }
    
    .quick-links .container,
    .faq-section .container,
    .contact-support .container,
    .help-cta .container {
        padding: 0 1rem;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question span {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 200px;
    }
    
    .cta-content {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
}
