/* Sticky Footer Layout */
html, body {
    height: 100%;
    margin: 0;
}

.site-wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1;
}

.footer-section {
    position: relative;
    background-color: #024573;
    color: #fff;
    padding: 4rem 0 1rem 0;
    font-size: 0.9rem;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.05);
    margin-top: auto;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.2) 0%,
            rgba(0,0,0,0.5) 50%,
            rgba(0,0,0,0.8) 100%
    );
    z-index: 0;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-section h5 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p,
.footer-section li {
    color: #fff;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
    opacity: 0.95;
}

.footer-section a:hover {
    color: #fff;
    text-decoration: underline;
    opacity: 1;
}

.footer-section .social-icons i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #fff;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.35);
    margin: 1rem 0;
}

.text-center.pt-3 {
    color: #fff;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .footer-section {
        padding: 2rem 1rem;
    }
    .footer-logo {
        height: auto;
    }
    .footer-section h5 {
        font-size: 1rem;
    }
    .footer-section p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 2rem 1rem;
    }
    .footer-section h5 {
        font-size: 0.95rem;
    }
    .footer-section .social-icons i {
        font-size: 1.25rem;
        margin-right: 0.75rem;
    }
}
