/* Support Pages Styling */

.support-section {
    padding: 120px 0 80px;
    background-color: var(--background-alt);
}

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

.support-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.support-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.support-content {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.support-nav {
    width: 280px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 30px 0;
    flex-shrink: 0;
}

.support-nav ul {
    list-style: none;
    padding: 0;
}

.support-nav li {
    padding: 0;
}

.support-nav a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 10px 20px;
    border-left: 4px solid transparent;
    transition: var(--transition);
    font-weight: 500;
}

.support-nav a:hover,
.support-nav a:focus {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    border-left-color: #ffffff;
}

.support-text {
    padding: 40px;
    flex-grow: 1;
}

.support-text section {
    margin-bottom: 50px;
}

.support-text h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.support-text h3 {
    font-size: 1.35rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.support-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-color);
}

.support-text ul, 
.support-text ol {
    margin: 15px 0;
    padding-left: 20px;
}

.support-text li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.support-footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

/* Setup Guide specific styles */
.device-requirements {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.device-card {
    flex: 1 1 200px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius);
    padding: 25px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.device-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.device-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.device-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.device-card ul {
    margin: 0;
    padding-left: 20px;
}

.setup-steps {
    margin: 30px 0;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.step-content {
    flex-grow: 1;
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.note, .warning {
    background-color: rgba(245, 245, 245, 0.8);
    border-left: 4px solid var(--primary-light);
    padding: 15px;
    margin: 15px 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.warning {
    border-left-color: #e74c3c;
}

.config-tips {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.config-item {
    flex: 1 1 250px;
    background-color: rgba(245, 245, 245, 0.8);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.device-setup {
    margin-top: 30px;
}

.device-item {
    background-color: rgba(245, 245, 245, 0.8);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.device-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.device-item h3 {
    margin-top: 0;
}

/* Troubleshooting specific styles */
.trouble-item {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius);
    margin-bottom: 25px;
    overflow: hidden;
}

.trouble-question {
    background: linear-gradient(135deg, rgba(45, 27, 174, 0.05), rgba(89, 24, 133, 0.05));
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trouble-question i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.trouble-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.trouble-solution {
    padding: 20px;
}

.trouble-solution h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

/* Contact page specific styles */
.contact-page-section {
    padding: 120px 0 80px;
    background-color: var(--background-alt);
}

.contact-page-content {
    max-width: 1200px;
    margin: 0 auto 60px;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 60px;
}

.contact-card {
    flex: 1 1 250px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.contact-info {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-detail {
    color: var(--text-light);
    margin-bottom: 15px;
}

.response-time {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 15px;
}

.contact-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.contact-social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(45, 27, 174, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.chat-btn {
    margin-top: 10px;
}

.contact-form-section {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-section h2 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-form-section p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-light);
    outline: none;
    box-shadow: 0 0 0 3px rgba(45, 27, 174, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
    margin-top: 5px;
}

.form-checkbox label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.9rem;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    margin-top: 10px;
}

.contact-additional {
    max-width: 1000px;
    margin: 60px auto;
}

.contact-additional h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.additional-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.info-item {
    flex: 1 1 300px;
    display: flex;
    gap: 20px;
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.info-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.info-item p {
    margin: 0;
    color: var(--text-color);
}

.info-item .small {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
}

.faq-teaser {
    text-align: center;
    background: linear-gradient(135deg, rgba(45, 27, 174, 0.05), rgba(89, 24, 133, 0.05));
    padding: 50px;
    border-radius: var(--border-radius);
    margin-top: 60px;
}

.faq-teaser h2 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-teaser p {
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.success-message {
    text-align: center;
    padding: 30px 20px;
}

.success-message i {
    font-size: 4rem;
    color: #2ecc71;
    margin-bottom: 20px;
}

.success-message h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.success-message p {
    color: var(--text-light);
}

/* Responsive styles */
@media (max-width: 992px) {
    .support-content {
        flex-direction: column;
        max-width: 95%;
    }
    
    .support-nav {
        width: 100%;
        padding: 15px;
    }
    
    .support-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .support-nav li {
        flex-grow: 1;
    }
    
    .support-nav a {
        border-left: none;
        border-bottom: 2px solid transparent;
        text-align: center;
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .support-nav a:hover,
    .support-nav a:focus {
        border-left-color: transparent;
        border-bottom-color: #ffffff;
    }
    
    .support-text {
        padding: 25px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .support-header h1 {
        font-size: 2rem;
    }
    
    .support-text h2 {
        font-size: 1.5rem;
    }
    
    .support-text h3 {
        font-size: 1.25rem;
    }
    
    .support-text {
        padding: 20px 15px;
    }
    
    .step {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-form-section {
        padding: 25px 20px;
    }
}
