/* Support & Contact Pages Styles */

.support-main {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: 100vh;
    background: #f8fafc;
}

.support-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.support-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
}

.support-header p {
    font-size: 1.25rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Styles */
.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.section-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #7BC142 0%, #1E3A8A 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.section-description {
    font-size: 1.125rem;
    color: #718096;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* FAQ Styles */
.faq-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-container {
}

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

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #7BC142;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    flex: 1;
    transition: all 0.3s ease;
}

.faq-question:hover h3 {
    color: #7BC142;
}

.faq-icon {
    font-size: 18px;
    color: #718096;
    transition: all 0.3s ease;
    margin-left: 16px;
}

.faq-answer {
    display: none;
    padding: 16px 0;
    border-top: 1px solid #f3f4f6;
    margin-top: 8px;
}

.faq-answer p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Contact Section Styles */
.contact-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.contact-card {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.contact-card:hover {
    border-color: #7BC142;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(123, 193, 66, 0.15);
}

.contact-card.info-card {
    cursor: default;
}

.contact-card.info-card:hover {
    transform: none;
    border-color: #1E3A8A;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.15);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #7BC142 0%, #1E3A8A 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 8px 0;
}

.contact-card p {
    font-size: 1rem;
    color: #7BC142;
    font-weight: 500;
    margin: 0 0 8px 0;
}

.contact-subtitle {
    font-size: 0.875rem;
    color: #718096;
    display: block;
    margin-bottom: 8px;
}

.contact-action {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #718096;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-action {
    color: #7BC142;
}

/* Contact Form Styles */
.contact-form-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form {
    max-width: 600px;
    margin-top: 32px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7BC142;
    box-shadow: 0 0 0 3px rgba(123, 193, 66, 0.1);
}

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

.submit-btn {
    background: linear-gradient(135deg, #7BC142 0%, #1E3A8A 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 193, 66, 0.4);
}

/* Social Section */
.social-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.social-card {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
}

.social-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.social-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 16px;
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 8px 0;
}

.social-card p {
    font-size: 0.875rem;
    color: #718096;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .support-main {
        padding-top: 80px;
    }

    .support-header h1 {
        font-size: 2rem;
    }

    .support-header p {
        font-size: 1rem;
    }

    .faq-section,
    .contact-section,
    .contact-form-section,
    .social-section {
        padding: 24px;
        margin-bottom: 24px;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .social-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .contact-action {
        display: none;
    }
}

@media (max-width: 480px) {
    .support-header {
        margin-bottom: 40px;
    }

    .support-header h1 {
        font-size: 1.75rem;
    }

    .faq-section,
    .contact-section,
    .contact-form-section,
    .social-section {
        padding: 16px;
        margin-bottom: 16px;
    }

    .section-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .contact-icon,
    .social-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .faq-question {
        padding: 12px 0;
    }

    .faq-answer {
        padding: 12px 0;
    }
}