/* Contact Page Specific Styles */

:root {
    --primary-color: #667eea;
    --accent-color: #667eea;
    --success-color: #10b981;
}

.contact-main {
    min-height: 100vh;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Support Channels */
.support-channels {
    margin-bottom: 4rem;
}

.support-channels h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.channel-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.channel-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.channel-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.channel-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.channel-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.channel-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.channel-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.channel-link.primary {
    background: var(--primary-color);
    color: white;
}

.channel-link.primary:hover {
    background: var(--accent-color);
}

.channel-link:not(.primary) {
    background: #f8f9fa;
    color: var(--primary-color);
    border: 2px solid #e2e8f0;
}

.channel-link:not(.primary):hover {
    background: #e2e8f0;
    border-color: var(--primary-color);
}

.link-icon {
    font-size: 1.1rem;
}

/* Reporting Section */
.reporting-section {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.reporting-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.reporting-section > p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.checklist-column h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.checklist li:last-child {
    border-bottom: none;
}

.issue-template {
    margin-top: 2rem;
}

.issue-template h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.template-box {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 1.5rem;
    overflow-x: auto;
    position: relative;
}

.template-box code {
    color: #e2e8f0;
    font-family: 'Monaco', 'Menlo', monospace;
    white-space: pre;
    font-size: 0.9rem;
    line-height: 1.4;
}

.copy-template-btn {
    background: var(--success-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 1rem;
    font-weight: 500;
    transition: background 0.2s ease;
}

.copy-template-btn:hover {
    background: var(--accent-color);
}

/* Response Times */
.response-times {
    margin-bottom: 4rem;
}

.response-times h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.response-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.response-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-left: 4px solid var(--success-color);
}

.response-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.response-time {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.response-card p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Security Section */
.security-section {
    margin-bottom: 4rem;
}

.security-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.security-notice {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.security-icon {
    font-size: 2rem;
    color: #f59e0b;
    flex-shrink: 0;
}

.security-content h4 {
    color: #92400e;
    margin-bottom: 1rem;
}

.security-content p {
    color: #92400e;
    margin-bottom: 1rem;
}

.security-details {
    background: rgba(255, 255, 255, 0.5);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.security-details ul {
    margin: 0.5rem 0 1rem 1.5rem;
    color: #92400e;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 4rem;
}

.faq-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--accent-color);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-item p {
    color: #64748b;
}

.faq-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-logo-img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.footer-copyright p {
    color: #94a3b8;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
    
    .channels-grid {
        grid-template-columns: 1fr;
    }
    
    .issue-checklist {
        grid-template-columns: 1fr;
    }
    
    .response-grid {
        grid-template-columns: 1fr;
    }
    
    .security-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}