/* Enhanced Footer Styles */
.site-footer {
    background-color: #244c41;
    color: #fff;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #3b836e, #244c41, #3b836e);
}

.footer-heading {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #3b836e;
}

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

.site-footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.site-footer ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-contact-info {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact-info .icon {
    margin-right: 15px;
    min-width: 20px;
    color: #3b836e;
}

.footer-contact-info .text {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: #fff;
}

.footer-logo img {
    max-height: 120px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #3b836e;
    transform: translateY(-3px);
}

.copyright-text {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-align: center;
}