/* Component-specific styles for contact section and modals */

/* Contact buttons wrapper */
.contact-buttons-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    margin: 32px 0;
}

/* Contact button styles */
.contact-buttons-wrapper .btn-primary,
.contact-buttons-wrapper .btn-secondary {
    width: 320px;
    max-width: 90vw;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.contact-buttons-wrapper .btn-primary span,
.contact-buttons-wrapper .btn-secondary span {
    font-size: 1.5em;
}

/* Contact region info */
.contact-region-info {
    margin-top: 30px;
    text-align: center;
}

.contact-region-info .highlight {
    color: #00ffe7;
}

.contact-region-info a {
    color: #00ffe7;
}

/* Footer modal styles */
#footerModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(20, 20, 20, .85);
    z-index: 10002;
    display: none;
    align-items: center;
    justify-content: center;
}

.footer-modal-content {
    background: #181828;
    padding: 32px 24px 24px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 32px #000a;
    max-width: 95vw;
    width: 420px;
    text-align: left;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

#footerModalTitle {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 18px;
    font-weight: 700;
}

#footerModalText {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.6;
}

#closeFooterModal {
    background: #00ffe7;
    color: #222;
    padding: 10px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
}

#closeFooterModal:hover {
    background: #00d4c7;
    transform: translateY(-1px);
}

/* Yandex Metrika noscript image */
.ym-noscript-img {
    position: absolute;
    left: -9999px;
}