/* Modern Structured Footer Styles */
.modern-structured-footer {
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 60px 0 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-main {
    padding-bottom: 40px;
}

/* Brand Section */
.footer-brand-section {
    padding-right: 20px;
}

.brand-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    object-fit: contain;
}

.brand-name {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

.brand-description {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 24px;
    text-align: justify;
}

/* Map Section */
.footer-map-section {
    padding-right: 20px;
}

.footer-map-section .footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 8px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 8px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #f3f4f6;
    border-radius: 6px;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.social-icon:hover {
    background-color: #F7931E;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Footer Columns */
.footer-column {
    padding-left: 20px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #F7931E;
}

/* Contact Info */
.contact-info {
    margin-top: 4px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 14px;
    color: #6b7280;
}

.contact-item i {
    width: 16px;
    margin-right: 12px;
    margin-top: 2px;
    color: #9ca3af;
    flex-shrink: 0;
}

.contact-item span {
    line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding: 24px 0;
    margin-top: 40px;
}

.copyright {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    font-size: 14px;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #F7931E;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .footer-column {
        padding-left: 0;
        margin-bottom: 40px;
    }
    
    .footer-brand-section {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 16px;
    }
}

@media (max-width: 767.98px) {
    .modern-structured-footer {
        padding: 40px 0 0;
    }
    
    .footer-main {
        padding-bottom: 30px;
    }
    
    .footer-bottom {
        text-align: center;
        padding: 20px 0;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 12px;
        gap: 16px;
    }
    
    .brand-description {
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .social-links {
        justify-content: flex-start;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
}