/* Floating Contact Buttons Wrapper */
.floating-contact-wrap {
    position: fixed !important;
    bottom: 30px !important;
    right: 25px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    z-index: 999999 !important;
}

/* Base style for both buttons */
.floating-btn {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px) !important;
}

/* Call Button - Blue */
.call-btn {
    background-color: #0084ff !important;
}

/* WhatsApp Button - Green */
.whatsapp-btn {
    background-color: #25d366 !important;
}

.floating-btn svg {
    fill: #fff !important;
    width: 32px !important;
    height: 32px !important;
}

/* Responsive adjustments */
@media screen and (max-width: 767px) {
    .floating-contact-wrap {
        bottom: 20px !important;
        right: 15px !important;
        gap: 10px !important;
    }
    .floating-btn {
        width: 50px !important;
        height: 50px !important;
    }
    .floating-btn svg {
        width: 28px !important;
        height: 28px !important;
    }
}
