body {
    margin: 0;
    padding: 0;
}

.site-footer {
    background: linear-gradient(150deg, #0d2d61 0%, #163a7f 100%);
    color: #ffffff;
}

.footer-top-part {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 70px 60px 40px;
}

.footer-top-left,
.footer-top-right {
    width: 50%;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
}

.footer-logo {
    display: block;
    max-height: 64px;
    width: auto;
}

.mobile-logo {
    display: none;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-brand-name {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    color:white !important
}

.footer-brand-tag {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
}

.footer-details {
    display: grid;
    gap: 24px;
}

.footer-detail-item span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 8px;
}

.footer-detail-item strong {
    display: block;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 600;
    color:rgba(255,255,255,0.75);
}

.footer-map {
    position: relative;
    width: 90%;
    max-width: 340px;
    aspect-ratio: 1.15;
}

.footer-map::before {
    content: "";
    position: absolute;
    inset: 16px 20px 16px 18px;
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 24px;
    clip-path: polygon(4% 30%, 20% 16%, 52% 18%, 68% 8%, 93% 16%, 94% 45%, 82% 68%, 68% 78%, 44% 84%, 18% 72%, 8% 57%);
}

.footer-map-pin {
    position: absolute;
    width: 36px;
    height: 46px;
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    background: #ffffff;
    left: 50%;
    top: 26%;
    transform: translateX(-50%);
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.18);
}

.footer-map-pin::after {
    content: "";
    position: absolute;
    inset: 10px 0 0;
    margin: 0 auto;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #163a7f;
}

.footer-separateur {
    height: 1px;
    background: rgba(255, 255, 255, 0.16);
    margin: 0 60px;
}

.footer-bottom-part {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px 24px;
    gap: 20px;
}

.footer-bottom-part-left-side p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer-bottom-part-right-side {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-bottom-part-right-side a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-bottom-part-right-side a:hover {
    text-decoration: underline;
}

@media screen and (max-width : 600px) {
    .footer-top-part {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 24px 70px;
        gap: 24px;
    }

    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo.desktop-logo {
        display: none;
    }

    .footer-logo.mobile-logo {
        display: block;
        max-height: 52px;
    }

    .footer-detail-item {
        gap: 10px;
    }

    .footer-top-right {
        width: 100%;
    }

    .footer-bottom-part {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 24px 60px;
        gap: 12px;
    }

    .footer-bottom-part-right-side {
        gap: 16px;
    }


    footer{
        padding-bottom:70px;
    }
}


.footer-link:hover{
    color:rgb(158, 206, 248);
    transform : scale(1.01)
}