.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

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

.contact-header .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #4763FF;
    color: white;
    border-radius: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

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

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

.contact-channels {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .contact-channels {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-card {
    background: var(--surface);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-method:last-child {
    border-bottom: none;
}

.method-icon {
    width: 48px;
    height: 48px;
    margin-right: 1rem;
    padding: 0.75rem;
    background: #4763FF;
    color: white;
    border-radius: 12px;
}

.method-icon svg {
    width: 100%;
    height: 100%;
}

.method-details h3 {
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}

.method-details p {
    margin: 0 0 0.25rem 0;
    color: var(--primary);
    font-weight: 500;
}

.method-details span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.method-details .response-time {
    margin-top: 0.5rem;
    color: var(--success);
    font-size: 0.85rem;
}

.social-channels .contact-card h2 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.social-channels .contact-card > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.social-channel {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--surface-alt);
    border-radius: 0.75rem;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.social-channel:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.channel-icon {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    color: white;
}

.channel-icon.github { background: #24292e; }
.channel-icon.twitter { background: #1DA1F2; }
.channel-icon.linkedin { background: #0A66C2; }
.channel-icon.discord { background: #5865F2; }

.channel-info h3 {
    margin: 0 0 0.25rem 0;
    color: var(--text-primary);
}

.channel-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.method-details p a {
    color: #4763FF;
    text-decoration: none;
}

.method-details p a:hover {
    text-decoration: underline;
} 