/* ============================================
   ENHANCED FOOTER STYLING
   ============================================ */

.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

/* Animated Background Pattern */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

/* Footer Top Border */
.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #4facfe);
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Widget Styling */
.site-footer .widget {
    margin-bottom: 30px;
}

.site-footer .widget h3 {
    color: #ffffff !important;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.site-footer .widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.site-footer .widget p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Social Media Links */
.site-footer .social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.site-footer .social li {
    margin: 0;
}

.site-footer .social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff !important;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.site-footer .social li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.site-footer .social li a span {
    position: relative;
    z-index: 1;
}

.site-footer .social li a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.site-footer .social li a:hover::before {
    opacity: 1;
}

/* Navigation Links */
.site-footer .links {
    padding: 0;
}

.site-footer .links li {
    margin-bottom: 12px;
}

.site-footer .links li a {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.site-footer .links li a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
    color: #667eea;
}

.site-footer .links li a:hover {
    color: #ffffff !important;
    padding-left: 25px;
    transform: translateX(5px);
}

.site-footer .links li a:hover::before {
    opacity: 1;
    left: 0;
}

/* Copyright Section */
.site-footer .copyright {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.site-footer .copyright a {
    color: #667eea !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.site-footer .copyright a:hover {
    color: #764ba2 !important;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 991px) {
    .site-footer {
        padding: 50px 0 20px;
    }
    
    .site-footer .widget {
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    .site-footer .widget h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .site-footer .social {
        justify-content: center;
    }
    
    .site-footer .links li a {
        padding-left: 0;
    }
    
    .site-footer .links li a::before {
        display: none;
    }
    
    .site-footer .links li a:hover {
        padding-left: 0;
        transform: none;
    }
}

/* Scroll to Top Button (Optional Enhancement) */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

/* Footer Animation on Scroll */
.site-footer.animate-in {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Widget Icons (Optional) */
.site-footer .widget-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 20px;
}

/* Made with Bob */
