/* Support Page Specific Styles */

body {
    background: #000000;
}

/* Support Types */
.support-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.support-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.support-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.support-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.support-card p {
    color: #aaa;
    margin-bottom: 1rem;
}

.support-price {
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 3rem auto;
}

.faq-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    margin: 1.5rem 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: #aaa;
    line-height: 1.8;
}

.faq-answer-content {
    padding: 0 2rem 2rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Contact Methods */
.contact-methods {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.contact-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.contact-card a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.contact-card p {
    color: #888;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}
