/* Footer Improvements */
.rts-footer-area.footer-three {
    position: relative;
    overflow: hidden;
}

/* Logo Styling */
.footer-logo {
    margin-bottom: 30px;
}

.footer-logo .logo-footer {
    max-width: 180px;
    height: auto;
    transition: transform 0.3s ease;
}

.footer-logo .logo-footer:hover {
    transform: scale(1.05);
}

/* Title Underline Effect */
.title-underline {
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    margin-top: 10px;
    border-radius: 2px;
    position: relative;
}

.title-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

.footer-two-single-wized:hover .title-underline::after {
    width: 100%;
}

/* Social Media Styling */
.social-wrapper-footer .social-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-heading-1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-wrapper-footer .social-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-wrapper-footer .social-links li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--color-primary-rgb), 0.1);
    border-radius: 50%;
    color: var(--color-secondary);
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-wrapper-footer .social-links li a:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Enhanced Link Styling */
.footer-two-single-wized .wized-2-body ul li {
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.footer-two-single-wized .wized-2-body ul li:hover {
    transform: translateX(5px);
}

.footer-two-single-wized .wized-2-body ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.footer-two-single-wized .wized-2-body ul li a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.footer-two-single-wized .wized-2-body ul li a:hover i {
    transform: translateX(3px);
}

/* Contact Info Enhanced */
.contact-info-1 {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-info-1 .icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ffd700 100%);
    border-radius: 8px;
    position: relative;
}

.contact-info-1 .icon i {
    color: var(--color-white);
    font-size: 18px;
    z-index: 1;
}

.contact-info-1 .icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--color-secondary);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-1 .disc span {
    display: block;
    font-size: 13px;
    color: var(--color-body);
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-info-1 .disc a {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
}

.contact-info-1 .disc a.address-link {
    line-height: 1.8;
}

/* Footer Bottom */
.rts-footer-bottom {
    background: var(--bg-dark-1);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.copyright-text a {
    color: var(--color-primary);
    font-weight: 600;
    transition: color 0.3s ease;
}

.copyright-text a:hover {
    color: var(--color-white);
}

.copyright-text .separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media only screen and (max-width: 991px) {
    .footer-logo .logo-footer {
        max-width: 150px;
    }
    
    .contact-info-1 .icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .rts-footer-area.footer-three {
        padding: 60px 0;
    }
    
    .copyright-text {
        font-size: 13px;
        line-height: 1.8;
    }
    
    .copyright-text .separator {
        margin: 0 5px;
    }
}

@media only screen and (max-width: 575px) {
    .social-wrapper-footer .social-links {
        justify-content: flex-start !important;
    }
    
    .social-wrapper-footer .social-links li a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}