.hseia-footer {
    background-color: #0B1412; /* Deep Emerald Green */
    color: #FFFFFF;
    padding: 80px 0 40px 0;
    font-family: 'Inter', sans-serif;
    
    /* THE STRETCH: Forces breakout of parent containers */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    
    margin-bottom: 0 !important;
    padding-bottom: 40px;
    display: block;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr; /* 4 Columns horizontal */
    gap: 40px;
    margin-bottom: 60px;
}

/* --- LOGO & MISSION --- */
.footer-logo {
    font-family: 'Playfair Display', serif;
    color: #C5A059;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-mission {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- HEADINGS & LINKS (No Blue Hyperlinks) --- */
.footer-heading {
    color: #C5A059;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none; /* Removes underline */
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #C5A059;
}

/* --- CONTACT TEXT --- */
.contact-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.contact-gold {
    color: #C5A059;
    font-weight: 600;
    margin-top: 5px;
}

/* --- SOCIAL MEDIA FIX --- */
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background-color: #C5A059;
    border: 1px solid #C5A059;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B1412 !important; /* Dark green icon on gold background */
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 1.2rem; /* Make the icon slightly bigger for clarity */
}

.footer-socials a:hover {
    background-color: transparent;
    color: #C5A059 !important; /* Gold icon on hover */
}

/* --- BOTTOM COPYRIGHT --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* --- RESPONSIVE FIX (Stacks ONLY on small screens) --- */
@media (max-width: 850px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-socials {
        justify-content: center;
    }
}

/* Prevent any extra scroll after footer */
.hseia-footer:last-child {
    margin-bottom: 0;
    padding-bottom: 40px;
}

body > *:last-child {
    margin-bottom: 0;
}
