/* Troubleshooting Page Specific Styles */
.troubleshooting-hero {
    padding: 8rem 0 3rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

.quick-fixes {
    padding: 5rem 0;
    background: #1a1a1a;
}

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

.fix-card {
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.fix-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.fix-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: #FFD700;
    color: #000000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.fix-icon {
    background: #333333;
    color: #FFD700;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.fix-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.fix-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.fix-details {
    background: rgba(255, 215, 0, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #FFD700;
}

.fix-details strong {
    color: #FFD700;
    display: block;
    margin-bottom: 0.5rem;
}

.fix-details ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fix-details li {
    color: #cccccc;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.fix-details li:before {
    content: "•";
    color: #FFD700;
    position: absolute;
    left: 0;
}

.advanced-solutions {
    padding: 5rem 0;
    background: #000000;
}

.solutions-list {
    max-width: 800px;
    margin: 0 auto;
}

.solution-item {
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333333;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.solution-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
}

.solution-icon {
    background: #FFD700;
    color: #000000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.solution-header h3 {
    color: #ffffff;
    margin: 0;
}

.solution-content {
    padding: 1.5rem;
}

.solution-content p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.solution-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.solution-content li {
    color: #cccccc;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.solution-content li:before {
    content: "→";
    color: #FFD700;
    position: absolute;
    left: 0;
}

.solution-content code {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

.common-issues {
    padding: 5rem 0;
    background: #1a1a1a;
}

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

.issue-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.issue-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.issue-icon {
    background: #FFD700;
    color: #000000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.issue-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.issue-solution {
    background: rgba(255, 215, 0, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #FFD700;
}

.issue-solution p {
    margin-bottom: 0.5rem;
}

.issue-solution strong {
    color: #FFD700;
}

.issue-solution ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.issue-solution li {
    color: #cccccc;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.issue-solution li:before {
    content: "✓";
    color: #FFD700;
    position: absolute;
    left: 0;
}

.contact-support {
    padding: 5rem 0;
    background: #000000;
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.support-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.support-text p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.support-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cccccc;
}

.support-feature i {
    color: #FFD700;
    width: 20px;
}

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

.support-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #333333;
    background: #1a1a1a;
    color: #ffffff;
}

.support-btn:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.05);
}

.support-btn.primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
    border: none;
}

.support-btn.primary:hover {
    background: linear-gradient(135deg, #FFC107, #FF8F00);
    transform: translateY(-2px);
}

.support-info {
    background: rgba(26, 26, 26, 0.5);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333333;
}

.support-info h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

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

.support-info li {
    color: #cccccc;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.support-info li:before {
    content: "•";
    color: #FFD700;
    position: absolute;
    left: 0;
}

/* Responsive Design for Troubleshooting */
@media (max-width: 768px) {
    .fixes-grid {
        grid-template-columns: 1fr;
    }

    .issues-grid {
        grid-template-columns: 1fr;
    }

    .support-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .support-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .fix-card, .issue-card {
        padding: 1.5rem;
    }

    .solution-header, .solution-content {
        padding: 1rem;
    }

    .support-info {
        padding: 1.5rem;
    }
}
