/* Footer styles */
footer {
    background-color: #0D5EA6;
    color: #ffffff;
    padding: 4rem 1rem 2rem;
    font-family: 'Segoe UI', Arial, sans-serif;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo img {
    width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-logo p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.footer-address p,
.footer-phone p {
    margin: 0.5rem 0;
    color: #e0e4ea;
    font-size: 0.95rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.footer-address svg,
.footer-phone svg {
    margin-right: 8px;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.other-services {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.other-services-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 1rem 0;
}

.other-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.other-services-list li {
    color: #e0e4ea;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding-left: 0;
}

.other-services-list li:hover {
    color: #1e90ff;
    cursor: pointer;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-map{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.social-icon a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.social-icon a:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.2);
}

.social-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand,
    .other-services {
        align-items: center;
        text-align: center;
    }
    
    .footer-address p,
    .footer-phone p {
        justify-content: center;
    }
    
    .footer-socials {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 3rem 0.5rem 1.5rem;
    }
    
    .footer-logo img {
        width: 120px;
    }
    
    .footer-logo p {
        font-size: 1.1rem;
    }
    
    .other-services-list {
        align-items: center;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
}