/* -------------------------------------------------------------------------
   FOOTER – VAGUE ANIMÉE (TRANSITION)
------------------------------------------------------------------------- */
.ft-wave {
    display: block;
    width: 100%;
    height: 60px;
    overflow: hidden;
    line-height: 0;
}

.ft-wave svg {
    display: block;
    width: 200%;
    height: 100%;
    animation: ft-wave-anim 14s linear infinite;
    will-change: transform;
}

@keyframes ft-wave-anim {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* -------------------------------------------------------------------------
   FOOTER – STRUCTURE PRINCIPALE (BODY)
------------------------------------------------------------------------- */
.ft {
    background: var(--main-blue);
    color: rgba(255, 255, 255, 0.55);
    font-family: inherit;
    font-size: 0.875rem;
    line-height: 1.7;
}

.ft-body {
    max-width: 1340px;
    margin: 0 auto;
    padding: 48px 40px 44px;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0 56px;
    align-items: center;
}

.ft-vsep {
    width: 1px;
    align-self: stretch;
    background: rgba(255, 255, 255, 0.12);
}

/* -------------------------------------------------------------------------
   FOOTER – COLONNE GAUCHE (IDENTITÉ)
------------------------------------------------------------------------- */
.ft-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.ft-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.55);
}

.ft-brand img {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    flex-shrink: 0;
}

.ft-brand-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.2;
}

.ft-baseline {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.ft-fb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 4px;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.ft-fb:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

/* -------------------------------------------------------------------------
   FOOTER – COLONNE DROITE (CONTACT)
------------------------------------------------------------------------- */
.ft-right {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.ft-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.15s;
}

a.ft-row:hover { 
    color: rgba(255, 255, 255, 0.8); 
}

.ft-ico {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.55;
}

.ft-ico svg { 
    width: 16px; 
    height: 16px; 
}

/* -------------------------------------------------------------------------
   FOOTER – BARRE LÉGALE (BOTTOM BAR)
------------------------------------------------------------------------- */
.ft-bar { 
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
}

.ft-bar-in {
    max-width: 1340px;
    margin: 0 auto;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px 24px;
    flex-wrap: wrap;
}

.ft-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0 4px;
}

.ft-legal-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px 16px;
    flex-wrap: wrap;
}

.ft-legal-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.78rem;
    transition: color 0.15s;
}

.ft-legal-links a:hover { 
    color: rgba(255, 255, 255, 0.8); 
}

/* -------------------------------------------------------------------------
   FOOTER – RESPONSIVE
------------------------------------------------------------------------- */
@media (max-width: 720px) {
    .ft-body {
        grid-template-columns: 1fr;
        gap: 32px 0;
        padding: 36px 24px 32px;
    }
    .ft-vsep { display: none; }
    .ft-right { align-items: center; text-align: center; }
    .ft-row { justify-content: center; }
    .ft-bar-in {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 14px 24px;
        gap: 10px;
    }
    .ft-legal-links { justify-content: center; }
}

@media (max-width: 480px) {
    .ft-wave { height: 40px; }
    .ft-copy { flex-direction: column; align-items: center; }
}