.site-footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 30px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

/* Optional subtle background gradient to match the premium theme */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-main), transparent);
    opacity: 0.3;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    height: 44px;
    width: auto;
}

.footer-company {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-high);
    background: linear-gradient(135deg, var(--text-high), var(--brand-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-desc {
    color: var(--text-med);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links, .footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-top h4 {
    font-size: 1.1rem;
    color: var(--text-high);
    margin-bottom: 8px;
    font-weight: 700;
}

.footer-links a {
    color: var(--text-med);
    font-weight: 500;
    transition: var(--trans-swift);
}

.footer-links a:hover {
    color: var(--brand-main);
    transform: translateX(4px);
}

.office-location, .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-med);
    font-size: 0.9rem;
    line-height: 1.5;
}

.office-location i, .contact-item i {
    color: var(--brand-main);
    margin-top: 4px;
    font-size: 1rem;
}

.office-location strong {
    display: block;
    color: var(--text-high);
    margin-bottom: 2px;
}

.contact-item a {
    color: var(--text-med);
    transition: var(--trans-swift);
    display: inline-block;
}

.contact-item a:hover {
    color: var(--brand-main);
}

.footer-emails {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-med);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-page);
    color: var(--text-med);
    border: 1px solid var(--border-subtle);
    transition: var(--trans-swift);
}

.footer-social a:hover {
    background: var(--brand-main);
    color: #fff;
    border-color: var(--brand-main);
    transform: translateY(-2px);
}

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

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
