/* Enhanced Footer Styles */

.footer_enhanced {
    background: #000000;
    position: relative;
    overflow: hidden;
}

/* Animated gradient overlay */
.footer_enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Diamond pattern */
.footer_enhanced::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.015) 49%, rgba(255,255,255,0.015) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.015) 49%, rgba(255,255,255,0.015) 51%, transparent 52%);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.footer-main {
    position: relative;
    z-index: 1;
}

/* Footer Widget */
.footer-widget {
    position: relative;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: brightness(1.5);
    transform: scale(1.05);
}

.footer-description {
    color: #ccc;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Footer Titles */
.footer-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: white;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-contact i {
    color: white;
    font-size: 16px;
    margin-top: 3px;
    min-width: 20px;
}

.footer-contact span {
    line-height: 1.6;
}

.footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: white;
}

/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: white;
    color: #242424;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    position: relative;
    z-index: 1;
}

.footer-copyright {
    color: #ccc;
    font-size: 14px;
}

.footer-copyright a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-copyright a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-links-bottom {
    color: #ccc;
    font-size: 14px;
}

.footer-links-bottom a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: white;
}

.footer-links-bottom .separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-title {
        font-size: 17px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .footer-description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .footer-logo {
        max-width: 150px;
    }
}

@media (max-width: 767px) {
    .footer-widget {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links li,
    .footer-contact li {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        text-align: center !important;
        padding: 20px 0;
    }

    .footer-links-bottom {
        margin-top: 15px;
    }

    .footer-copyright,
    .footer-links-bottom {
        text-align: center !important;
    }
}

/* Animation on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-widget {
    animation: fadeInUp 0.6s ease-out;
}

.col-lg-4:nth-child(1) .footer-widget { animation-delay: 0.1s; }
.col-lg-2:nth-child(2) .footer-widget { animation-delay: 0.2s; }
.col-lg-3:nth-child(3) .footer-widget { animation-delay: 0.3s; }
.col-lg-3:nth-child(4) .footer-widget { animation-delay: 0.4s; }
