/* footer */
    footer {
        position: relative;
        background-color: var(--primary);
        padding: 48px 64px 16px;
        margin-top: 135px;
    }

    /* animation hero */
        .animation_footer{
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: max-content;
        }

        footer .animation_mer{
            position: relative;
            width: 100%;
            bottom: 0px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        footer .animation_mer .wave{
            position: absolute;
            width: 100%;
            height: 100px;
            top: -100px;
            left: 0;
            background: url(../images/wave_footer.png);
            background-size: 1000px 100px;
        }

        footer .animation_mer .wave#wave1{
            z-index: 1000;
            opacity: 1;
            bottom: 0;
            animation: animatewave 6s linear infinite;
        }

        footer .animation_mer .wave#wave2{
            z-index: 999;
            opacity: 0.5;
            bottom: 10px;
            animation: animatewave_footer 5s linear infinite;
        }

        footer .animation_mer .wave#wave3{
            z-index: 1000;
            opacity: 0.2;
            bottom: 15px;
            animation: animatewave 5s linear infinite;
        }

        footer .animation_mer .wave#wave4{
            z-index: 999;
            opacity: 0.7;
            bottom: 20px;
            animation: animatewave_footer 6s linear infinite;
        }

        @keyframes animatewave{
            0%{
                background-position-x: 1000px;
            }
            100%{
                background-position-x: 0px;
            }
        }

        @keyframes animatewave_footer{
            0%{
                background-position-x: 0px;
            }
            100%{
                background-position-x: 1000px;
            }
        }
    /* animation hero */

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
    }

    /* Colonnes du footer */
    .footer-col h3 {
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        width: 100%;
        padding: 8px;
        color: var(--white);
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 16px;
        position: relative;
        display: inline-block;
    }

    .footer-col h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 3px;
        width: 50%;
        height: 2px;
        background: var(--third);
        border-radius: 2px;
    }

    .footer-col ul {
        list-style: none;
        padding-left: 8px;
    }

    .footer-col ul li:not(:last-child) {
        margin-bottom: 12px;
    }

    .footer-col ul li a {
        color: var(--white);
        text-decoration: none;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 8px;
        i{
            color: var(--third);
            font-size: 20px;
        }
    }

    .footer-col ul li a:hover {
        color: var(--third);
        transform: translateX(5px);
    }

    /* Section Newsletter */
    .newsletter p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .newsletter form {
        display: flex;
        gap: 5px;
    }

    .newsletter input {
        padding: 12px 15px;
        border: 1px solid var(--light-white);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        color: var(--white);
        font-size: 0.85rem;
        outline: none;
    }

    .newsletter input:focus {
        border-color: var(--third);
        background: var(--light-white);
    }

    .newsletter input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .newsletter button {
        padding: 12px;
        background: var(--third);
        border: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.85rem;
        cursor: pointer;
        i{
            color: var(--white);
        }
    }

    .newsletter button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(232, 93, 38, 0.3);
    }

    /* Séparateur */
    .footer-separator {
        height: 1px;
        background: var(--light-white);
        margin: 20px 0;
    }

    /* Copyright */
    .footer-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .footer-bottom p {
        text-align: center;
        color: var(--white);
        font-size: 0.8rem;
    }

    .footer-bottom a {
        color: var(--white);
        text-decoration: none;
    }

    .footer-bottom a:hover {
        color: var(--third);
    }

    /* box_social */
        footer .box_social{
            display: flex;
            align-items: center;
            gap: 12px;
        }

        footer .social{
            width: 35px; height: 35px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--third);
            i{
                color: var(--white);
            }
        }

        footer .social:hover{
            transform: translateY(-3px);
        }
    /* box_social */
/* footer */

/* Responsive */
    /* footer */
        @media screen and (max-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            footer {
                padding: 40px 0 20px;
            }
        }

        @media screen and (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-col {
                text-align: center;
            }

            .footer-col h3::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-col ul li a:hover {
                transform: translateX(0);
            }

            .newsletter {
                text-align: center;
            }
        }
    /* footer */
/* responsive */