/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 49px;
    height: 49px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1023px) {
    .closeModal.btn {
        padding: 10px 17px;
        font-size: 14px;
        font-weight: 600;
    }
    .closeModal.btn:hover {
        background-color: #000;
        color: #fff;
    }
}
