/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, #0D0D0D 0%, #171d2b 50%, #1c263d 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0 2rem;
    z-index: 1001;
    width: 100%;
}

/* Background Effects */
.footer-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.footer-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: footerParticleFloat 8s ease-in-out infinite;
}

.footer-particle.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.footer-particle.particle-2 {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.footer-particle.particle-3 {
    top: 80%;
    left: 30%;
    animation-delay: 4s;
}

.footer-particle.particle-4 {
    top: 40%;
    left: 60%;
    animation-delay: 6s;
}

.footer-floating-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.1);
    animation: footerIconFloat 6s ease-in-out infinite;
}

.footer-floating-icon.icon-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.footer-floating-icon.icon-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.footer-floating-icon.icon-3 {
    top: 50%;
    right: 5%;
    animation-delay: 4s;
}

/* Main Footer Content */
.footer-main {
    position: relative;
    z-index: 10;
}

/* Brand Section */
.footer-brand {
    margin-bottom: 2rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.brand-logo h4 {
    color: white;
    font-weight: 700;
    margin: 0;
    font-size: 1.8rem;
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.social-link:hover::before {
    transform: translateY(0);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-link.facebook:hover {
    background: #1877f2;
}

.social-link.twitter:hover {
    background: #1da1f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.linkedin:hover {
    background: #0077b5;
}

.social-link.youtube:hover {
    background: #ff0000;
}

/* Footer Sections */
.footer-section {
    margin-bottom: 2rem;
}

.footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #0D0D0D, #1F8FFF);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #1F8FFF;
}

.footer-links a:hover {
    color: white;
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Newsletter Section */
.newsletter-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.newsletter-form {
    margin-bottom: 2rem;
}

.input-group {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.2rem;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    font-size: 0.95rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-btn {
    background: linear-gradient(135deg, #1F8FFF, #1F8FFF);
    border: none;
    padding: 1rem 1.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #e55a00, #e69500);
    transform: scale(1.05);
}

/* Footer Stats */
.footer-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    color: #1F8FFF;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #1F8FFF;
}

/* Animations */
@keyframes footerParticleFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

@keyframes footerIconFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }

    50% {
        transform: translateY(-15px) rotate(10deg);
        opacity: 0.2;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-footer {
        padding: 3rem 0 1.5rem;
    }

    .brand-logo {
        justify-content: center;
        text-align: center;
    }

    .brand-description {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-bottom .row {
        text-align: center;
    }

    .footer-floating-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .footer-bottom-links {
        gap: 1rem;
        flex-wrap: wrap;
    }
}