/* Footer Styles */
.footer {
    background: white;
    padding: 60px 0 30px;
    margin-top: 80px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 100px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-left {
    flex: 0 0 auto;
    min-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #182D38;
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
    max-width: 350px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(24, 45, 56, 0.05);
    color: #182D38;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(24, 45, 56, 0.1);
}

.social-link:hover {
    background: #182D38;
    color: #F0E090;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 45, 56, 0.3);
    border-color: #182D38;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: #999;
    margin-top: 20px;
}

.footer-right {
    flex: 0 0 auto;
    min-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: auto;
    padding-left: 40px;
}

.footer-columns {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column-title {
    font-size: 16px;
    font-weight: 700;
    color: #182D38;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    text-decoration: none;
    color: #666;
    font-size: 15px;
    transition: color 0.3s;
    display: inline-block;
}

.footer-link:hover {
    color: #F0E090;
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.footer-legal-link {
    text-decoration: none;
    color: #999;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-legal-link:hover {
    color: #182D38;
}

/* Footer Responsive Styles */
@media screen and (max-width: 1024px) {
    .footer-container {
        gap: 40px;
        justify-content: space-between;
    }
    
    .footer-right {
        min-width: 450px;
        margin-left: auto;
    }
    
    .footer-columns {
        gap: 30px;
    }
    
    .footer-column {
        min-width: 140px;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-left {
        width: 100%;
    }
    
    .footer-description {
        max-width: 100%;
    }
    
    .footer-right {
        width: 100%;
    }
    
    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-column {
        width: 100%;
    }
    
    .footer-legal {
        justify-content: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-logo-text {
        font-size: 20px;
    }
    
    .footer-description {
        font-size: 14px;
    }
    
    .footer-column-title {
        font-size: 15px;
    }
    
    .footer-link {
        font-size: 14px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

