/* Footer Full Width Video Background Styles */
.footer-full-width {
    width: 100vw !important;
    margin: 0 !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    padding: 3rem 0 !important;
}

.footer-full-width .container-fluid {
    max-width: none !important;
    width: 100% !important;
    padding: 0 2rem !important;
    margin: 0 !important;
    position: relative;
    z-index: 10;
}

/* Footer Video Background */
.footer-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.footer-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.footer-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(1px);
    z-index: 2;
}

/* Footer Content Styling with Video Background */
.footer-full-width h4,
.footer-full-width h5 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    color: #ffffff !important;
    font-weight: 700 !important;
}

.footer-full-width p,
.footer-full-width .footer-info p {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    color: #f8f9fa !important;
}

.footer-full-width .footer-links a {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    padding: 0.2rem 0;
    display: inline-block;
}

.footer-full-width .footer-links a:hover {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    transform: translateX(5px);
    color: #28a745 !important;
}

/* Social Icons with Video Background */
.footer-full-width .social-icons a {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.footer-full-width .social-icons a:hover {
    background: rgba(40, 167, 69, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

/* Newsletter Form with Video Background */
.footer-full-width .newsletter-block {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-full-width .newsletter-block .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #333;
}

.footer-full-width .newsletter-block .btn-success {
    background: #28a745;
    border: none;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.4);
}

.footer-full-width .newsletter-block .btn-success:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.6);
}

/* Copyright Section */
.footer-full-width .copyright-section {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Responsive adjustments for footer video */
@media (max-width: 768px) {
    .footer-video {
        filter: blur(1px);
    }
    
    .footer-video-overlay {
        background: rgba(0, 0, 0, 0.85);
    }
    
    .footer-full-width {
        padding: 2rem 0 !important;
    }
    
    .footer-full-width .container-fluid {
        padding: 0 1rem !important;
    }
    
    .footer-full-width .social-icons a {
        width: 45px;
        height: 45px;
        margin: 0.2rem;
    }
}

@media (max-width: 576px) {
    .footer-video-overlay {
        background: rgba(0, 0, 0, 0.9);
    }
    
    .footer-full-width {
        padding: 1.5rem 0 !important;
    }
    
    .footer-full-width .newsletter-block {
        padding: 1rem;
    }
    
    .footer-full-width .social-icons a {
        width: 40px;
        height: 40px;
    }
}