/* Footer Styles */

.emit-site-footer {
    background-color: #fff;
    color: #555;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.emit-site-footer * {
    font-family: 'Poppins', sans-serif;
}

/* Font Awesome Icons - Override Poppins in Footer */
.emit-site-footer .fa, .emit-site-footer .fab, .emit-site-footer .fas {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 6 Pro" !important;
}

.emit-site-footer i[class*="fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 6 Pro" !important;
}

/* Partnership CTA Section */
.partnership-cta-section {
    background: linear-gradient(135deg, #fdf2f2 0%, #fbeaea 100%);
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
}

.partnership-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e31e25, #c41e3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.partnership-icon i {
    font-size: 32px;
    color: #fff;
}

.partnership-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.partnership-content p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.partnership-btn {
    background-color: #e31e25;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.partnership-btn:hover {
    background-color: #c41e3a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 37, 0.3);
}

/* Main Footer */
.emit-main-footer {
    padding: 80px 0 60px 0;
    border-top: 1px solid #eee;
}

.emit-footer-widget {
    margin-bottom: 40px;
}

.emit-footer-logo {
    max-width: 350px;
    height: auto;
    margin-bottom: 30px;
}

.company-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.emit-widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.emit-widget-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #e31e25;
}

.emit-footer-menu,
.emit-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.emit-footer-menu li,
.emit-contact-info li {
    margin-bottom: 8px;
}

.emit-footer-menu a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.emit-footer-menu a:hover {
    color: #e31e25;
}

.emit-contact-info li {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    display: flex;
    align-items: flex-start;
}

.emit-contact-info i {
    margin-right: 10px;
    color: #e31e25;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Sub Footer */
.emit-sub-footer {
    background-color: #f8f9fa;
    padding: 30px 0 20px 0;
    border-top: 1px solid #eee;
}

.legal-links-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.legal-links-menu a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links-menu a:hover {
    color: #e31e25;
}

.emit-copyright {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.artweb-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.artweb-footer-logo {
    height: 50px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.artweb-footer-logo:hover {
    opacity: 1;
}

.footer-social-section .emit-footer-social-icons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-section .emit-footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    color: #666;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 16px;
}

.footer-social-section .emit-footer-social-icons a:hover {
    background-color: #e31e25;
    color: #fff;
    border-color: #e31e25;
    transform: translateY(-2px);
}

/* Hide duplicate social icons in sub-footer */
.emit-sub-footer .emit-footer-social-icons {
    display: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .partnership-content {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .partnership-btn {
        width: 100%;
        justify-content: center;
    }
    
    .emit-footer-widget {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .emit-widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .emit-contact-info li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .partnership-cta-section {
        text-align: center;
    }
    
    .partnership-content h3 {
        font-size: 24px;
    }
    
    .emit-main-footer {
        padding: 40px 0 20px 0;
    }
    
    .legal-links-menu {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .emit-footer-social-icons {
        justify-content: center;
    }
    
    .emit-sub-footer .text-end,
    .emit-copyright {
        text-align: center !important;
    }

    .emit-sub-footer .col-md-4 {
        margin-bottom: 15px;
    }
    
    .security-badges {
        margin: 15px 0;
    }
}

@media (max-width: 576px) {
    .partnership-icon {
        width: 60px;
        height: 60px;
    }
    
    .partnership-icon i {
        font-size: 24px;
    }
    
    .partnership-content h3 {
        font-size: 20px;
    }
    
    .partnership-content p {
        font-size: 14px;
    }
}
