/* Support Page Dedicated Styles */

/* Support Page Reset */
.support-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Support Hero Section */
.support-hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.support-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.08) 0%, transparent 70%);
    animation: supportGlow 15s ease-in-out infinite;
}

@keyframes supportGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10%, 10%) scale(1.1); }
}

.support-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.support-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.support-title .highlight {
    background: linear-gradient(135deg, #84cc16 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-subtitle {
    font-size: 1.25rem;
    color: #a1a1a1;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Support Stats */
.support-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.support-stat {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 40px;
    border-radius: 20px;
    min-width: 200px;
    transition: all 0.3s ease;
}

.support-stat:hover {
    transform: translateY(-5px);
    border-color: rgba(132, 204, 22, 0.3);
    box-shadow: 0 10px 30px rgba(132, 204, 22, 0.1);
}

.support-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #84cc16;
    display: block;
    margin-bottom: 5px;
}

.support-stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Support Options Grid */
.support-options {
    padding: 80px 0;
    background: #0a0a0a;
}

.support-options-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.support-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.support-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #84cc16 0%, #22c55e 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(132, 204, 22, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.support-card:hover::before {
    transform: scaleX(1);
}

.support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #84cc16 0%, #22c55e 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0a0a0a;
}

.support-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.support-card-description {
    font-size: 1rem;
    color: #a1a1a1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.support-badge {
    display: inline-block;
    background: rgba(132, 204, 22, 0.1);
    color: #84cc16;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Form Section */
.support-contact-section {
    padding: 80px 0;
    background: #111111;
    position: relative;
}

.support-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.support-contact-info {
    padding: 40px;
}

.support-contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.support-contact-text {
    font-size: 1.125rem;
    color: #a1a1a1;
    margin-bottom: 40px;
    line-height: 1.6;
}

.support-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support-contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.support-contact-method:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(132, 204, 22, 0.2);
}

.support-method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #84cc16 0%, #22c55e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-size: 1.25rem;
}

.support-method-info h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 5px;
}

.support-method-info p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

/* Support Form */
.support-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.support-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.support-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.support-form label {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
}

.support-form input,
.support-form select,
.support-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    width: 100%;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
    outline: none;
    border-color: #84cc16;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(132, 204, 22, 0.1);
}

.support-form input::placeholder,
.support-form textarea::placeholder {
    color: #6b7280;
}

.support-form textarea {
    min-height: 120px;
    resize: vertical;
}

.support-form-submit {
    background: linear-gradient(135deg, #84cc16 0%, #22c55e 100%);
    color: #0a0a0a;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.support-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(132, 204, 22, 0.3);
}

/* FAQ Section */
.support-faq {
    padding: 80px 0;
    background: #0a0a0a;
}

.support-faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.support-faq-item:hover {
    border-color: rgba(132, 204, 22, 0.2);
}

.support-faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.support-faq-question h3 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.support-faq-icon {
    color: #84cc16;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.support-faq-item.active .support-faq-icon {
    transform: rotate(45deg);
}

.support-faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.support-faq-item.active .support-faq-answer {
    max-height: 300px;
    padding: 0 30px 25px;
}

.support-faq-answer p {
    color: #a1a1a1;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .support-contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .support-title {
        font-size: 2.5rem;
    }
    
    .support-subtitle {
        font-size: 1.125rem;
    }
    
    .support-stats {
        gap: 20px;
    }
    
    .support-stat {
        min-width: 150px;
        padding: 20px;
    }
    
    .support-stat-number {
        font-size: 2rem;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .support-form-row {
        grid-template-columns: 1fr;
    }
    
    .support-contact-info {
        padding: 20px;
    }
    
    .support-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .support-hero-section {
        padding: 100px 0 40px;
    }
    
    .support-title {
        font-size: 2rem;
    }
    
    .support-subtitle {
        font-size: 1rem;
    }
    
    .support-stat {
        min-width: 120px;
        padding: 15px;
    }
    
    .support-stat-number {
        font-size: 1.5rem;
    }
    
    .support-stat-label {
        font-size: 0.75rem;
    }
    
    .support-section-title {
        font-size: 2rem;
    }
    
    .support-card {
        padding: 30px 20px;
    }
    
    .support-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .support-card-title {
        font-size: 1.25rem;
    }
    
    .support-form-submit {
        padding: 15px 30px;
        font-size: 1rem;
    }
}