/* ── ⑫ FLOATING CONTACT BUTTONS ────────────────────────────────────────────── */
.floating-contact-wrap {
    position: fixed;
    right: 25px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: floatIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 22px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    position: relative;
}

.floating-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Tooltip implementation */
.floating-btn::after {
    content: attr(title);
    position: absolute;
    right: 65px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-btn:hover::after {
    opacity: 1;
    visibility: visible;
    right: 60px;
}

.f-btn-phone {
    background: linear-gradient(135deg, #e63946, #c1121f);
}

.f-btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.f-btn-email {
    background: linear-gradient(135deg, #146d70, #0a4244);
}

/* Pulse animation for WhatsApp */
.f-btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (max-width: 767px) {
    .floating-contact-wrap {
        display: none;
        /* Hidden on mobile in favor of bottom bar */
    }
}

/* ── ⑬ MOBILE BOTTOM NAVIGATION ───────────────────────────────────────────── */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 25px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 5px;
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    justify-content: space-around;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .mobile-bottom-nav {
        display: flex;
    }
}

.m-nav-item {
    flex: 1;
    text-align: center;
    color: #333;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
}

.m-nav-item i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease;
}

.m-nav-item span {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.m-nav-item.phone i {
    background: linear-gradient(135deg, #e63946, #c1121f);
}

.m-nav-item.whatsapp i {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.m-nav-item.email i {
    background: linear-gradient(135deg, #146d70, #0a4244);
}

.m-nav-item.quote i {
    background: linear-gradient(135deg, #249286, #1a6b62);
}

.m-nav-item:active i {
    transform: scale(0.85);
}