/* ==========================================================================
   MYKEYZEN - PREMIUM FOOTER STYLES (REFINED)
   ========================================================================== */

.site-footer {
    background-color: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 100px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

/* Bordure dorée supérieure fine et élégante */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    padding-bottom: 80px;
}

@media (min-width: 768px) {
    .site-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .site-footer__grid {
        grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
        gap: 40px;
    }
}

.site-footer__col {
    display: flex;
    flex-direction: column;
}

.site-footer__logo {
    display: block;
    margin-bottom: 30px;
}

.logo__img--footer {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.site-footer__subtitle {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
    margin-bottom: 20px;
    display: block;
}

.site-footer__text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    max-width: 320px;
}

.site-footer__title {
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 35px;
    position: relative;
}

.site-footer__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-accent);
}

.site-footer__nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__nav-item {
    margin-bottom: 15px;
}

.site-footer__link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.site-footer__link:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

.site-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 15px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item i {
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 4px;
    font-size: 16px;
}

/* Bouton Contact Premium (Doré) */
.btn--footer-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: #000 !important;
    padding: 14px 30px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 20px rgba(201, 168, 76, 0.2);
    border: none;
    cursor: pointer;
}

.btn--footer-contact:hover {
    background: var(--color-white);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(201, 168, 76, 0.3);
}

/* Trustpilot Badge Fix */
.tp-footer-badge {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.tp-footer-badge:hover {
    opacity: 1;
}

/* Bottom Bar */
.footer-bar {
    background-color: #050505;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bar__container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

@media (min-width: 992px) {
    .footer-bar__container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bar__copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bar__links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bar__link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bar__link:hover {
    color: var(--color-accent);
}

/* WhatsApp Floating Button Styling */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    z-index: -1;
    animation: pulseWhatsapp 2.5s infinite;
}

@keyframes pulseWhatsapp {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.whatsapp-float__tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--color-bg-dark, #050505);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    transform: translateX(10px);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
    opacity: 1;
    transform: translateX(0);
}
