body {
    background: black;
}
.contact-page {
    margin: 0;
    padding: 0;
}

/* Header Section */
.contact-page .header {
    position: relative;
    padding-top: 100px;
    padding-bottom: 80px;
    border-bottom: 1px solid #1a1a1a;
}
.contact-page .header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.contact-page .header .left-side {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-page .header .page-title {
    font-size: 48px;
    margin-bottom: 0;
}
.contact-page .header .tagline {
    max-width: 450px;
}
.contact-page .header .ascii-tag {
    opacity: 0.5;
    margin-top: 10px;
}

/* Contact Section */
.contact-page .contact-section {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}
.contact-page .contact-section .vert-line {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(180deg, rgb(68, 68, 68) 0%, rgb(23, 23, 23) 100%);
    width: 1px;
    height: 200px;
}
.contact-page .contact-section .vert-line.left { left: 50px; }
.contact-page .contact-section .vert-line.right { right: 50px; }

.contact-page .contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.contact-page .contact-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 30px;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
}
.contact-page .contact-card.primary {
    border-color: #2a2a2a;
}
.contact-page .contact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}
.contact-page .contact-value {
    font-size: 20px;
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.4;
}
a.contact-value:hover {
    color: #b0b0b0;
}
.contact-page .contact-note {
    margin-top: 5px;
    font-size: 14px;
}

/* Socials Section */
.contact-page .socials-section {
    padding-top: 40px;
    padding-bottom: 100px;
    border-top: 1px solid #1a1a1a;
}
.contact-page .socials-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-page .socials-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}
.contact-page .socials-links {
    display: flex;
    gap: 30px;
}
.contact-page .social-link {
    color: #919191;
    text-decoration: none;
    transition: color 0.2s ease;
}
.contact-page .social-link:hover {
    color: white;
}

/* Responsive */
@media (max-width: 1200px) {
    .contact-page .contact-section .vert-line {
        display: none;
    }
}
@media (max-width: 900px) {
    .contact-page .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .contact-page .header {
        padding-top: 60px;
        padding-bottom: 50px;
    }
    .contact-page .header .page-title {
        font-size: 36px;
    }
    .contact-page .contact-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .contact-page .socials-links {
        flex-wrap: wrap;
        gap: 20px;
    }
}
