/* Sticky Footer - Ensures footer sticks to bottom without overlap */
html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

/* Main content wrapper should grow to push footer down */
main, .container, #main-content {
    flex: 1 0 auto;
}

footer.site-footer {
    flex-shrink: 0;
    width: 100%;
    background: linear-gradient(135deg, rgb(27, 128, 182) 0%, rgb(20, 100, 150) 100%);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    margin-top: auto;
}

/* Modern Footer Styling */
.footer-content {
    padding: 50px 0 30px 0;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-section h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-links li a::before {
    content: '›';
    margin-right: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #ffffff;
    padding-left: 12px;
    text-decoration: none;
}

.footer-links li a:hover::before {
    opacity: 1;
}

/* Footer Social Media Icons - Match Home Page Style */
.footer-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.footer-social-icons li {
    display: inline-block;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-decoration: none;
}

.footer-social-icons a:hover {
    background: #ffffff;
    color: rgb(27, 128, 182);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

/* Copyright Section */
.footer-copyright {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        padding: 40px 0 20px 0;
    }

    .footer-section {
        margin-bottom: 35px;
        text-align: center;
    }

    .footer-section h5 {
        display: block;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-copyright p {
        font-size: 0.85rem;
    }
}