/* Базові налаштування */
body.contact-page {
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #000000;
    color: #ffffff;
}

/* Шапка */
.static-header .logo,
.static-header .hire-btn {
    opacity: 1;
    transform: none;
    transition: none;
    z-index: 100;
}
.static-header .back-btn {
    font-size: 30px;
}

/* Контейнер сторінки */
.contact-container {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 5% 50px 5%;
    max-width: 1300px;
    margin: 0 auto;
}

/* Сітка для розділення екрана */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    width: 100%;
    align-items: center;
}

/* Ліва частина: Інфо */
.barcode-accent {
    font-family: 'Libre Barcode 39 Text', sans-serif;
    font-size: 50px;
    color: rgba(255, 255, 255, 0.3);
    display: block;
    margin-bottom: 15px;
}

.contact-title {
    font-family: 'Lexend Zetta', sans-serif;
    font-size: 4vw;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.contact-desc {
    font-family: 'Lexend Zetta', sans-serif;
    font-weight: 200;
    font-size: 14px;
    color: #888;
    line-height: 1.8;
    max-width: 500px;
}

/* Права частина: Прямі посилання */
.direct-contact-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.direct-link {
    display: flex;
    flex-direction: column;
    background: rgba(15, 15, 15, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px 40px;
    border-radius: 15px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Крутий ефект при наведенні */
.direct-link:hover {
    background: #ffffff;
    border-color: #ffffff;
    transform: translateX(-10px); /* Блок виїжджає назустріч тексту зліва */
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

.direct-link:hover .link-label,
.direct-link:hover .link-text {
    color: #000000;
}

.link-label {
    font-family: 'Lexend Zetta', sans-serif;
    font-size: 10px;
    font-weight: 300;
    color: #666;
    letter-spacing: 4px;
    margin-bottom: 15px;
    transition: color 0.4s ease;
}

.link-text {
    font-family: 'Lexend Zetta', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    transition: color 0.4s ease;
}

/* Футер */
.relative-footer {
    position: relative;
    padding-bottom: 40px;
    text-align: center;
    margin-top: 40px;
}

.relative-footer p {
    font-family: 'Lexend Zetta', sans-serif;
    font-size: 10px;
    color: #4d4d4d;
    letter-spacing: 2px;
    font-weight: 300;
}

/* Адаптивність для мобільних */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-title {
        font-size: 8vw;
    }
    .direct-link:hover {
        transform: translateY(-5px); /* На телефоні краще піднімати вгору, а не вбік */
    }
}

body.ua-lang .barcode-accent {
    font-family: 'KyivTypeVar', sans-serif !important;
    font-weight: 100; 
    font-size: 20px;
    letter-spacing: 2px;
}
body.ua-lang .contact-title {
    font-family: 'KyivTypeVar', sans-serif !important;
    font-weight: 600; 
    letter-spacing: 5px;
}
body.ua-lang .barcode-accent {
    font-family: 'KyivTypeVar', sans-serif !important;
    font-weight: 100; 
    font-size: 20px;
    letter-spacing: 2px;
}
body.ua-lang .link-label{
    font-family: 'KyivTypeVar', sans-serif !important;
    font-weight: 200; 
    letter-spacing: 2px;
}