/* AWTU Footer Styles */

/* Footer Main */
.awtu-footer {
    background-color: #1a1a1a !important;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Footer Logo */
.footer-logo .logo-text {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-logo .logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1) contrast(1);
}

.footer-logo .awtu-logo:hover .logo-img {
    filter: brightness(1.1) contrast(1.1);
    transform: scale(1.05);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
    background: #14b08e;
    border-color: #14b08e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 201, 151, 0.3);
}

/* Footer Links */
.footer-link {
    color: #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.25rem 0;
    display: inline-block;
}

.footer-link:hover {
    color: #14b08e;
    text-decoration: none;
    transform: translateX(5px);
    font-weight: 600;
}

.footer-link i {
    font-size: 0.8rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    color: #e9ecef;
    margin-right: 0.5rem;
}

.footer-link:hover i {
    opacity: 1;
    color: #14b08e;
    transform: translateX(3px);
}

/* Contact Icons */
.contact-icon {
    color: #14b08e;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Footer Headings */
.awtu-footer h6 {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
}

.awtu-footer h6::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: #14b08e;
    border-radius: 2px;
}

/* Footer Brand */
.awtu-footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 280px;
    color: #e9ecef;
    font-weight: 500;
}

/* Contact Info */
.awtu-contact-info .contact-item {
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #14b08e;
    transition: all 0.3s ease;
}

.awtu-contact-info .contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.awtu-contact-info strong {
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
}

.awtu-contact-info .text-muted {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e9ecef !important;
    font-weight: 500;
}

/* Footer Bottom */
.awtu-footer-bottom {
    background-color: #1a1a1a !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.awtu-footer-bottom .text-muted {
    color: #e9ecef !important;
    font-weight: 500;
}

.awtu-footer-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-end;
}

/* Responsive */
@media (max-width: 768px) {
    .social-links {
        gap: 0.8rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .awtu-footer-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        margin-top: 1rem;
    }
    
    .footer-logo .logo-text {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .awtu-footer-links {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .awtu-footer-links .footer-link {
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Hover Effects for Footer */
.awtu-footer {
    transition: all 0.3s ease;
}

.awtu-footer:hover {
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

/* Animation for social icons */
@keyframes socialBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

.social-link:hover {
    animation: socialBounce 0.6s ease;
}
