/* ===================================
   FOOTER VISUAL ENHANCEMENTS
   =================================== */

/* Enhanced footer with International Orange background */
.footer {
    background: #F04A00; /* International Orange background */
    color: #FFFFFF; /* White text */
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #01796F, transparent); /* Pine Green accent */
}

/* Enhanced footer content */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Enhanced footer logo */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.footer-logo-image {
    height: 70px;
    width: auto;
    filter: brightness(1.2) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-image {
    transform: scale(1.02);
}

/* Enhanced footer description */
.footer-description {
    color: #BFD4BF; /* Paris White text for general content */
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
}

.company-highlight {
    color: #01796F; /* Bold Pine Green for company name */
    font-weight: 700; /* Make company name bold */
}

/* Enhanced footer sections */
.footer-section h4,
.footer-title {
    margin-bottom: var(--spacing-md);
    color: #BFD4BF; /* Paris White section titles */
    font-size: 1.125rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after,
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #01796F; /* Pine Green thin underline accent */
    border-radius: 2px;
}

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

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

.footer-links a {
    color: #BFD4BF; /* Paris White links */
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1rem;
}

.footer-links a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #01796F; /* Pine Green arrow */
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: #01796F; /* Pine Green on hover */
    transform: translateX(4px);
}

.footer-links a:hover::before {
    transform: translateX(4px);
}

/* Enhanced footer contact */
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #BFD4BF; /* Paris White contact text including email */
    font-size: 0.95rem;
}

.footer-contact i {
    color: #01796F; /* Pine Green icons */
    width: 18px;
    font-size: 1rem;
    text-align: center;
}

/* Ensure email links in footer use Paris White color */
.footer-contact .email-link {
    color: #BFD4BF; /* Paris White for email address */
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact .email-link:hover {
    color: #01796F; /* Pine Green on hover */
}

/* Enhanced footer social */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-social .social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #BFD4BF; /* Paris White social links */
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 0.5rem;
    border-radius: 8px;
}

.footer-social .social-link:hover {
    color: #01796F; /* Pine Green on hover */
    background: rgba(1, 121, 111, 0.1); /* Pine Green background on hover */
    transform: translateX(4px);
}

.footer-social .social-link i {
    color: #01796F; /* Pine Green icons */
    width: 20px;
    text-align: center;
    font-size: 1.125rem;
}

/* Enhanced footer bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    color: #BFBFBF; /* Light gray copyright text */
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #BFD4BF; /* Paris White legal links (Mentions Légales, Politique de Confidentialité) */
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-legal a:hover {
    color: #01796F; /* Pine Green on hover */
}

/* ===================================
   RESPONSIVE FOOTER ENHANCEMENTS
   =================================== */

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section h4::after,
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        padding-left: 0;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-social {
        align-items: center;
    }
    
    .footer-social .social-link {
        justify-content: center;
        max-width: 200px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-logo-image {
        height: 60px;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-contact li,
    .footer-social .social-link {
        font-size: 0.9rem;
    }
}