/*** ================== Main Footer =================== ***/

.main-footer {
    position: relative;
    background-color: var(--title-color);
    color: var(--white-color);
}

/* Footer Top - Logo and Social */
.footer-top {
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 0px 10px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo img {
    max-height: 60px;
    transition: all 0.3s ease;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    font-size: 16px;
    color: var(--white-color);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.footer-social-links li a:hover {
    color: var(--white-color);
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Footer Middle - Widgets */
.footer-middle {
    position: relative;
    padding: 70px 0px 40px;
}

.widget-title {
    position: relative;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--white-color);
    font-family: var(--manjari);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.widget-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-widget .footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 28px;
    font-size: 15px;
}

/* Business Links Widget */
.business-info li {
    margin-bottom: 12px;
}

.business-info li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.business-info li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Office/Contact Widget */
.office-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.office-info li i {
    width: 30px;
    font-size: 18px;
    color: var(--primary-color);
    margin-top: 4px;
}

.office-info li span,
.office-info li a,
.office-info li span a {
    flex: 1;
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 24px;
    transition: all 0.3s ease;
}

.office-info li a:hover,
.office-info li span a:hover {
    color: var(--primary-color);
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    padding: 30px 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.copyright-text a {
    color: var(--primary-color);
    font-weight: 500;
}

.copyright-text a:hover {
    text-decoration: underline;
}

/* Responsiveness */
@media only screen and (max-width: 991px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
        text-align: left;
        align-items: flex-start;
    }

    .footer-widget {
        text-align: left;
    }

    .widget-title:after {
        left: 0;
        transform: none;
    }

    .office-info li {
        justify-content: flex-start;
    }

    .copyright-text {
        text-align: left;
    }
}

@media only screen and (max-width: 767px) {
    .footer-middle {
        padding-top: 50px;
    }

    .footer-top {
        padding: 40px 0px;
    }
}