/* ========================================
   FOOTER MODERNE
   ======================================== */

/* Footer CTA Section */
.footer-cta {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.footer-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-cta-content h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.footer-cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.footer-cta-button .btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: #ffffff;
    color: #1e40af;
    border: none;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.footer-cta-button .btn-large:hover {
    background: #f0f9ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Footer Main Content */
.footer-main {
    background: #1f2937;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr 1fr 1fr;
    gap: 2.5rem;
}

/* Footer Brand Section */
.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

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

.social-icon.facebook:hover {
    background: #1877f2;
}

.social-icon.linkedin:hover {
    background: #0077b5;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Footer Links */
.footer-links h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #3b82f6;
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #3b82f6;
    padding-left: 5px;
}

/* Footer Contact Info */
.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.contact-details {
    flex: 1;
}

.contact-details strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-details p {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.contact-details a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #3b82f6;
    padding-left: 0;
}

/* Google Maps Container */
.map-container {
    display: block;
    position: relative;
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.map-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.map-container iframe {
    display: block;
    pointer-events: none;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30, 64, 175, 0.95), transparent);
    padding: 1rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-container:hover .map-overlay {
    opacity: 1;
}

.map-overlay span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}



/* Footer Bottom */
.footer-bottom {
    background: #111827;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

.footer-disclaimer {
    font-size: 0.85rem !important;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
        text-align: center;
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact-info li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-cta {
        padding: 3rem 1.5rem;
    }
    
    .footer-cta-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-cta-content h2 {
        font-size: 1.75rem;
    }
    
    .footer-cta-content p {
        font-size: 1rem;
    }
    
    .footer-main {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact-info li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .map-container {
        margin-top: 1rem;
    }
    
    .map-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(30, 64, 175, 0.85), transparent);
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .footer-cta-content h2 {
        font-size: 1.5rem;
    }
    
    .footer-cta-button .btn-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .footer-logo {
        max-width: 150px;
    }
}
