/* Modern Footer Styles */
.footer-modern {
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a4a 100%);
    color: #fff;
    padding: 3rem 0 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

.footer-section {
    margin-bottom: 2rem;
}

.footer-brand {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-container {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-middle {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
}

.footer-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffb901;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #ffb901;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.footer-list i {
    margin-right: 0.8rem;
    color: #ffb901;
    min-width: 16px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
}

.footer-list a:hover {
    color: #ffb901;
    transform: translateX(5px);
}

.contact-office {
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.social-icons a:hover {
    background: #ffb901;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(255, 185, 1, 0.3);
}

.map-container {
    margin-bottom: 2rem;
}

.map-link {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.map-link:hover .map-wrapper {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 185, 1, 0.25);
}

.map-link iframe {
    display: block;
    border: none;
}

.footer-bottom {
    padding-top: 2rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 0 0 1.5rem;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .footer-middle {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-maps {
        grid-column: span 2;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 992px) {
    .footer-middle {
        grid-template-columns: 2fr 1fr 1.5fr;
    }
    
    .footer-maps {
        grid-column: auto;
        display: block;
    }
    
    .footer-contact {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

@media (max-width: 767px) {
    .footer-modern {
        padding: 2rem 0 1rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-logo {
        height: 40px;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .map-container {
        margin-bottom: 1.5rem;
    }
}