/* --- Support Center Styles --- */
.search-container {
    max-width: 600px;
    margin: -40px auto 60px;
    position: relative;
    z-index: 20;
}

.search-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 6px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

[data-theme="light"] .search-wrapper {
    background: white;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.search-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(109, 40, 217, 0.1);
}

.search-wrapper i {
    font-size: 1.5rem;
    margin-left: 16px;
    color: var(--text-muted);
}

.search-wrapper input {
    width: 100%;
    background: none;
    border: none;
    padding: 14px 16px;
    color: inherit;
    font-size: 1.1rem;
    outline: none;
}

/* FAQ Accordion */
.faq-grid {
    display: grid;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

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

[data-theme="light"] .faq-item {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.05);
}

.faq-header {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(109, 40, 217, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--primary);
    color: white;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
    padding: 0 32px 32px;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.active .faq-body {
    max-height: 500px;
}

/* Contact Grid */
.support-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.support-card {
    padding: 40px;
    text-align: center;
}

.support-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.btn-support {
    width: 100%;
    border: 1px solid var(--primary);
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-support:hover {
    background: var(--primary);
    color: white;
}

.btn-disabled {
    width: 100%;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-muted);
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    cursor: not-allowed;
    display: block;
    text-align: center;
    font-size: 0.9rem;
}

[data-theme="dark"] .btn-disabled {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
}
