/* Support Pages Styles */

.support-content {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
}

.support-header {
    text-align: center;
    margin-bottom: 3rem;
}

.support-header h1 {
    color: #1f2937;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.support-header p {
    color: #6b7280;
    font-size: 1.125rem;
}

/* FAQ Styles */
.faq-container {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.faq-question {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-answer {
    color: #4b5563;
    line-height: 1.7;
}

.faq-answer ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

/* Contact Form Styles */
.contact-form {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.form-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
    width: 100%;
}

.form-button:hover {
    transform: translateY(-2px);
}

/* Contact Info Styles */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-title {
    color: #1f2937;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-detail {
    color: #4b5563;
}

.contact-detail a {
    color: #667eea;
    text-decoration: none;
}

.contact-detail a:hover {
    text-decoration: underline;
}

/* Documentation Styles */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.docs-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.docs-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.docs-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.docs-title {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.docs-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.docs-link {
    display: inline-block;
    color: #667eea;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.docs-link:hover {
    color: #764ba2;
}

/* Support Ticket Styles */
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.support-option {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.2s;
}

.support-option:hover {
    transform: translateY(-4px);
}

.support-option-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.support-option-title {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.support-option-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.support-button {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

.support-button:hover {
    background: #764ba2;
}

/* Responsive */
@media (max-width: 768px) {
    .support-header h1 {
        font-size: 2rem;
    }
    
    .docs-grid,
    .support-options,
    .contact-info {
        grid-template-columns: 1fr;
    }
}
