/* Floating WhatsApp Button */
/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 70px;
    /* Slightly larger for image */
    height: 70px;
    bottom: 30px;
    right: 30px;
    background-color: transparent;
    /* Remove green background */
    border-radius: 50%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: none;
    /* Shadow is in the image or added differently */
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    /* Add shadow to image */
    transition: all 0.3s ease;
}

.whatsapp-float:hover img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.4));
}

.whatsapp-float:hover {
    background-color: transparent;
    box-shadow: none;
}

/* Optional: Pulse Animation adapted for image if needed, or remove if image has own presence */
@keyframes pulse-navy {
    0% {
        filter: drop-shadow(0 0 0 rgba(30, 58, 138, 0.4));
    }

    70% {
        filter: drop-shadow(0 0 15px rgba(30, 58, 138, 0));
    }

    100% {
        filter: drop-shadow(0 0 0 rgba(30, 58, 138, 0));
    }
}

.wa-label {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: #1e3a8a;
    /* Navy Primary */
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    /* White text */
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 1;
    /* Always visible as requested */
    transition: all 0.3s ease;
    border: 1px solid #1e3a8a;
}

/* Arrow for the label */
.wa-label::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #1e3a8a;
    /* Match background */
}

.whatsapp-float:hover .wa-label {
    transform: translateY(-50%) translateX(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}