/* ===========================
   GidaTV Support Page Styles
   support.html specific
   =========================== */

/* Contact Section */
.contact-section {
    background: var(--bg-dark);
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--teal);
}

.contact-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

.contact-info a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    opacity: 0.8;
}

/* Quick Links */
.quick-links-section {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-subtle);
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.quick-link {
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.quick-link:hover {
    border-color: var(--coral);
    background: var(--coral-glow);
    transform: translateY(-2px);
}

/* FAQ Sections */
.faq-section {
    background: var(--bg-dark);
}

.faq-section:nth-child(even) {
    background: var(--bg-darker);
}

.faq-section h2 {
    margin-bottom: 48px;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    padding: 28px;
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--accent);
    transition: all 0.3s ease;
}

.faq-item:nth-child(even) {
    border-left-color: var(--coral);
}

.faq-item:hover {
    border-color: var(--border-accent);
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item ul {
    color: var(--text-muted);
    margin: 12px 0;
    padding-left: 20px;
}

.faq-item li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.faq-item a {
    color: var(--accent);
    text-decoration: none;
}

.faq-item a:hover {
    opacity: 0.8;
}

/* Badge & Code */
code {
    background: var(--bg-elevated);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'SF Mono', 'Monaco', 'Menlo', monospace;
    font-size: 0.85em;
    color: var(--teal);
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent);
    color: #000;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
    vertical-align: middle;
}

/* Responsive - Support */
@media (max-width: 768px) {
    .quick-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .quick-links {
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding: 20px;
    }
}
