.contact-wrapper {
    width: 100%;
    display: grid;
    gap: 1.5rem;
}

.contact-header {
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(0, 255, 156, 0.08);
}

.contact-wrapper h1 {
    margin-bottom: 0.8rem;
}

.contact-wrapper p {
    color: var(--muted);
    line-height: 1.7;
}

.contact-box {
    margin-top: 1.5rem;

    padding: 1.2rem;

    border: 1px solid var(--neon-soft);
    border-radius: 14px;

    background: rgba(0,255,156,0.03);
}

.contact-box h2 {
    color: var(--neon);
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.contact-box a {
    color: var(--neon);
    text-decoration: none;
    word-break: break-word;
}

.contact-box a:hover {
    text-decoration: underline;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    padding: 0.9rem 1rem;
    border-radius: 10px;
    background: rgba(0,0,0,0.18);
    border: 1px solid rgba(0,255,156,0.08);
}

.contact-grid-layout {
    display: grid;
    gap: 1rem;
}

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

    .contact-box:nth-child(1) {
        grid-column: 1 / -1;
    }

    .contact-box {
        min-height: 170px;
    }
}

.contact-label {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0.3rem;
}

.contact-value {
    color: var(--text);
    font-size: 0.95rem;
}

.contact-footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.82rem;
    color: var(--muted);
}