/* Footer CSS extrait de styles.css - Reproduction exacte avec préfixes .hmk-footer */

/* Reset pour éviter les espacements parasites */
.hmk-footer {
    margin: 0;
    padding: 0;
    position: relative;
}

/* Assurer que le footer colle bien à la section précédente */
.hmk-footer::before {
    content: '';
    display: block;
    height: 0;
    margin: 0;
    padding: 0;
}

/* Footer principal - Reproduction exacte */
.hmk-footer .footer {
    background-color: #050214;
    color: #ffffff;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    clear: both;
}

.hmk-footer .footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

/* Logo styles */
.hmk-footer .footer__logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.hmk-footer .footer__logo span {
    font-family: 'poppins', sans-serif;
}

.hmk-footer .footer__logo img {
    height: 40px;
    margin-right: 12px;
}

.hmk-footer .footer__logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

/* Column styles */
.hmk-footer .footer__column {
    opacity: 0;
    transform: translateY(20px);
}

.hmk-footer .footer__column--info {
    grid-column: span 1;
    animation: fadeInUp 0.8s ease forwards;
}

.hmk-footer .footer__column--services {
    grid-column: span 1;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hmk-footer .footer__column--links {
    grid-column: span 1;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hmk-footer .footer__description {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.hmk-footer .footer__contact-info {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.hmk-footer .footer__contact-info p {
    margin-bottom: 10px;
}

.hmk-footer .footer__contact-info strong {
    font-weight: 600;
    color: #ffffff;
}

.hmk-footer .footer__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    color: #ffffff;
}

.hmk-footer .footer__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #7B68EE, #9370DB);
}

/* Links styles */
.hmk-footer .footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hmk-footer .footer__links li {
    margin-bottom: 12px;
}

.hmk-footer .footer__links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    position: relative;
    transition: color 0.3s ease;
}

.hmk-footer .footer__links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #7B68EE;
    transition: width 0.3s ease;
}

.hmk-footer .footer__links a:hover {
    color: #7B68EE;
}

.hmk-footer .footer__links a:hover::before {
    width: 100%;
}

/* Social media icons */
.hmk-footer .footer__social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.hmk-footer .footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hmk-footer .footer__social-link:hover {
    background-color: #7B68EE;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Separator */
.hmk-footer .footer__separator {
    max-width: 1200px;
    margin: 50px auto 30px;
    padding: 0 40px;
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Bottom bar */
.hmk-footer .footer__bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.hmk-footer .footer__copyright {
    margin: 0;
}

.hmk-footer .footer__legal-links {
    display: flex;
    gap: 20px;
}

.hmk-footer .footer__legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hmk-footer .footer__legal-links a:hover {
    color: #7B68EE;
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media (max-width: 992px) {
    .hmk-footer .footer__container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hmk-footer .footer__column--info,
    .hmk-footer .footer__column--services,
    .hmk-footer .footer__column--links {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .hmk-footer .footer {
        padding: 50px 0 20px;
    }

    .hmk-footer .footer__container {
        padding: 0 20px;
    }

    .hmk-footer .footer__separator {
        padding: 0 20px;
    }

    .hmk-footer .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 0 20px;
    }

    .hmk-footer .footer__legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .hmk-footer .footer__container {
        padding: 0 20px;
    }

    .hmk-footer .footer__social {
        justify-content: center;
    }
}