/* Help Center Page Specific Styles */

/* Hero Section */
.help-hero {
    padding: 120px 40px 60px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.help-hero-title {
    font-family: 'Segoe UI Black', sans-serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.help-hero-title span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.help-hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Search Box */
.help-search {
    max-width: 500px;
    margin: 0 auto 40px;
    position: relative;
}

.search-box {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.search-box:focus {
    outline: none;
    border-color: rgba(74, 158, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
    box-shadow:
        0 4px 20px rgba(74, 158, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.search-box::placeholder {
    color: var(--text-tertiary);
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
}

/* Quick Links */
.help-quick-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.quick-link:hover {
    background: rgba(74, 158, 255, 0.08);
    border-color: rgba(74, 158, 255, 0.2);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(74, 158, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.quick-link i {
    font-size: 16px;
}

/* Support Status */
.support-status {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}

.status-icon {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status-online {
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    animation: pulse-status 2s infinite;
}

.status-busy {
    background: #f59e0b;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

@keyframes pulse-status {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Help Content Layout */
.help-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 60px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Sidebar */
.help-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    z-index: 10;
    pointer-events: auto;
}

.sidebar-nav {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        inset 0 0 20px rgba(255, 255, 255, 0.01);
}

.sidebar-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.categories-list {
    list-style: none;
}

.category-item {
    margin-bottom: 4px;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.category-link:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
}

.category-link.active {
    background: rgba(74, 158, 255, 0.1);
    color: var(--primary);
}

.category-link i {
    font-size: 14px;
    width: 20px;
}

/* Live Chat Box */
.livechat-box {
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.06), rgba(123, 97, 255, 0.06));
    border: 1px solid rgba(74, 158, 255, 0.15);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 0 30px rgba(74, 158, 255, 0.03);
    position: relative;
    z-index: 5;
}

.livechat-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 16px;
}

.livechat-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.livechat-desc {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.livechat-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.3s ease;
    position: relative;
    z-index: 100;
    cursor: pointer;
    pointer-events: auto;
}

.livechat-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 158, 255, 0.3);
}

/* Main Help Content */
.help-main {
    min-width: 0;
}

.help-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        inset 0 0 20px rgba(255, 255, 255, 0.01);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.section-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 158, 255, 0.1);
    border-radius: 10px;
    font-size: 20px;
    color: var(--primary);
}

.section-title {
    font-size: 22px;
    font-weight: 700;
}

.section-content {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.section-content p {
    margin-bottom: 16px;
}

.section-content ul {
    margin: 16px 0;
    padding-left: 20px;
}

.section-content li {
    margin-bottom: 10px;
}

.section-content a {
    color: var(--primary);
}

.section-content strong {
    color: var(--text-primary);
}

/* FAQ List */
.faq-list {
    margin-top: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.faq-question {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

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

.faq-question i {
    font-size: 12px;
    color: var(--text-tertiary);
    transition: transform 0.3s ease;
}

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

.faq-answer-content {
    padding: 0 20px 20px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-answer-content code {
    background: rgba(74, 158, 255, 0.15);
    color: var(--primary);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 12px;
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

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

/* Contact Options */
.contact-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contact-card:hover {
    transform: translateY(-3px);
    border-color: rgba(74, 158, 255, 0.2);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.25),
        0 0 20px rgba(74, 158, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 16px;
}

.contact-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-fastest {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.badge-email {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.contact-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-desc {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    font-family: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.livechat-contact {
    background: rgba(74, 158, 255, 0.1);
    color: var(--primary);
    border: 1px solid rgba(74, 158, 255, 0.3);
}

.email-contact {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.contact-link:hover {
    transform: translateY(-2px);
}

/* Chat Embed Section */
.chat-embed {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 40px;
}

.chat-embed-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.chat-embed-icon {
    font-size: 24px;
    color: var(--primary);
}

.chat-embed-title {
    font-size: 24px;
    font-weight: 700;
}

.embed-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.custom-chat-interface {
    text-align: center;
}

.chat-header {
    background: rgba(74, 158, 255, 0.1);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-header-icon {
    font-size: 18px;
    color: var(--primary);
}

.chat-header-text {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

.chat-body {
    padding: 60px 40px;
}

.chat-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.chat-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.chat-description {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.chat-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(74, 158, 255, 0.4);
}

.chat-footer {
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    font-size: 12px;
    color: var(--text-tertiary);
}

/* Responsive */
@media (max-width: 900px) {
    .help-content {
        grid-template-columns: 1fr;
    }

    .help-sidebar {
        position: static;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .help-hero {
        padding: 100px 20px 40px;
    }

    .help-hero-title {
        font-size: 32px;
    }

    .help-content {
        padding: 0 20px 40px;
    }

    .help-section {
        padding: 20px;
    }
}
