/* Footer Styles */
.site-footer {
    background-color: #f5f5f5;
    color: #333;
    padding: 60px 0 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 0 0 25%;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-info {
    flex: 0 0 30%;
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #4a77a0;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #3a5a80;
    transform: translateY(-3px);
}

.footer-contact {
    flex: 0 0 35%;
}

.footer-contact h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #4a77a0, #499b97);
}

.footer-contact p {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.footer-contact i {
    margin-right: 10px;
    color: #4a77a0;
    min-width: 20px;
    text-align: center;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding: 20px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-bottom p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-links a {
    color: #4a77a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3a5a80;
    text-decoration: underline;
}

.footer-links span {
    color: #999;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-logo,
    .footer-info,
    .footer-contact {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .footer-contact h3 {
        margin-top: 20px;
    }
}

@media (max-width: 575.98px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 5px;
    }
    
    .footer-links span {
        display: none;
    }
}
