/* Footer Base Styles */
.footer {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial !important;
    color: #e6eef8 !important;
    background: linear-gradient(180deg, rgba(11, 12, 13, 0.95), rgba(6, 8, 15, 0.98)) !important;
}

.footer .container {
    max-width: var(--container) !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.footer-top {
    padding: 48px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04)
}

.footer-bottom {
    padding: 22px 0 !important;
    background: #ffffff !important;
}

.footer-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 24px !important;
    align-items: flex-start
}

.footer-col {
    flex: 1 1 260px !important;
    min-width: 220px
}

/* Logo and enquiry */
.footer .logo-wrap {
    display: flex !important;
    align-items: center !important;
    gap: 18px
}

.logo svg {
    width: 140px !important;
    height: auto !important;
    display: block
}

.brand-line {
    font-weight: 700 !important;
    font-size: 14px !important;
    color: var(--blue) !important;
    letter-spacing: 0.4px
}

.enquiry-link a {
    display: inline-block !important;
    margin-top: 8px !important;
    color: #3285c2 !important;
    text-decoration: none !important;
    font-size: 14px
}

.enquiry-link a i {
    margin-left: 8px
}

/* Contact blocks */
.footer-contact-info h4 {
    color: #000 !important;
    margin: 0 0 8px !important;
    font-size: 16px
}

.footer-contact-info p {
    margin: 0 0 10px !important;
    color: var(--muted) !important;
    line-height: 1.45
}

.footer-contact-info .location-link {
    display: inline-block !important;
    margin-bottom: 10px !important;
    color: var(--blue) !important;
    text-decoration: none
}

.footer-contact-info ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 8px 0 0
}

.footer-contact-info li {
    margin: 8px 0 !important;
    font-size: 14px !important;
    color: var(--muted)
}

.footer-contact-info a {
    color: inherit !important;
    text-decoration: none
}

/* Footer bottom row */
.footer-bottom .row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between
}

.footer-bottom p {
    margin: 0 !important;
    color: var(--muted) !important;
    font-size: 13px
}

.footer-bottom a {
    color: var(--blue) !important;
    text-decoration: none
}

.social-links ul {
    display: flex !important;
    gap: 14px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none
}

.social-links a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    color: #bcd7ff !important;
    text-decoration: none
}

/* Footer Responsive tweaks */
@media (max-width: 900px) {
    .footer-row {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
    }

    .footer-col {
        width: 100% !important;
        min-width: 0 !important;
        flex: 0 0 auto !important;
        margin-bottom: 30px;
    }

    .footer-bottom .row {
        flex-direction: column !important;
        gap: 15px;
        text-align: center;
        justify-content: center !important;
    }

    .social-links ul {
        justify-content: center !important;
    }

    .footer .logo-wrap {
        justify-content: center !important;
        flex-direction: column;
    }

    .footer-contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .logo svg {
        width: 120px;
        margin: 0 auto;
    }
}