.site-footer {
    background: #0b2240; /* Primary Deep Navy Blue */
    color: #ffffff;
    padding: 5rem 0 3rem 0;
    font-family: 'Inter', -apple-system, sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
    margin-bottom: 4rem;
}

/* Brand Section */
.brand-section {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #ffffff;
}

.logo-symbol {
    height: 38px;
    width: auto;
}

.logo-text {
    font-family: 'Poppins', -apple-system, sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #ffffff;
}

.brand-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Columns General */
.link-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.column-title {
    font-family: 'Poppins', -apple-system, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #00e5ff; /* Teal/Cyan Accent */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.footer-link:hover {
    color: #00e5ff;
    transform: translateX(3px);
    display: inline-block;
}

/* Contact Info Column */
.footer-contact-section {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.95rem;
}

.contact-label {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.contact-value {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.5;
}

.contact-value a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.contact-value a:hover {
    color: #00e5ff;
}

/* Map Column */
.footer-map-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.map-embed-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.copyright p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsiveness overrides */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 4rem 0 2rem 0;
        background: #0b2240 !important;
    }
    .footer-container {
        padding: 0 1.5rem;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom {
        padding-top: 1.5rem;
    }
}
