/* Support Index - Modern Dark Theme */

#top-navbar {
    margin-top: -20px;
}

.support-header {
    text-align: center;
    padding: 80px 20px 50px;
    background: linear-gradient(180deg, rgba(76, 76, 255, 0.15) 0%, transparent 100%);
}

.support-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 0%, #a0a0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Support Options Grid */
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 0 40px 60px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.support-card {
    background: linear-gradient(145deg, rgba(42, 42, 64, 0.8) 0%, rgba(26, 26, 46, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 360px;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4c4cff, #7b7bff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: rgba(76, 76, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.support-card:hover::before {
    opacity: 1;
}

.support-card .card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(76, 76, 255, 0.2) 0%, rgba(76, 76, 255, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #7b7bff;
}

.support-card h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #fff;
}

.support-card p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.support-card .button-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4c4cff 0%, #3737d7 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: linear-gradient(135deg, #5c5cff 0%, #4747e7 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 76, 255, 0.3);
}

.cta-button.secondary {
    background: transparent;
    border: 1px solid rgba(76, 76, 255, 0.5);
    color: #7b7bff;
}

.cta-button.secondary:hover {
    background: rgba(76, 76, 255, 0.1);
    border-color: #7b7bff;
    box-shadow: none;
}

/* FAQ Section */
.faq {
    padding: 60px 40px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #fff;
}

.faq-item {
    background: rgba(42, 42, 64, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-item.active {
    border-color: rgba(76, 76, 255, 0.3);
    background: rgba(42, 42, 64, 0.8);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 20px 25px;
    padding-right: 50px;
    cursor: pointer;
    color: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease, color 0.3s ease;
    font-size: 0.9rem;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
    color: #7b7bff;
}

.faq-question:hover {
    color: #a0a0ff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer.open {
    max-height: 500px;
}

.faq-answer p {
    padding: 20px 25px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Empty State */
.faq-empty {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.5);
}

.faq-empty i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .support-header {
        padding: 60px 20px 40px;
    }

    .support-header h1 {
        font-size: 2.2rem;
    }

    .support-options {
        padding: 0 20px 40px;
        gap: 20px;
    }

    .support-card {
        padding: 25px 20px;
    }

    .faq {
        padding: 40px 20px 60px;
    }

    .faq h2 {
        font-size: 1.6rem;
    }

    .faq-question {
        padding: 16px 45px 16px 20px;
        font-size: 0.95rem;
    }

    .faq-question::after {
        right: 18px;
    }

    .faq-answer p {
        padding: 16px 20px;
    }
}

@media (min-width: 1100px) {
    .support-options {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
