/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;

    /* Pill Shape properties */
    padding: 12px 25px;
    gap: 10px;
    font-weight: bold;
    font-family: sans-serif;
    font-size: 16px;
}

.whatsapp-float i {
    font-size: 24px;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        padding: 10px 20px;
        font-size: 14px;
    }

    .whatsapp-float i {
        font-size: 20px;
    }
}

/* Call Us Button - Maroon */
.call-float {
    background-color: #900C3F !important;
    /* Maroon Override */
    bottom: 100px !important;
    /* Force position */
}

/* Same hover effect but keeping maroon tint logic if needed, 
   or just let standard hover darken it? 
   Let's add a specific hover for it */
.call-float:hover {
    background-color: #580726 !important;
    /* Darker Maroon */
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .call-float {
        bottom: 75px !important;
        /* 20px base + ~45px height + 10px gap */
    }
}