/* Footer Styles */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 0 0;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Company Info Section */
.company-info {
    margin-bottom: 20px;
}

.footer-logo {
    height: 170px;
    margin-bottom: 20px;
    float: left;
    margin-right: 20px;
}

.company-info h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 24px;
}

.company-info p {
    color: #999;
    line-height: 1.6;
    font-size: 14px;
}

/* Footer Sections */
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #4e54c8;
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #E9E5FF;
}

/* Contact Info */
.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: #999;
    font-size: 14px;
}

.contact-info i {
    color: #4e54c8;
    font-size: 16px;
    margin-top: 3px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background:#E9E5FF;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 60px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
}

/* Updated Responsive Design for Footer */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
    
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-logo {
        height: 120px;
        float: none;
        display: block;
        margin: 0 auto 20px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
        padding: 0 15px;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-info li {
        justify-content: center;
        text-align: left;
        padding-left: 20px;
    }

    .social-links {
        justify-content: center;
    }
    
    .company-info {
        text-align: center;
    }
} 