/* Support Page Specific Styles */

.support-hero {
    padding: 140px;
    background: var(--surface);
    text-align: center;
    position: relative;
}
.hero {
    padding: 30px;
    background: var(--surface);
    text-align: center;
    position: relative;
}

.support-hero::before {
    padding: 140px;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glow);
    opacity: 0.3;
}

.support-header {
    position: relative;
    z-index: 1;
}

.support-header h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text);
    animation: fadeInUp 1s ease-out;
}

.support-header p {
    font-size: 22px;
    color: var(--text-light);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.support-content {
    padding: 80px 0;
    background: var(--background);
}

.support-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-card {
    background: var(--surface);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    margin-bottom: 40px;
    border: 1px solid var(--border);
    animation: fadeInLeft 1s ease-out 0.2s both;
}

.contact-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    transition: var(--transition-smooth);
    padding: 16px;
    border-radius: var(--radius);
}

.contact-item:hover {
    background: rgba(34, 197, 94, 0.05);
    transform: translateX(8px);
}

.contact-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    background: var(--surface-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.contact-details h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.contact-link:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

.faq-section {
    background: var(--surface);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border);
    animation: fadeInLeft 1s ease-out 0.4s both;
}

.faq-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text);
}

.faq-item {
    margin-bottom: 32px;
    padding: 24px;
    background: var(--background);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.help-card,
.status-card {
    background: var(--surface);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    margin-bottom: 32px;
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
    animation: fadeInRight 1s ease-out;
}

.help-card:hover,
.status-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.help-card:nth-child(1) { animation-delay: 0.2s; }
.help-card:nth-child(2) { animation-delay: 0.3s; }
.help-card:nth-child(3) { animation-delay: 0.4s; }
.help-card:nth-child(4) { animation-delay: 0.5s; }

.help-card h3,
.status-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text);
}

.help-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.help-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition-smooth);
    position: relative;
}

.help-link:hover {
    background: var(--surface-light);
    color: var(--text);
}

.help-link[data-modal]:hover {
    background: linear-gradient(135deg, var(--surface-light), var(--surface));
    transform: translateX(4px);
}

.help-link[data-modal]::after {
    content: '→';
    position: absolute;
    right: 12px;
    color: var(--primary);
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.help-link[data-modal]:hover::after {
    opacity: 1;
}

.help-icon {
    font-size: 18px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.status-item:hover {
    background: rgba(34, 197, 94, 0.05);
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.status-online {
    background: var(--primary);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.status-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.status-link:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
    background: var(--surface-light);
}

.modal-header h3 {
    color: var(--text);
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--background);
    color: var(--text);
    transform: scale(1.1);
}

.modal-content {
    padding: 32px;
}

.modal-icon {
    font-size: 64px;
    text-align: center;
    margin-bottom: 24px;
}

.modal-body {
    color: var(--text-light);
    line-height: 1.6;
}

.modal-body h4 {
    color: var(--text);
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 12px 0;
}

.modal-body ul, .modal-body ol {
    margin: 12px 0 20px 20px;
}

.modal-body li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.modal-body p {
    margin-bottom: 16px;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        margin: 20px;
    }
}
