/* ===== MODERN FOOTER REDESIGN ===== */
.modern-footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%) !important;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.footer-main-content {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px;
}

/* Company Info Section */
.footer-company-info {
    padding-right: 20px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo-img {
    max-height: 50px;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    filter: brightness(1.3);
    transform: scale(1.05);
}

.footer-description {
    color: #d1d5db !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    margin-bottom: 30px !important;
}

/* Social Links */
.footer-social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link-modern {
    width: 45px;
    height: 45px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    text-decoration: none;
}

.social-link-modern:hover {
    background: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    border-color: #3b82f6;
}

.social-link-modern .social-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

/* Footer Links Sections */
.footer-links-section {
    padding: 0 15px;
}

.footer-section-title {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 25px !important;
    position: relative;
    padding-bottom: 15px;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 2px;
}

.footer-links-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-link {
    color: #d1d5db !important;
    font-size: 15px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    position: relative;
    padding-left: 20px;
    display: block;
}

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

.footer-link:hover {
    color: #ffffff !important;
    padding-left: 25px;
    transform: translateX(5px);
}

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

/* CTA Section */
.footer-cta-section {
    padding-left: 20px;
}

.footer-cta-title {
    color: #ffffff !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    line-height: 1.3;
}

.footer-cta-text {
    color: #d1d5db !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-bottom: 30px !important;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: #ffffff !important;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.footer-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    color: #ffffff !important;
}

.footer-cta-btn:hover::before {
    left: 100%;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.footer-cta-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 30px 0 !important;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.copyright-text {
    color: #d1d5db !important;
    font-size: 15px !important;
    margin: 0 !important;
}

.copyright-link {
    color: #3b82f6 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.copyright-link:hover {
    color: #ffffff !important;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.footer-bottom-link {
    color: #d1d5db !important;
    text-decoration: none !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
}

.footer-bottom-link:hover {
    color: #3b82f6 !important;
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-main-content {
        padding: 60px 0 40px;
    }
    
    .footer-company-info,
    .footer-links-section,
    .footer-cta-section {
        padding: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .footer-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social-links {
        justify-content: center;
    }
    
    .footer-cta-title {
        font-size: 24px !important;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .footer-main-content {
        padding: 50px 0 30px;
    }
    
    .footer-cta-title {
        font-size: 22px !important;
    }
    
    .footer-section-title {
        font-size: 18px !important;
    }
    
    .footer-description,
    .footer-link,
    .footer-cta-text {
        font-size: 14px !important;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .footer-main-content {
        padding: 40px 0 20px;
    }
    
    .footer-cta-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .social-link-modern {
        width: 40px;
        height: 40px;
    }
    
    .social-link-modern .social-icon {
        width: 18px;
        height: 18px;
    }
}