/* =====================================================
   HELP PAGE 2100 - Ultra Futuristic Design
   ===================================================== */

/* Hero Section 2100 */
.help-hero-2100 {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    overflow: hidden;
}

.help-hero-2100 .hero-bg-2100 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.help-hero-2100 .hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 8s ease-in-out infinite;
}

.help-hero-2100 .orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.4), rgba(5, 150, 105, 0.2));
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.help-hero-2100 .orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.2));
    bottom: -100px;
    left: -100px;
    animation-delay: -3s;
}

.help-hero-2100 .orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(217, 119, 6, 0.2));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -5s;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.help-hero-2100 .hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.help-hero-2100 .hero-container-2100 {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.help-hero-2100 .breadcrumb-2100 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.help-hero-2100 .breadcrumb-2100 a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.help-hero-2100 .breadcrumb-2100 a:hover {
    color: #10b981;
}

.help-hero-2100 .breadcrumb-2100 .separator {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
}

.help-hero-2100 .breadcrumb-2100 .current {
    color: rgba(255,255,255,0.9);
}

.help-hero-2100 .hero-badge-2100 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #10b981;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.help-hero-2100 .hero-badge-2100 i {
    font-size: 1.1rem;
}

.help-hero-2100 .hero-title-2100 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.help-hero-2100 .hero-title-2100 span {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.help-hero-2100 .hero-description-2100 {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Box 2100 */
.help-search-2100 {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.help-search-2100:focus-within {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.help-search-2100 input {
    flex: 1;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.05rem;
}

.help-search-2100 input::placeholder {
    color: rgba(255,255,255,0.4);
}

.help-search-2100 input:focus {
    outline: none;
}

.help-search-2100 button {
    padding: 20px 30px;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.help-search-2100 button:hover {
    background: linear-gradient(135deg, #059669, #047857);
}

/* Categories Section 2100 */
.help-categories-2100 {
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.5) 100%);
}

.help-categories-2100 .section-container-2100 {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header-2100 {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge-2100 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #10b981;
    margin-bottom: 20px;
}

.section-title-2100 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.section-title-2100 span {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc-2100 {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Categories Grid */
.categories-grid-2100 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.category-card-2100 {
    position: relative;
    padding: 35px 30px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.category-card-2100::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card-2100:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.06);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.category-card-2100:hover::before {
    transform: scaleX(1);
}

.category-icon-2100 {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #10b981;
    transition: all 0.4s ease;
}

.category-card-2100:hover .category-icon-2100 {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(59, 130, 246, 0.3));
}

.category-card-2100:nth-child(2) .category-icon-2100 {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    color: #3b82f6;
}

.category-card-2100:nth-child(3) .category-icon-2100 {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    color: #8b5cf6;
}

.category-card-2100:nth-child(4) .category-icon-2100 {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.2));
    color: #f59e0b;
}

.category-card-2100:nth-child(5) .category-icon-2100 {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(239, 68, 68, 0.2));
    color: #ec4899;
}

.category-card-2100:nth-child(6) .category-icon-2100 {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(245, 158, 11, 0.2));
    color: #ef4444;
}

.category-card-2100 h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.category-card-2100 p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-articles-2100 {
    font-size: 0.85rem;
    color: rgba(16, 185, 129, 0.8);
    font-weight: 500;
}

/* FAQ Section 2100 */
.faq-section-2100 {
    padding: 100px 20px;
    position: relative;
}

.faq-section-2100 .section-container-2100 {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list-2100 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item-2100 {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-2100:hover {
    border-color: rgba(16, 185, 129, 0.2);
}

.faq-item-2100.active {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.1);
}

.faq-question-2100 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question-2100:hover {
    background: rgba(255,255,255,0.02);
}

.faq-question-2100 span {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    flex: 1;
    padding-right: 20px;
}

.faq-question-2100 .faq-icon-2100 {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    transition: all 0.3s ease;
}

.faq-item-2100.active .faq-icon-2100 {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    transform: rotate(180deg);
}

.faq-answer-2100 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item-2100.active .faq-answer-2100 {
    max-height: 300px;
}

.faq-answer-content-2100 {
    padding: 0 30px 25px;
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

/* Quick Links Section 2100 */
.quick-links-2100 {
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0) 100%);
}

.quick-links-2100 .section-container-2100 {
    max-width: 1200px;
    margin: 0 auto;
}

.quick-grid-2100 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.quick-card-2100 {
    padding: 35px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.quick-card-2100:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.quick-card-header-2100 {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.quick-card-icon-2100 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #10b981;
}

.quick-card-header-2100 h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
}

.quick-links-list-2100 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-link-2100 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-link-2100:hover {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    transform: translateX(5px);
}

.quick-link-2100 i {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Support Cards 2100 */
.support-section-2100 {
    padding: 100px 20px;
}

.support-section-2100 .section-container-2100 {
    max-width: 1200px;
    margin: 0 auto;
}

.support-grid-2100 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.support-card-2100 {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.support-card-2100:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.support-icon-2100 {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #10b981;
    transition: all 0.4s ease;
}

.support-card-2100:hover .support-icon-2100 {
    transform: scale(1.1);
}

.support-card-2100:nth-child(2) .support-icon-2100 {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    color: #3b82f6;
}

.support-card-2100:nth-child(3) .support-icon-2100 {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    color: #8b5cf6;
}

.support-card-2100 h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.support-card-2100 p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 20px;
}

.support-link-2100 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #10b981;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.support-link-2100:hover {
    gap: 12px;
}

/* CTA Section 2100 */
.help-cta-2100 {
    padding: 100px 20px;
    position: relative;
}

.help-cta-2100 .cta-container-2100 {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 50px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.help-cta-2100 .cta-container-2100::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
    animation: rotateBg 15s linear infinite;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-icon-2100 {
    position: relative;
    z-index: 1;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
}

.cta-title-2100 {
    position: relative;
    z-index: 1;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.cta-title-2100 span {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-desc-2100 {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 35px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-2100 {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary-2100 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.cta-btn-primary-2100:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.cta-btn-secondary-2100 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-secondary-2100:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

/* Light Theme Support */
[data-theme="light"] .help-hero-2100 .hero-title-2100,
[data-theme="light"] .section-title-2100,
[data-theme="light"] .cta-title-2100,
[data-theme="light"] .category-card-2100 h3,
[data-theme="light"] .faq-question-2100 span,
[data-theme="light"] .quick-card-header-2100 h3,
[data-theme="light"] .support-card-2100 h3 {
    color: #1e293b;
}

[data-theme="light"] .help-hero-2100 .hero-description-2100,
[data-theme="light"] .section-desc-2100,
[data-theme="light"] .cta-desc-2100,
[data-theme="light"] .category-card-2100 p,
[data-theme="light"] .faq-answer-content-2100,
[data-theme="light"] .quick-link-2100,
[data-theme="light"] .support-card-2100 p {
    color: #64748b;
}

[data-theme="light"] .help-hero-2100 .breadcrumb-2100 a {
    color: #64748b;
}

[data-theme="light"] .help-hero-2100 .breadcrumb-2100 .current {
    color: #1e293b;
}

[data-theme="light"] .category-card-2100,
[data-theme="light"] .faq-item-2100,
[data-theme="light"] .quick-card-2100,
[data-theme="light"] .support-card-2100 {
    background: rgba(255,255,255,0.8);
    border-color: rgba(0,0,0,0.08);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

[data-theme="light"] .help-search-2100 {
    background: rgba(255,255,255,0.9);
    border-color: rgba(0,0,0,0.1);
}

[data-theme="light"] .help-search-2100 input {
    color: #1e293b;
}

[data-theme="light"] .help-search-2100 input::placeholder {
    color: #94a3b8;
}

[data-theme="light"] .help-cta-2100 .cta-container-2100 {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(59, 130, 246, 0.08));
}

[data-theme="light"] .cta-btn-secondary-2100 {
    background: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.1);
    color: #1e293b;
}

[data-theme="light"] .quick-link-2100 {
    background: rgba(0,0,0,0.02);
}

[data-theme="light"] .quick-link-2100:hover {
    background: rgba(16, 185, 129, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .help-hero-2100 {
        min-height: 50vh;
        padding: 120px 20px 60px;
    }
    
    .help-hero-2100 .hero-badge-2100 {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .help-search-2100 {
        flex-direction: column;
    }
    
    .help-search-2100 input {
        padding: 18px 20px;
        text-align: center;
    }
    
    .help-search-2100 button {
        padding: 15px;
    }
    
    .categories-grid-2100 {
        grid-template-columns: 1fr;
    }
    
    .quick-grid-2100 {
        grid-template-columns: 1fr;
    }
    
    .support-grid-2100 {
        grid-template-columns: 1fr;
    }
    
    .faq-question-2100 {
        padding: 20px;
    }
    
    .faq-question-2100 span {
        font-size: 1rem;
    }
    
    .faq-answer-content-2100 {
        padding: 0 20px 20px;
    }
    
    .help-cta-2100 .cta-container-2100 {
        padding: 40px 25px;
    }
    
    .cta-buttons-2100 {
        flex-direction: column;
    }
    
    .cta-btn-primary-2100,
    .cta-btn-secondary-2100 {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .help-hero-2100 .hero-title-2100 {
        font-size: 2rem;
    }
    
    .help-hero-2100 .hero-description-2100 {
        font-size: 1rem;
    }
    
    .section-title-2100 {
        font-size: 1.8rem;
    }
    
    .category-card-2100 {
        padding: 25px 20px;
    }
    
    .category-icon-2100 {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
