.elementor-34662 .elementor-element.elementor-element-bc831dd{--display:flex;}/* Start custom CSS for html, class: .elementor-element-6df8d09 */.custom-footer {
    background-color: #ffffff;
    border-top: 1px solid #e5e5e5;
    padding: 40px 0 30px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    animation: slideUp 0.8s ease-out;
}

/* Slide Up Animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Footer Navigation */
.footer-nav {
    width: 100%;
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px 40px;
}

.footer-menu li {
    margin: 0;
    animation: slideUp 0.6s ease-out backwards;
}

.footer-menu li:nth-child(1) { animation-delay: 0.3s; }
.footer-menu li:nth-child(2) { animation-delay: 0.4s; }
.footer-menu li:nth-child(3) { animation-delay: 0.5s; }
.footer-menu li:nth-child(4) { animation-delay: 0.6s; }
.footer-menu li:nth-child(5) { animation-delay: 0.7s; }
.footer-menu li:nth-child(6) { animation-delay: 0.8s; }
.footer-menu li:nth-child(7) { animation-delay: 0.9s; }

.footer-menu a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-menu a:hover {
    color: #333333;
}

/* Contact Info */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: slideUp 0.8s ease-out 0.3s backwards;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #666666;
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease-out backwards;
}

.footer-contact .contact-item:nth-child(1) { animation-delay: 0.95s; }
.footer-contact .contact-item:nth-child(2) { animation-delay: 1.0s; }

.footer-contact .contact-item:hover {
    color: #333333;
}

.footer-contact .contact-item:hover svg {
    transform: translateY(-2px);
}

.footer-contact .contact-item svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.footer-contact .contact-item span {
    font-size: 14px;
    font-weight: 400;
}

/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    animation: slideUp 0.8s ease-out 0.4s backwards;
}

.footer-social a {
    color: #666666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideUp 0.6s ease-out backwards;
}

.footer-social a:nth-child(1) { animation-delay: 1.05s; }
.footer-social a:nth-child(2) { animation-delay: 1.1s; }
.footer-social a:nth-child(3) { animation-delay: 1.15s; }
.footer-social a:nth-child(4) { animation-delay: 1.2s; }

.footer-social a:hover {
    color: #333333;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-footer {
        padding: 30px 0 25px;
    }
    
    .footer-container {
        gap: 25px;
    }
    
    .footer-menu {
        gap: 12px 25px;
    }
    
    .footer-menu a {
        font-size: 13px;
    }
    
    .footer-contact {
        gap: 12px;
    }
    
    .footer-social {
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .footer-menu {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .footer-contact .contact-item svg {
        width: 22px;
        height: 22px;
    }
    
    .footer-contact .contact-item span {
        font-size: 13px;
    }
    
    .footer-social {
        gap: 15px;
    }
    
    .footer-social svg {
        width: 22px;
        height: 22px;
    }
}


.footer-contact .contact-item img,
.footer-social img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.footer-contact .contact-item:hover img,
.footer-social a:hover img {
    transform: translateY(-2px);
}/* End custom CSS */