/* ========================================
   Support Page Styles
   ======================================== */

.support-page {
    min-height: 100vh;
    padding: calc(80px + var(--space-xl)) var(--space-lg) var(--space-xl);
    display: flex;
    justify-content: center;
}

.support-container {
    max-width: 900px;
    width: 100%;
}

/* Header */
.support-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.support-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: var(--space-md);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.support-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    letter-spacing: -0.02em;
}

.support-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Contact Card */
.contact-card {
    background: linear-gradient(135deg, rgba(124, 92, 252, 0.2), rgba(91, 63, 217, 0.15));
    border: 1px solid rgba(124, 92, 252, 0.3);
    border-radius: 20px;
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    overflow: hidden;
    position: relative;
}

.contact-content {
    flex: 1;
}

.contact-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.contact-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--primary);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(124, 92, 252, 0.3);
}

.contact-button:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(124, 92, 252, 0.4);
}

.contact-button svg {
    width: 20px;
    height: 20px;
}

.contact-decorative {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.decorative-dots {
    position: relative;
    width: 100%;
    height: 100%;
}

.d-dot {
    position: absolute;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.d-dot-1 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.d-dot-2 {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    top: 50%;
    right: 10%;
    animation-delay: 0.5s;
}

.d-dot-3 {
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #4ecdc4, #45b7aa);
    bottom: 10%;
    left: 30%;
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Section Titles */
.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    text-align: center;
}

/* FAQ Section */
.faq-section {
    margin-bottom: var(--space-xl);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.faq-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: var(--space-lg);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(124, 92, 252, 0.3);
    transform: translateY(-2px);
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Tips Section */
.tips-section {
    margin-bottom: var(--space-xl);
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: var(--space-lg);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.tip-item:hover {
    border-color: rgba(124, 92, 252, 0.3);
}

.tip-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.tip-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.tip-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer */
.support-footer {
    margin-top: var(--space-xl);
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.back-link:hover {
    color: var(--primary-light);
    background: var(--border-subtle);
}

.back-link svg {
    width: 18px;
    height: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .support-header h1 {
        font-size: 2rem;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-decorative {
        display: none;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .tip-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
