.site-footer {
    background-color: #0e1117;
    color: #9aa0a7;
    padding-top: 3.75rem;
}

.footer-main {
    padding-bottom: 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    gap: 3.563rem;
}

.footer-logo img {
    max-height: 4.375rem;
    width: 8.75rem;
    margin-bottom: 1.25rem;
}

.footer-text-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
}

.footer-text-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0f0f0;
    background: linear-gradient(90deg, #ff00cc, #3399ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
    line-height: 1;
}

.footer-text-logo .logo-subtext {
    font-size: 0.625rem;
    color: #3399ff;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
}

.footer-info p {
    line-height: 1.6;
    color: #878C91;
    width: 66%;
    font-size: 0.813rem;
    font-weight: 500;
}

.footer-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.563rem;
    text-transform: none;
    font-family: 'Plus Jakarta Sans';
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.625rem;
}

.footer-menu a {
    color: #878C91;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
}

.footer-menu a:hover {
    color: #fff;
}

.contact-item {
    text-decoration: underline;
    color: #878C91;
}

.contact-label {
    display: block;
    margin-bottom: 0.313rem;
    color: #ffffff;
    font-size: 0.875rem;
}

.contact-link {
    color: #8E8E8E;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #fff;
}

.subscribe-button-wrap {
    margin-top: 0.625rem;
}

.subscribe-button {
    color: #878C91;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.subscribe-button:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    margin: 0.938rem 0;
    gap: 0.625rem;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.188rem;
    height: 2.188rem;
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.3s ease;
    border-color: white;
    border: 0.078rem solid #06F0F6;
}

.social-link:hover {
    background-color: transparent;
    color: #fff;
    transform: translateY(-0.188rem);
}

.footer-bottom {
    padding: 2.813rem 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 400;
}

.footer-social {
    display: flex;
    gap: 0.938rem;
}

.social-link-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.875rem;
    height: 1.875rem;
    color: #fff;
    transition: all 0.3s ease;
    border: 0.078rem solid #06F0F6;
    border-radius: 50%;
    padding: 0.375rem;
}

.footer-social-icon {
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
}

.social-link-footer:hover {
    color: transparent;
    transform: translateY(-0.188rem);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.contact-emails {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    gap: 1em;
    margin-top: 4em;
}

.contact-email {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.contact-email a {
    color: #878C91;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .contact-emails {
        display: none;
    }
}