.site-footer {
    background-color: #0b1120;
    color: #f8fafc;
    padding: 5rem 0 2rem 0;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--blue);
    z-index: 10;
}

.footer-decor {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 400px;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.footer-huge-logo {
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    font-size: 25rem;
    font-weight: 800;
    background: linear-gradient(to bottom right, var(--green), var(--blue));
    -webkit-text-fill-color: transparent;
    opacity: 0.05;
    line-height: 1;
    user-select: none;
}

.footer-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    display: inline-block;
}

.footer-contact {
    margin-bottom: 2rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 1.1rem;
    color: white;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
    font-size: 1.5rem;
}

.footer-social a {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--blue);
    transform: translateY(-3px);
}

.footer-heading {
    color: white !important;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
    font-weight: 600;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--blue);
}

.footer-address-block {
    margin-bottom: 1.75rem;
}

.footer-address-block h4 {
    color: var(--green);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-address-block p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '>';
    margin-right: 8px;
    color: var(--blue);
    font-weight: bold;
    font-family: 'JetBrains Mono', monospace;
    transition: margin 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-links a:hover::before {
    margin-right: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}