/* ===== DESKTOP FLOATING BUTTONS ===== */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    margin-top: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

.whatsapp-btn { background: #25D366; }
.call-btn { background: #007bff; }

/* Pulse Animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-btn { animation: pulse 2s infinite; }
.call-btn { animation: pulse 2s infinite; animation-delay: 1s; }

/* ===== MOBILE BOTTOM BAR ===== */
.mobile-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 9999;
}

.mobile-contact-bar a {
    width: 50%;
    padding: 14px 0;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
}

.mobile-whatsapp {
    background: #25D366;
}

.mobile-call {
    background: #007bff;
}

/* Subtle attention animation */
.mobile-contact-bar a i {
    margin-right: 6px;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .floating-contact {
        display: none;
    }
    .mobile-contact-bar {
        display: flex;
    }
}
