#landingPage-footer {
    background-color: var(--secondary) !important;
}

#landingPage-footer .info-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(247, 128, 49, 0.16);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
}

#landingPage-footer .border-white-10 {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

#landingPage-footer .footer-links a {
    display: inline-block;
    padding: 4px 0;
    transition: all 0.2s ease-in-out;
}

#landingPage-footer .footer-links a:hover,
#landingPage-footer .hover-white:hover {
    color: #ffffff !important;
    text-shadow: 0 0 1px rgba(255,255,255,0.5);
}

#landingPage-footer .footer-links i {
    font-size: 10px;
    transition: transform 0.2s;
}

#landingPage-footer .footer-links a:hover i {
    transform: translateX(3px);
}

#landingPage-footer[dir="rtl"] .footer-links a:hover i {
    transform: translateX(-3px);
}

/* Max width utility to prevent overly wide text lines */
.max-w-400 {
    max-width: 400px;
}

/* Classes utilitaires de transition */
.transition-all {
    transition: all 0.2s ease-in-out;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

@media (max-width: 767.98px) {
    #landingPage-footer .footer-links {
        margin-bottom: 1.5rem;
    }
}