/* Support Page Styles */
.support-page {
    min-height: 100vh;
    background: #f9fafb;
}

/* Hero Section */
.support-hero {
    background: #0d58c6;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.support-hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.support-hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .support-hero {
        padding: 3rem 0;
    }
    
    .support-hero__title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .support-hero__subtitle {
        font-size: 1.125rem;
    }
}

/* Main Content */
.support-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (max-width: 1024px) {
    .support-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
}

/* FAQ Section */
.support-faq__container {
    background: white;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    padding: 2rem;
}

.support-faq__title {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* FAQ Categories */
.support-faq__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.faq-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: none;
    background: #f3f4f6;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.faq-category:hover {
    background: #e5e7eb;
}

.faq-category--active {
    background: #0d58c6;
    color: white;
}

.faq-category--active:hover {
    background: #0d58c6;
}

.faq-category__icon {
    font-size: 1rem;
}

/* FAQ Content */
.faq-items {
    display: none;
}

.faq-items--active {
    display: block;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item__question {
    font-size: 1.125rem;
    color: #111827;
    margin-bottom: 0.75rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-item__answer {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.support-answer-old {
    display: block;
    color: #9ca3af;
    text-decoration: line-through;
}

.support-answer-new {
    display: block;
    color: #111827;
    font-weight: 600;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

/* Sidebar */
.support-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Support Form */
.support-form {
    background: white;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    padding: 2rem;
}

.support-form__title {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.support-form__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    color: #374151;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #0d58c6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.support-form__submit {
    background: #0d58c6;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.support-form__submit:hover {
    background: #0d58c6;
}

/* Contacts */
.support-contacts {
    background: white;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    padding: 2rem;
}

.support-contacts__title {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.support-contacts__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item__icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.contact-item__icon--email {
    color: #0d58c6;
}

.contact-item__icon--phone {
    color: #0d58c6;
}

.contact-item__icon--telegram {
    color: #0d58c6;
}

.contact-item__icon--location {
    color: #0d58c6;
}

.contact-item__icon svg {
    width: 100%;
    height: 100%;
}

.contact-item__type {
    font-size: 1.125rem;
    color: #111827;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item__value {
    color: #0d58c6;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-item__link {
    color: inherit;
    text-decoration: none;
}

.contact-item__link:hover {
    text-decoration: underline;
}

.contact-item__description {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Useful Links */
.support-links {
    background: white;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    padding: 2rem;
}

.support-links__title {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.support-links__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-link {
    color: #0d58c6;
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 0.5rem 0;
    border-bottom: 1px solid transparent;
}

.support-link:hover {
    color: #0d58c6;
}

/* Responsive */
@media (max-width: 768px) {
    .support-faq__categories {
        gap: 1rem;
    }
    
    .faq-category {
        flex: 1;
        justify-content: center;
        min-width: 0;
    }
}

@media (max-width: 640px) {
    .support-content {
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .support-faq__categories {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .faq-category {
        justify-content: center;
        width: 100%;
        flex: none;
    }
    
    .support-form,
    .support-contacts,
    .support-links {
        padding: 1.5rem;
    }
    
    .support-faq__container {
        padding: 1.5rem;
    }
    
    .contact-item {
        align-items: center;
        text-align: left;
    }
    
    .support-hero {
        padding: 2rem 0;
    }
    
    .support-hero__title {
        font-size: 1.75rem;
    }
    
    .support-hero__subtitle {
        font-size: 1rem;
    }
} 
